{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "6e724932-ad86-4006-9d1b-82001b3ff929",
   "metadata": {},
   "outputs": [],
   "source": [
    "# !git clone https://github.com/yl4579/PL-BERT.git\n",
    "!cd /home/cristic/PL-BERT/"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5018600f-f529-4a93-a089-5708228d2cdc",
   "metadata": {},
   "source": [
    "Phoneme-Level BERT for Enhanced Prosody of Text-to-Speech with Grapheme Predictions"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d21a9dc3-db0f-4828-90d0-0467f597d35e",
   "metadata": {},
   "source": [
    "Large-scale pre-trained language models have been shown to be helpful in improving the naturalness of text-to-speech (TTS) models by enabling them to produce more naturalistic prosodic patterns. However, these models are usually word-level or sup-phoneme-level and jointly trained with phonemes, making them inefficient for the downstream TTS task where only phonemes are needed. In this work, we propose a phoneme-level BERT (PL-BERT) with a pretext task of predicting the corresponding graphemes along with the regular masked phoneme predictions. Subjective evaluations show that our phoneme-level BERT encoder has significantly improved the mean opinion scores (MOS) of rated naturalness of synthesized speech compared with the state-of-the-art (SOTA) StyleTTS baseline on out-of-distribution (OOD) texts.\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ab3ecb2e-255b-4d5d-9e40-cf326c1fa3be",
   "metadata": {},
   "source": [
    " Preprocessing Wikipedia (Romanian) dataset"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "8f26172d-5970-4534-a146-b0668f0448d6",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "/home/cristic/PL-BERT\n"
     ]
    }
   ],
   "source": [
    "cd PL-BERT"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "af2e2f8e-d111-430a-a5e4-e151a2e35b7b",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\u001b[0m\u001b[01;34mConfigs\u001b[0m/       model.py          README.md          token_maps.pkl\n",
      "\u001b[01;34mconverters\u001b[0m/    phonemize.py      simple_loader.py   train.ipynb\n",
      "dataloader.py  preprocess.ipynb  text_normalize.py  utils.py\n",
      "LICENSE        \u001b[01;34m__pycache__\u001b[0m/      text_utils.py\n"
     ]
    }
   ],
   "source": [
    "ls"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "38fbd17f-e813-4823-bb6b-310fe2666f8c",
   "metadata": {},
   "outputs": [],
   "source": [
    "import yaml\n",
    "\n",
    "config_path = \"Configs/config.yml\" # you can change it to anything else\n",
    "config = yaml.safe_load(open(config_path))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "03ef081d-44c1-4bb5-9296-e4d580514741",
   "metadata": {},
   "outputs": [],
   "source": [
    "# !pip install phonemize"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "d35f5a90-3a98-4928-849f-a2681630ee46",
   "metadata": {},
   "outputs": [
    {
     "ename": "ModuleNotFoundError",
     "evalue": "No module named 'ntlk'",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mModuleNotFoundError\u001b[0m                       Traceback (most recent call last)",
      "Cell \u001b[0;32mIn[6], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mntlk\u001b[39;00m\n",
      "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'ntlk'"
     ]
    }
   ],
   "source": [
    "# import ntlk"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "a4735b77-e056-429d-91a9-44394813476e",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Requirement already satisfied: nltk in /home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages (3.9.2)\n",
      "Requirement already satisfied: click in /home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages (from nltk) (8.1.8)\n",
      "Requirement already satisfied: joblib in /home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages (from nltk) (1.5.2)\n",
      "Requirement already satisfied: regex>=2021.8.3 in /home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages (from nltk) (2025.10.23)\n",
      "Requirement already satisfied: tqdm in /home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages (from nltk) (4.67.1)\n",
      "Note: you may need to restart the kernel to use updated packages.\n"
     ]
    }
   ],
   "source": [
    "pip install nltk"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "742e7584-2554-4639-87d0-1bca5a223355",
   "metadata": {},
   "source": [
    "!pip install singleton-decorator accelerate phonemizer sacremoses pebble\n",
    "# !pip install datasets==3.6.0"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "d583bf4d-361a-4aa2-bcac-8bce1ab06c97",
   "metadata": {},
   "outputs": [],
   "source": [
    "# pip install transformers"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "a9dd3f4a-e497-4962-8c26-8a6346b1aa1b",
   "metadata": {},
   "outputs": [],
   "source": [
    "from phonemize import phonemize"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b94dcd8d-721f-4696-acb8-23d3c2fbfede",
   "metadata": {},
   "source": [
    "install backend on operating system"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "83d8b337-7c44-42c2-bbc4-6bf579e31869",
   "metadata": {},
   "outputs": [],
   "source": [
    "import phonemizer\n",
    "global_phonemizer = phonemizer.backend.EspeakBackend(language='ro', preserve_punctuation=True,  with_stress=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "ad27b5bd-aad7-4123-917d-36ec2b96e419",
   "metadata": {},
   "outputs": [],
   "source": [
    "import os\n",
    "# Set the environment variable to bypass the security check\n",
    "os.environ['TRUST_REMOTE_CODE'] = 'True'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "2b77d1b5-b5ed-4a4f-8a33-85394a9d4567",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/home/cristic/anaconda3/envs/tts_p40/lib/python3.9/site-packages/huggingface_hub/file_download.py:942: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.\n",
      "  warnings.warn(\n"
     ]
    }
   ],
   "source": [
    "# from transformers import TransfoXLTokenizer\n",
    "# tokenizer = TransfoXLTokenizer.from_pretrained(config['dataset_params']['tokenizer'])\n",
    "\n",
    "from transformers import AutoTokenizer\n",
    "\n",
    "# Recommended replacement for Transfo-XL is XLNet\n",
    "tokenizer_name = \"xlnet-base-cased\" \n",
    "# Or: \"transfo-xl-wt103\" if you need the exact vocabulary, but it will use the safer AutoTokenizer implementation.\n",
    "\n",
    "tokenizer = AutoTokenizer.from_pretrained(tokenizer_name)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "7c871269-cf5f-41d6-9771-de2e66788795",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "# dataset = load_dataset(\"wikipedia\", \"20251202.ro\")['train'] # you can use other version of this dataset"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "2e26fcdb-9b18-4ca2-ac13-f20c2951b022",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "\n",
    "# # Use \"20220301.ro\" or the current supported snapshot (e.g., \"20231101.ro\")\n",
    "# # The format is often YYYYMMDD.lang\n",
    "# dataset = load_dataset(\"wikipedia\", \"20231101.ro\", language=\"ro\", date=\"20231101\")['train']"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "12b4c74e-65f0-48ef-9b15-c592bee0eab8",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "\n",
    "# # Use the '20220301' version, which is known to be stable and available.\n",
    "# # 'ro' is the name of the configuration/language.\n",
    "# dataset = load_dataset(\"wikipedia\", \"20220301\", language=\"ro\")['train']\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "8ae26829-ee36-4199-8551-c8800152c08b",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "\n",
    "# # '20220301' is the version snapshot\n",
    "# # 'ro' is the language/revision identifier\n",
    "# try:\n",
    "#     dataset = load_dataset(\n",
    "#         \"wikipedia\",\n",
    "#         name=\"20220301\",\n",
    "#         revision=\"ro\"\n",
    "#     )['train']\n",
    "    \n",
    "#     print(\"Successfully loaded the Romanian Wikipedia dataset.\")\n",
    "#     print(f\"Number of training examples: {len(dataset)}\")\n",
    "\n",
    "# except Exception as e:\n",
    "#     print(f\"An error occurred: {e}\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "26ca54ae-3e32-43b8-bacc-ec355669dffc",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "\n",
    "# # The language argument is critical for the new loader mechanism\n",
    "# try:\n",
    "#     dataset = load_dataset(\n",
    "#         \"wikipedia\",\n",
    "#         name=\"20220301\",\n",
    "#         language=\"ro\" # <-- Use the 'language' argument\n",
    "#     )['train']\n",
    "    \n",
    "#     print(\"Successfully loaded the Romanian Wikipedia dataset.\")\n",
    "#     print(f\"Number of training examples: {len(dataset)}\")\n",
    "#     print(dataset)\n",
    "\n",
    "# except Exception as e:\n",
    "#     print(f\"A new error occurred: {e}\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "45ecd15c-fea6-46a9-9500-b37becbdbb89",
   "metadata": {},
   "outputs": [],
   "source": [
    "# !huggingface-cli delete-cache"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "f89d3890-bc7d-43b7-b4f9-008ca9ddec0a",
   "metadata": {},
   "outputs": [],
   "source": [
    "# !hf cache delete --disable-tui"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "6ce17179-6234-4495-aeef-79706bbfd546",
   "metadata": {},
   "outputs": [],
   "source": [
    "# pip install datasets==2.16.1 --no-deps"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "f0e36c3b-1f34-4dec-b29f-18ed8d9a4b1f",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Downloading data: 100%|██████████| 41/41 [01:57<00:00,  2.87s/files]\n",
      "Generating train split: 100%|██████████| 6407814/6407814 [02:33<00:00, 41754.70 examples/s]\n"
     ]
    }
   ],
   "source": [
    "from datasets import load_dataset\n",
    "\n",
    "ds = load_dataset(\"wikimedia/wikipedia\", \"20231101.en\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "d2664fd4-066d-4d10-92c4-48a092b2809c",
   "metadata": {},
   "outputs": [],
   "source": [
    "# from datasets import load_dataset\n",
    "\n",
    "dataset = load_dataset(\"wikimedia/wikipedia\", \"20231101.ro\")[\"train\"]\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "2094a652-de15-4bc6-be44-23f5b5aeb639",
   "metadata": {},
   "outputs": [],
   "source": [
    "root_directory = \"./wiki_phoneme\" # set up root directory for multiprocessor processing"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "id": "e8598554-f244-4a6a-ac4b-efa6e6dd4a5d",
   "metadata": {},
   "outputs": [],
   "source": [
    "import os\n",
    "num_shards = 50000\n",
    "\n",
    "def process_shard(i):\n",
    "    directory = root_directory + \"/shard_\" + str(i)\n",
    "    if os.path.exists(directory):\n",
    "        print(\"Shard %d already exists!\" % i)\n",
    "        return\n",
    "    print('Processing shard %d ...' % i)\n",
    "    shard = dataset.shard(num_shards=num_shards, index=i)\n",
    "    processed_dataset = shard.map(lambda t: phonemize(t['text'], global_phonemizer, tokenizer), remove_columns=['text'])\n",
    "    if not os.path.exists(directory):\n",
    "        os.makedirs(directory)\n",
    "    processed_dataset.save_to_disk(directory)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "id": "3b34cbb0-6089-4755-9b42-b11ecc478347",
   "metadata": {},
   "outputs": [],
   "source": [
    "from pebble import ProcessPool\n",
    "from concurrent.futures import TimeoutError"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "36a0cbae-28db-4a79-a2ac-717d1294e79e",
   "metadata": {},
   "source": [
    "Note: You will need to run the following cell multiple times to process all shards because some will fail. Depending on how fast you process each shard, you will need to change the timeout to a longer value to make more shards processed before being killed."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "id": "406fc5f5-680c-49fa-98ca-1cdda5be602a",
   "metadata": {
    "collapsed": true,
    "jupyter": {
     "outputs_hidden": true
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 0 ...Processing shard 15 ...\n",
      "Processing shard 1 ...\n",
      "Processing shard 2 ...\n",
      "Processing shard 4 ...Processing shard 3 ...\n",
      "Processing shard 5 ...Processing shard 6 ...\n",
      "Processing shard 7 ...\n",
      "Processing shard 8 ...Processing shard 9 ...\n",
      "\n",
      "Processing shard 10 ...\n",
      "Processing shard 11 ...\n",
      "Processing shard 12 ...\n",
      "Processing shard 13 ...\n",
      "Processing shard 14 ...\n",
      "Processing shard 17 ...\n",
      "\n",
      "\n",
      "Processing shard 16 ...Processing shard 18 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19 ...\n",
      "\n",
      "Processing shard 20 ...\n",
      "Processing shard 21 ...Processing shard 22 ...\n",
      "Processing shard 23 ...\n",
      "Processing shard 26 ...\n",
      "Processing shard 24 ...\n",
      "Processing shard 25 ...\n",
      "Processing shard 27 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29 ...Processing shard 30 ...Processing shard 31 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.83 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 50 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 51 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 52 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 53 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 54 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 55 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 56 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 57 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 58 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 59 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 60 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 61 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 62 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 63 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 64 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 65 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 66 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 67 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 68 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 69 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 70 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 71 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 72 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:05<00:10,  1.82s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 73 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 74 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 75 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 76 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:05<00:11,  1.95s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 77 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 78 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 79 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:02<00:21,  2.69s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 80 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 81 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 82 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 83 ...Processing shard 84 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 85 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 86 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 87 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 88 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 89 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 90 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 91 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 92 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 93 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 94 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 95 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 96 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 97 ...\n",
      "Processing shard 98 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 99 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:05<00:06,  1.25s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:03<00:01,  1.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.93 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.28 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:04<00:01,  1.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.07s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.07s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:05<00:02,  1.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.87 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.12s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.40 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.99 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.19s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.53 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.23 examples/s]:00<00:00, 2375.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.60 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.21 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.10 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.00 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:04<00:00,  1.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.16s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.43 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]:00<?, ? examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.06 examples/s]:00<00:00, 1758.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 219 ...\n",
      "Processing shard 220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.11 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 226 ...Processing shard 227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]:00<00:00, 2076.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.11 examples/s]:00<00:00, 1619.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.92 examples/s]:00<00:00, 2236.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 255 ...\n",
      "Processing shard 256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]:00<00:00, 647.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:02<00:09,  1.34s/ examples]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.91 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:12<00:00,  1.38s/ examples]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.58 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]:00<00:00, 1377.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.35 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2452.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:04<00:01,  1.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2269.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.93 examples/s]:00<00:00, 2347.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2384.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.00 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]:00<00:00, 2000.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]:00<00:00, 2004.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2277.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.15 examples/s]:00<00:00, 2119.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.08 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 29.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.27 examples/s]:00<00:00, 1626.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 27.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.59 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.80 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.36 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 400 ...\n",
      "Processing shard 401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.92 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.14s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.02 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:06,  1.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:07<00:06,  1.25s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:03<00:00,  2.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.32 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  3.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.77 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:14<00:00,  1.57s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 231.85 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2394.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 209.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 204.69 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2162.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 495 ...Processing shard 496 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:04<00:03,  1.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:01,  2.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 513 ...Processing shard 514 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:04,  1.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.31 examples/s]00<00:00, 2304.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.05 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.98 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 547 ...\n",
      "Processing shard 548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 49.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:05<00:11,  2.00s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 566 ...\n",
      "Processing shard 567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.27 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:04<00:02,  1.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.14 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 52.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:05<00:00,  1.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.58 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.64 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:09,  1.18s/ examples]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.51 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:05,  1.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.42 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2404.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.09s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 673 ...\n",
      "Processing shard 674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:13<00:00,  1.46s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.40 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.61 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.52 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.60 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 27.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2415.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.11 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:15<00:00,  1.76s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.69 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:02<00:08,  1.20s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.48 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.75 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:03<00:00,  2.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.73 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:17<00:02,  2.22s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:05,  1.02 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2366.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.36 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.97 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.75 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]:00<00:00, 1992.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2360.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.53 examples/s]:00<00:00, 1475.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 809 ...\n",
      "Processing shard 810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]:00<00:00, 2117.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.12 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.97 examples/s]00<00:00, 1668.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.50 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2281.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.75 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.13 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.85 examples/s]00<00:00, 2338.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]:00<00:00, 1718.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.54 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2235.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.03s/ examples]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.42 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.20 examples/s]:00<00:00, 1600.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.69 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.10 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.07 examples/s]00<00:00, 1355.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.38 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.51 examples/s]00<00:00, 1448.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.00 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.75 examples/s]:00<00:00, 1717.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.23 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.04 examples/s]00<00:00, 1312.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.26 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.77 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.04 examples/s]00<00:00, 1986.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.29 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.65 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]:00<00:00, 2468.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]xamples]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 901 ...\n",
      "Processing shard 902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 43.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.66 examples/s]:00<00:00, 1570.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.74 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:08,  1.09s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.25 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.07 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2085.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.81 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 951 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 175.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.05 examples/s]00<00:00, 873.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 39.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.85 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.33 examples/s]:00<00:00, 1371.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.28 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 969 ...Processing shard 968 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 971 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.01 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:06<00:00,  1.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.99 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 41.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 171.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.80 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.11 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1021 ...\n",
      "Processing shard 1022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.97 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2400.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1045 ...Processing shard 1046 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1047 ...\n",
      "Processing shard 1048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.72 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.05 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  6.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.53 examples/s]:00<00:00, 2234.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.68 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  2.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 50.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.09 examples/s]:00<00:00, 1460.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.63 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1081 ...Processing shard 1080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]:00<00:00, 1118.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.56 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.36 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]:00<00:00, 1533.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.92 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:06<00:00,  1.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.37 examples/s]:00<00:00, 2517.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.39 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1098.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.84 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.60 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.70 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.77 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:04<00:02,  1.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.15 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1133 ...\n",
      "Processing shard 1134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.18 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.39 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.76 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.59 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2327.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 33.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:03<00:01,  1.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.72 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1207 ...\n",
      "Processing shard 1208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2202.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.40 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.00 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]:00<00:00, 2316.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.64 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:05<00:05,  1.28s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.94 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1248 ...\n",
      "Processing shard 1249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.79 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.05s/ examples]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.13 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1284 ...\n",
      "Processing shard 1285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.16 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.51 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.35 examples/s]:00<00:00, 1804.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.97 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.82 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.32 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:04<00:08,  1.44s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  4.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.76 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.31 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.10 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.57 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.77 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.58 examples/s]:00<00:00, 2225.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.92 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.43 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:02,  1.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.14 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2403.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.29 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  4.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.82 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]:00<00:00, 1970.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2250.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 178.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.53 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.74 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1434 ...Processing shard 1435 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:02<00:09,  1.31s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.02 examples/s]00<00:00, 2476.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2500.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.23 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.41 examples/s]:00<00:00, 1667.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.24 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.12 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1473 ...\n",
      "Processing shard 1474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1486 ...\n",
      "Processing shard 1487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2185.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.36 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:02<00:03,  1.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.45 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.69 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:05,  1.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:12,  1.58s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:03<00:01,  1.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.19 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]:00<00:00, 2002.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:03<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.66 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.75 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2301.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.09 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 204.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.95 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2486.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.82 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.58 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]:00<00:00, 2403.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.76 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:04<00:01,  1.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1625 ...\n",
      "Processing shard 1626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.50 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.40 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:04<00:03,  1.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.10 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.24 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.29 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1680 ...\n",
      "Processing shard 1681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.99 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1684 ...\n",
      "Processing shard 1685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1688 ...\n",
      "Processing shard 1689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2366.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.13 examples/s]:00<00:00, 1661.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.21 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 894.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.19 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 967.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.66 examples/s]:00<00:00, 1494.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.10 examples/s]00<00:00, 1836.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.43 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.64 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1751 ...\n",
      "Processing shard 1752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.53 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.28 examples/s]:00<00:00, 1073.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.76 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.65 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.59 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1764 ...\n",
      "Processing shard 1765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.54 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.37 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 32.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1804 ...\n",
      "Processing shard 1805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.05 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.75 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]:00<00:00, 2013.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.78 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.66 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.31 examples/s]:00<00:00, 1055.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.61 examples/s]:00<00:00, 748.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2178.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.16 examples/s]:00<00:00, 1473.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.12 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.61 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 23.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.06 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.13 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1872 ...Processing shard 1873 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2113.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.75 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]:00<00:00, 2105.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.69 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1897 ...\n",
      "Processing shard 1898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.53 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.93 examples/s]:00<00:00, 854.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:05<00:00,  1.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]:00<00:00, 1898.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 43.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.85 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.20 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.73 examples/s]:00<00:00, 1835.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1930 ...Processing shard 1931 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.44 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.14 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 38.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2302.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]:00<00:00, 1304.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.14 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.46 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 1983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.30 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.45 examples/s]:00<00:00, 1836.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.34 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.23 examples/s]:00<00:00, 1598.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.15 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 1999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.49 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2455.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]:00<00:00, 774.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.29 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.96 examples/s]:00<00:00, 1947.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.57 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.00 examples/s]:00<00:00, 2164.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2050 ...Processing shard 2051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.64 examples/s]:00<00:00, 1246.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2392.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2104.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.06 examples/s]:00<00:00, 2307.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.77 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2467.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]:00<00:00, 750.28 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.77 examples/s]:00<00:00, 1667.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.62 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.29 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.48 examples/s]00<00:00, 1448.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.80 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.34 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.21 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]:00<00:00, 1178.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.06 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 49.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.29 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.73 examples/s]:00<00:00, 1111.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.64 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.93 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.10 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.58 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2098.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.76 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.18 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]:00<00:00, 1254.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.78 examples/s]:00<00:00, 1381.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]:00<00:00, 1588.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2168 ...\n",
      "Processing shard 2169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]:00<00:00, 1349.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.04 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2236.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1485.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2147.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.50 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 33.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.37 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.76 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 23.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.29 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.42 examples/s]:00<00:00, 2272.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.64 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 46.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 45.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.45 examples/s]:00<00:00, 2310.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 34.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.75 examples/s]:00<00:00, 2150.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.47 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2173.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.73 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1313.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.59 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.39 examples/s]:00<00:00, 892.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2254 ...\n",
      "Processing shard 2255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.58 examples/s]:00<00:00, 2436.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2261 ...\n",
      "Processing shard 2262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.49 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.43 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2267 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2282 ...\n",
      "Processing shard 2283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]:00<00:00, 2455.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.29 examples/s]:00<00:00, 833.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.19 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2354.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2311 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2312 ...\n",
      "Processing shard 2313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.79 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.57 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2328 ...\n",
      "Processing shard 2329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.72 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2175.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.59 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.97 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2329.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.66 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2142.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.49 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2399.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 29.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.87 examples/s]:00<00:00, 2071.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.64 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2377 ...Processing shard 2378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.15 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:15,  1.91s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.05 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.48 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.69 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.52 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.83 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.01 examples/s]:00<00:00, 2077.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:08,  1.07s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.07 examples/s]:00<00:00, 699.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.25 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.18 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2165.36 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.94 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.05 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2445 ...\n",
      "Processing shard 2446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.42 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.38 examples/s]:00<00:00, 835.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.49 examples/s]00<00:00, 2327.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2458 ...\n",
      "Processing shard 2459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2464 ...\n",
      "Processing shard 2465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.01 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.52 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 45.58 examples/s]:00<00:00, 2194.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.01 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.23 examples/s]:00<00:00, 1146.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.08 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.59 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.98 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:02<00:10,  1.45s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 34.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]:00<00:00, 1751.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.61 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.72 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]:00<00:00, 1441.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]:00<00:00, 1247.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.76 examples/s]:00<00:00, 926.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.35 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2369.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.29 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.80 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.77 examples/s]:00<00:00, 1733.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.55 examples/s]:00<00:00, 746.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.63 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.40 examples/s]:00<00:00, 1431.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.57 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2092.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.64 examples/s]:00<00:00, 2095.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.96 examples/s]:00<00:00, 2073.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2619 ...\n",
      "Processing shard 2620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.30 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.68 examples/s]:00<00:00, 1841.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.66 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.82 examples/s]:00<00:00, 2354.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.91 examples/s]:00<00:00, 1527.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2513.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.72 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]:00<00:00, 1945.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2270.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2353.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.00 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.83 examples/s]:00<00:00, 2387.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.41 examples/s]:00<00:00, 2035.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2507.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.19 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.62 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.67 examples/s]:00<00:00, 2113.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2700 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.20 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.70 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.00 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.15 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2363.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.48 examples/s]:00<00:00, 1257.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.19 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.42 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2731 ...Processing shard 2732 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.49 examples/s]:00<00:00, 697.40 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.79 examples/s]:00<00:00, 1050.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.00 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.48 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  1.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]:00<00:00, 680.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2770 ...\n",
      "Processing shard 2771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]:00<00:00, 1523.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2776 ...\n",
      "Processing shard 2777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]:00<00:00, 2349.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.07 examples/s]:00<00:00, 2079.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.30 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2173.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]:00<00:00, 2145.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.73 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.56 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.61 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.24 examples/s]:00<00:00, 1476.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 31.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]:00<00:00, 2454.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.90 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2833 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.76 examples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.27 examples/s]:00<00:00, 1561.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 2845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2849 ...\n",
      "Processing shard 2850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.17 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.05 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2304.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]:00<00:00, 2269.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2312.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.43 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]:00<00:00, 1342.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]:00<00:00, 1701.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.58 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]:00<00:00, 1202.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]:00<00:00, 577.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.17 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.79 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.46 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]:00<00:00, 1693.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.51 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.50 examples/s]:00<00:00, 841.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.33 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.02 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 50.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2554.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 43.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2094.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2449.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.72 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 38.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.05 examples/s]:00<00:00, 2406.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.78 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.74 examples/s]00<00:00, 1110.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.56 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1714.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]:00<00:00, 1164.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.39 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 2999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]:00<00:00, 1565.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.08 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3001 ...Processing shard 3002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  1.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2181.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]:00<00:00, 2133.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.48 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 27.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.56 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.55 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.52 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.25 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3043 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 34.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.13 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:04<00:02,  1.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.95 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.43 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.66 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1423.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2373.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.70 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.14 examples/s]:00<00:00, 1729.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.27 examples/s]:00<00:00, 2385.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.83 examples/s]:00<00:00, 1226.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 25.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]:00<00:00, 1326.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.00 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3101 ...\n",
      "Processing shard 3102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.61 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3120 ...\n",
      "Processing shard 3121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.44 examples/s]:00<00:00, 1805.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2369.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.83 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3154 ...\n",
      "Processing shard 3155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.52 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.78 examples/s]:00<00:00, 825.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.50 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.86 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2347.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3190 ...Processing shard 3191 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2081.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2256.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]:00<00:00, 1437.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 45.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.80 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.58 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.54 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.33 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.39 examples/s]:00<00:00, 1316.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.62 examples/s]:00<00:00, 1964.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 44.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 31.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.68 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.71 examples/s]:00<00:00, 1192.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3243 ...Processing shard 3244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]:00<00:00, 1416.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 31.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.78 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]:00<00:00, 974.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.16 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]:00<00:00, 2164.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 37.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]:00<00:00, 1195.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.76 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.83 examples/s]00<00:00, 1395.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.68 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2421.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.86 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2160.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.52 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.45 examples/s]:00<00:00, 1547.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3283 ...\n",
      "Processing shard 3284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3288 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3292 ...Processing shard 3293 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.77 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.83 examples/s]:00<00:00, 937.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.81 examples/s]:00<00:00, 2042.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.01 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.00 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]:00<00:00, 1598.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.24 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.07 examples/s]00<00:00, 1720.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.94 examples/s]:00<00:00, 1266.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2365.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.87 examples/s]:00<00:00, 1344.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.47 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.35 examples/s]:00<00:00, 1722.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.98 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.40 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.95 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 24.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]:00<00:00, 1556.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.48 examples/s]:00<00:00, 1457.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]:00<00:00, 1618.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.33 examples/s]:00<00:00, 1295.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.18 examples/s]:00<00:00, 1298.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.33 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2522.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.09 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.42 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 33.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 29.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.80 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.53 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.69 examples/s]:00<00:00, 938.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.71 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.80 examples/s]00<00:00, 972.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]:00<00:00, 518.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.31 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.71 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1503.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.93 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.82 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.25 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.64 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.49 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3468 ...\n",
      "Processing shard 3469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.97 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3479 ...\n",
      "Processing shard 3480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.98 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:02,  1.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.63 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.52 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]:00<00:00, 2349.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]:00<00:00, 2445.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 182.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.45 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2325.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.43 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.54 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.23 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.40 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.51 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:03,  1.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.53 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.83 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.40 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3660 ...\n",
      "Processing shard 3661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3664 ...\n",
      "Processing shard 3665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.86 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3670 ...Processing shard 3671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.38 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.66 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.90 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2226.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.49 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.64 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  2.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.95 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.55 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.63 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:04,  1.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2434.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.05 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2320.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]:00<00:00, 807.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]:00<00:00, 1836.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.89 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.11 examples/s]:00<00:00, 2437.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 3839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]:00<00:00, 2436.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.07 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2450.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2239.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]:00<00:00, 2236.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.60 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.50 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2372.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2263.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.66 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.43 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2375.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2373.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]:00<00:00, 2415.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.66 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2073.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2475.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.85 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.77 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2215.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3958 ...\n",
      "Processing shard 3959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.94 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3970 ...\n",
      "Processing shard 3971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.71 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2347.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.09 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3989 ...\n",
      "Processing shard 3990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 3999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.29 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.18 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.16 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.24 examples/s]:00<00:00, 1625.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.20 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.60 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 41.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.48 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.94 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.76 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]:00<00:00, 1995.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4058 ...Processing shard 4059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.16 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4066 ...\n",
      "Processing shard 4067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]:00<00:00, 2335.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.41 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.50 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.06 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4092 ...Processing shard 4093 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2440.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.97 examples/s]:00<00:00, 842.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:01,  1.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.24 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2227.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4124 ...Processing shard 4125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.27 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.53 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4141 ...\n",
      "Processing shard 4142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2208.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2468.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.48 examples/s]:00<00:00, 2231.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2195.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:01,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.27 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.74 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.54 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]:00<00:00, 2143.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2102.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.96 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.26 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.55 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.30 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.59 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]:00<00:00, 1200.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.56 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2362.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2267.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:04<00:03,  1.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.51 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.90 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4322 ...\n",
      "Processing shard 4323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.30 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 238.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 168.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.56 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.46 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.64 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2140.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.24 examples/s]:00<00:00, 1212.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]:00<00:00, 2157.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.24 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.90 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2452.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:04<00:02,  1.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]:00<00:00, 2317.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.30 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.34 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]:00<00:00, 2099.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.73 examples/s]:00<00:00, 2393.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.33 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:02<00:03,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.96 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.77 examples/s]:00<00:00, 2351.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.85 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.72 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.54 examples/s]:00<00:00, 2425.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]:00<00:00, 900.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2354.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2141.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  3.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4510 ...Processing shard 4509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2381.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4517 ...\n",
      "Processing shard 4518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.10 examples/s]:00<00:00, 2433.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2326.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.40 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 16.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:04<00:39,  4.90s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4552 ...Processing shard 4551 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2172.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.16 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.06 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.01 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4592 ...\n",
      "Processing shard 4593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.96 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.38 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:04<00:00,  1.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.64 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2266.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2169.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 23.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.59 examples/s]:00<00:00, 714.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4651 ...Processing shard 4652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2432.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2554.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2350.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.61 examples/s]:00<00:00, 2275.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.73 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.82 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.39 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.94 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.66 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.65 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  3.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2304.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.41 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.35 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.21 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4766 ...\n",
      "Processing shard 4767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4769 ...\n",
      "Processing shard 4770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.75 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.59 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4777 ...Processing shard 4776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.79 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:04<00:01,  1.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]:00<00:00, 1411.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.52 examples/s]:00<00:00, 838.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.07 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.90 examples/s]:00<00:00, 2379.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2469.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4801 ...\n",
      "Processing shard 4802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.33 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2526.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]:00<00:00, 1463.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]:00<00:00, 2440.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.20 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4832 ...Processing shard 4833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 4834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 805.31 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2516.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.57 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 185.21 examples/s]00<00:00, 2374.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.09 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2410.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.66 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.49 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.36 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.22 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.25 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.56 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]:00<00:00, 644.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.01 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.56 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.30 examples/s]:00<00:00, 627.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]:00<00:00, 599.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.82 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.04 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.79 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.10 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 58.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.60 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.82 examples/s]00<00:00, 513.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.22 examples/s]00<00:00, 622.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.30 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]:00<00:00, 1049.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.19 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.40 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 432.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:09,  1.14s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.85 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.52 examples/s]:00<00:00, 773.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 395.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4930 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4932 ...Processing shard 4933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.01 examples/s]:00<00:00, 1946.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.07 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 4961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4964 ...\n",
      "Processing shard 4965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]:00<00:00, 2256.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.69 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4969 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.40 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]:00<00:00, 2245.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.50 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.05 examples/s]:00<00:00, 1486.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.76 examples/s]00<00:00, 2359.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.27 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 4999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.43 examples/s]:00<00:00, 2530.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]:00<00:00, 2224.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]:00<00:00, 2299.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5016 ...\n",
      "Processing shard 5017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.43 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.60 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2094.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.39 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2234.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 29.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.81 examples/s]:00<00:00, 2426.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.62 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.76 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.77 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.48 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.28 examples/s]:00<00:00, 2500.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2130.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5083 ...\n",
      "Processing shard 5084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.85 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]:00<00:00, 2154.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]:00<00:00, 2337.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]:00<00:00, 2302.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1868.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.17 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]:00<00:00, 2349.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.86 examples/s]:00<00:00, 2261.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.77 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2501.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]:00<00:00, 710.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.29 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.12 examples/s]:00<00:00, 1115.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]:00<00:00, 950.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.92 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.42 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.53 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.37 examples/s]:00<00:00, 889.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.02 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.50 examples/s]:00<00:00, 1031.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.04 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5147 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]:00<00:00, 1367.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.01 examples/s]:00<00:00, 1538.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.71 examples/s]:00<00:00, 951.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.96 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.23 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.41 examples/s]00<00:00, 706.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]:00<00:00, 295.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.58 examples/s]00<00:00, 490.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.29 examples/s]:00<00:00, 464.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.59 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.69 examples/s]00<00:00, 295.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.66 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.61 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.78 examples/s]00<00:00, 315.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.57 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.81 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.95 examples/s]:00<00:00, 248.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]:00<00:00, 344.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5218 ...Processing shard 5217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.55 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5225 ...Processing shard 5226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.33 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.80 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.42 examples/s]:00<00:00, 332.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.44 examples/s]00<00:00, 454.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5239 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.36 examples/s]00<00:00, 199.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.59 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.02 examples/s]:00<00:00, 342.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.08 examples/s]00<00:00, 346.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5250 ...Processing shard 5251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.65 examples/s]:00<00:00, 408.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5261 ...Processing shard 5262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.80 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.28 examples/s]:00<00:00, 233.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.24 examples/s]:00<00:00, 292.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.19 examples/s]:00<00:00, 404.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.54 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]:00<00:00, 378.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.20 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.15 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.40 examples/s]00<00:00, 181.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 26.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.39 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.16 examples/s]:00<00:00, 216.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.56 examples/s]:00<00:00, 305.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 73.03 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.96 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.46 examples/s]00<00:00, 189.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.60 examples/s]:00<00:00, 236.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.01 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.15 examples/s]00<00:00, 410.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.55 examples/s]00<00:00, 357.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.55 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.15 examples/s]00<00:00, 348.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.14 examples/s]:00<00:00, 378.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.95 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.37 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 49.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.32 examples/s]00<00:00, 441.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]:00<00:00, 383.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.73 examples/s]:00<00:00, 403.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.22 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.89 examples/s]:00<00:00, 149.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.20 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.24 examples/s]:00<00:00, 305.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.02 examples/s]:00<00:00, 242.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.46 examples/s]:00<00:00, 318.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.75 examples/s]00<00:00, 260.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]:00<00:00, 265.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.86 examples/s]:00<00:00, 266.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.33 examples/s]:00<00:00, 422.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.67 examples/s]00<00:00, 338.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.75 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.49 examples/s]:00<00:00, 398.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.76 examples/s]00<00:00, 171.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.46 examples/s]:00<00:00, 377.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.59 examples/s]:00<00:00, 331.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.81 examples/s]:00<00:00, 344.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.48 examples/s]00<00:00, 190.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.90 examples/s]:00<00:00, 166.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 214.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.87 examples/s]:00<00:00, 261.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.88 examples/s]:00<00:00, 514.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.32 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.97 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.92 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.26 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2454.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.98 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.72 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2409.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2442.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2471.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.15 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]:00<00:00, 2298.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 201.53 examples/s]00<00:00, 2100.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 195.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 203.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.90 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 191.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 191.09 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<00:00, 1625.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 196.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]:00<00:00, 1822.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.75 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.39 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 188.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 203.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 188.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.69 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.44 examples/s]00<?, ? examples/s]amples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.50 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.42 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5528 ...\n",
      "Processing shard 5529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 185.60 examples/s]00<00:00, 1399.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.10 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 189.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 179.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 171.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 175.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2366.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 178.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 178.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.10 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.78 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 185.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.33 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5551 ...\n",
      "Processing shard 5552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 168.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 178.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 190.87 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 181.40 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]:00<00:00, 1345.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.14 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.72 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]:00<00:00, 1019.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.04 examples/s]00<00:00, 738.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5575 ...Processing shard 5576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5578 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.05 examples/s]00<00:00, 1233.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.57 examples/s]00<00:00, 819.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.70 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 168.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.34 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.50 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 176.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.90 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5602 ...Processing shard 5603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.87 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.89 examples/s]00<00:00, 806.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.69 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.46 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.79 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.34 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.71 examples/s]00<00:00, 551.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.59 examples/s]00<00:00, 1056.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.75 examples/s]00<00:00, 800.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.17 examples/s]:00<00:00, 868.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.90 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.40 examples/s]00<00:00, 580.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.58 examples/s]00<00:00, 581.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.55 examples/s]00<00:00, 695.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.09 examples/s]:00<00:00, 548.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.24 examples/s]00<00:00, 560.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.72 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.35 examples/s]00<00:00, 710.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]:00<00:00, 240.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.98 examples/s]:00<00:00, 573.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.90 examples/s]00<00:00, 476.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.86 examples/s]:00<00:00, 547.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.90 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.63 examples/s]00<00:00, 459.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.51 examples/s]:00<00:00, 418.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.84 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.52 examples/s]:00<00:00, 321.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.84 examples/s]00<00:00, 435.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.97 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.00 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.06 examples/s]00<00:00, 385.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.56 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.11 examples/s]00<00:00, 443.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5679 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]:00<00:00, 191.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.70 examples/s]00<00:00, 469.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]:00<00:00, 450.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.03 examples/s]00<00:00, 176.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]:00<00:00, 136.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5708 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.39 examples/s]:00<00:00, 344.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.77 examples/s]:00<00:00, 319.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.62 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.19 examples/s]:00<00:00, 271.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]:00<00:00, 325.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]:00<00:00, 308.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.55 examples/s]:00<00:00, 270.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]:00<00:00, 197.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.29 examples/s]00<00:00, 342.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.19 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.41 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.02 examples/s]00<00:00, 286.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.09 examples/s]00<00:00, 230.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.55 examples/s]00<00:00, 288.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.76 examples/s]00<00:00, 206.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.03 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 332.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.30 examples/s]:00<00:00, 267.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.99 examples/s]:00<00:00, 497.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.15 examples/s]:00<00:00, 752.12 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5755 ...Processing shard 5756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.32 examples/s]00<00:00, 259.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.26 examples/s]:00<00:00, 456.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5772 ...Processing shard 5773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2097.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2561.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2124.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.00 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.70 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.27 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.37 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]:00<00:00, 2422.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.17 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:10,  1.29s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.99 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]:00<00:00, 1466.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.53 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2073.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5855 ...Processing shard 5856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.40 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.69 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5878 ...\n",
      "Processing shard 5879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]:00<00:00, 2111.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2110.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2235.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]:00<00:00, 2365.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.49 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.56 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]:00<00:00, 2532.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]:00<00:00, 1485.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.96 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.19 examples/s]:00<00:00, 1819.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.27 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5950 ...Processing shard 5951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.60 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.44 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5959 ...\n",
      "Processing shard 5960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2442.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.12 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.77 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 5994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2452.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 5999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  2.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.87 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2156.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.76 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.99 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.26 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6023 ...Processing shard 6024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.21 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.32 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.91 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.43 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.23 examples/s]:00<00:00, 1494.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]:00<00:00, 2319.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2263.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.80 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.11 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2237.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 26.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2483.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.60 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]:00<00:00, 1482.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2319.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]:00<00:00, 1841.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6109 ...Processing shard 6110 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.04 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6120 ...\n",
      "Processing shard 6121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]:00<00:00, 2337.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2214.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2377.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.82 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.62 examples/s]:00<00:00, 1172.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.76 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2470.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]:00<00:00, 2412.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.51 examples/s]:00<00:00, 910.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 32.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]:00<00:00, 1573.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6195 ...\n",
      "Processing shard 6196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]:00<00:00, 1883.11 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.55 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]:00<00:00, 1210.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.87 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.13 examples/s]:00<00:00, 1005.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2366.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.83 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]:00<00:00, 2331.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6240 ...\n",
      "Processing shard 6241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2222.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2162.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6250 ...\n",
      "Processing shard 6251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.22 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6254 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.66 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2335.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:09,  1.23s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]:00<00:00, 2247.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.82 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.37 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2496.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.97 examples/s]:00<00:00, 1503.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.09 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.06 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6344 ...Processing shard 6343 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2564.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.70 examples/s]:00<00:00, 1958.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.92 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6376 ...\n",
      "Processing shard 6377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]:00<00:00, 1459.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]:00<00:00, 2423.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 10.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6411 ...\n",
      "Processing shard 6412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2150.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]:00<00:00, 2201.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.80 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.51 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]:00<00:00, 817.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.04 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.70 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.12 examples/s]00<00:00, 2003.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6469 ...\n",
      "Processing shard 6470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6474 ...\n",
      "Processing shard 6475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]:00<00:00, 2323.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.75 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]:00<00:00, 1772.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.30 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]:00<00:00, 1617.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.20 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2438.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.87 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.52 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2359.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]:00<00:00, 2331.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2499.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2486.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.09 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2245.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.56 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2343.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2314.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2452.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.61 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2197.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.14 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6630 ...\n",
      "Processing shard 6631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]:00<00:00, 2133.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.05 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]:00<00:00, 1864.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.78 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.91 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.80 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]:00<00:00, 820.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]:00<00:00, 1692.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2102.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]:00<00:00, 2163.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.35 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2402.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.17 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]:00<00:00, 2346.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.24 examples/s]:00<00:00, 2429.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.82 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6715 ...\n",
      "Processing shard 6716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6723 ...\n",
      "Processing shard 6724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.86 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6731 ...\n",
      "Processing shard 6732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.79 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.99 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:12,  1.54s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:12,  1.55s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2273.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.19 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2481.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6783 ...\n",
      "Processing shard 6784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.85 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6796 ...Processing shard 6797 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.74 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2453.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2379.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.87 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2387.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6820 ...\n",
      "Processing shard 6821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6828 ...\n",
      "Processing shard 6829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.34 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.40 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.53 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:03<00:00,  2.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.74 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]:00<00:00, 1323.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.25 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.07 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.90 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.97 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]:00<00:00, 845.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.77 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.95 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.16 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  2.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2112.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.90 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]:00<00:00, 2489.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.33 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]:00<00:00, 1461.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]:00<00:00, 1772.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2102.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]:00<00:00, 1186.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.53 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]:00<00:00, 2056.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.53 examples/s]:00<00:00, 1231.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.66 examples/s]00<00:00, 2035.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2082.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.92 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.38 examples/s]00<00:00, 1901.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.56 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1307.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.95 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6952 ...Processing shard 6953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 6957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.99 examples/s]:00<00:00, 2490.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 23.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.24 examples/s]:00<00:00, 865.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.57 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]:00<00:00, 1470.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.33 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.10 examples/s]:00<00:00, 1061.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.52 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]:00<00:00, 526.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6988 ...\n",
      "Processing shard 6989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.19 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 6999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.03 examples/s]:00<00:00, 2493.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.68 examples/s]:00<00:00, 690.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.74 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]:00<00:00, 2165.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.68 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.84 examples/s]:00<00:00, 2057.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.05 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2112.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.10 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.87 examples/s]:00<00:00, 842.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.10 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7036 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2281.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.95 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.13 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2312.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2178.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.85 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.83 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:03<00:04,  1.24 examples/s]:00<00:00, 814.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.36 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.45 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.76 examples/s]00<00:00, 2518.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.60 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7077 ...Processing shard 7078 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.76 examples/s]00<00:00, 2228.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.85 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.25 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.33 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.15 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.51 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.57 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.90 examples/s]00<00:00, 963.03 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.52 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.18 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.39 examples/s]00<00:00, 1940.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  3.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.35 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.22 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.52 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.41 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7163 ...\n",
      "Processing shard 7164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.57 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2367.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2416.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.97 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]:00<00:00, 1708.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 189.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 191.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.17 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.79 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]:00<00:00, 2219.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2372.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.51 examples/s]:00<00:00, 863.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.42 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.64 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.69 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.15 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.89 examples/s]:00<00:00, 2011.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.37 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2207.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7257 ...\n",
      "Processing shard 7258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.52 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7299 ...Processing shard 7300 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2470.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]:00<00:00, 1754.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.85 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]:00<00:00, 2359.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.24 examples/s]:00<00:00, 734.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 39.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]:00<00:00, 825.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.73 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2482.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7359 ...\n",
      "Processing shard 7360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]:00<00:00, 1440.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2106.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2418.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.58 examples/s]:00<00:00, 2265.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.84 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.97 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 30.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.60 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.22 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.25 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.82 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7418 ...\n",
      "Processing shard 7419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2443.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]:00<00:00, 1642.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.77 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.10 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.35 examples/s]:00<00:00, 1954.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.50 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.44 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2409.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]:00<00:00, 1985.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.50 examples/s]:00<00:00, 1484.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.64 examples/s]:00<?, ? examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.99 examples/s]:00<00:00, 1932.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2475.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2243.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.43 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  7.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]:00<00:00, 2005.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]:00<00:00, 657.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.17 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]:00<00:00, 1834.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.40 examples/s]:00<00:00, 1634.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.74 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.89 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.17 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.07 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.36 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.86 examples/s]:00<00:00, 876.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 805.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.55 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2486.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.25 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 25.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.94 examples/s]:00<00:00, 875.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.34 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  3.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7567 ...Processing shard 7568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.34 examples/s]:00<00:00, 1098.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.04 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.96 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]:00<00:00, 899.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.81 examples/s]:00<00:00, 981.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.82 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.42 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.47 examples/s]00<00:00, 1116.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.38 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.25 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]:00<00:00, 2276.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]:00<00:00, 2320.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  2.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.07 examples/s]00<00:00, 2233.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.70 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2421.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2396.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.25 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.68 examples/s]:00<00:00, 1248.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7652 ...Processing shard 7651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.13 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.85 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.96 examples/s]00<00:00, 1295.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.87 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.14 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.34 examples/s]00<00:00, 1559.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]:00<00:00, 725.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]:00<00:00, 2014.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.25 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.99 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7697 ...\n",
      "Processing shard 7698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.10 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.47 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.90 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.86 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2476.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.29 examples/s]:00<00:00, 1220.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7733 ...\n",
      "Processing shard 7734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.13 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.85 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.93 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2397.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]:00<00:00, 2343.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.25 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.93 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.26 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.04 examples/s]00<00:00, 1886.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.75 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:01<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.50 examples/s]:00<00:00, 623.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.14 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.48 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.05 examples/s]:00<00:00, 2416.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.03 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]:00<00:00, 1272.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]:00<00:00, 2332.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.91 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.56 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:05<00:06,  1.28s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7902 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.10 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7908 ...Processing shard 7909 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2420.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7914 ...\n",
      "Processing shard 7915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2361.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 7919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.54 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]:00<00:00, 2143.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.34 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.31 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7931 ...\n",
      "Processing shard 7932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.83 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.29 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7948 ...\n",
      "Processing shard 7949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:03<00:04,  1.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.19 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7955 ...\n",
      "Processing shard 7956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]:00<00:00, 1506.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 66.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.83 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]:00<00:00, 749.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.38 examples/s]:00<00:00, 921.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.82 examples/s]:00<00:00, 2158.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2233.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.85 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 7999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.10 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:03<00:04,  1.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]:00<00:00, 2200.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2181.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]:00<00:00, 771.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:05,  1.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2259.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.54 examples/s]:00<00:00, 2344.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.84 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2469.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.16 examples/s]:00<00:00, 1250.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:04<00:01,  1.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.51 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]:00<00:00, 1855.89 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.43 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]:00<00:00, 1545.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.76 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.06 examples/s]:00<00:00, 759.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.34 examples/s]:00<00:00, 476.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]:00<00:00, 735.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  3.33 examples/s]:00<00:00, 898.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.44 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.40 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8059 ...\n",
      "Processing shard 8060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.79 examples/s]:00<00:00, 1359.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.81 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2134.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 30.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.55 examples/s]:00<00:00, 2360.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]:00<00:00, 1733.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.86 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.55 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.18 examples/s]:00<00:00, 621.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.85 examples/s]:00<00:00, 493.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1080.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.05 examples/s]:00<00:00, 619.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.44 examples/s]:00<00:00, 1118.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.02 examples/s]:00<00:00, 1472.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.44 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.32 examples/s]00<00:00, 2203.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.11 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.56 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 941.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:05,  1.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.87 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]:00<00:00, 2047.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.52 examples/s]:00<00:00, 1248.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.22 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.42 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.97 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.52 examples/s]:00<00:00, 1386.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.54 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.58 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.49 examples/s]:00<00:00, 1396.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8166 ...Processing shard 8167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.80 examples/s]:00<00:00, 862.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.44 examples/s]:00<00:00, 2418.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.89 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.64 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.15 examples/s]:00<00:00, 869.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.11 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8186 ...Processing shard 8187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.08 examples/s]:00<00:00, 1091.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2225.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.18 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.80 examples/s]:00<00:00, 845.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.13 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.81 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.10 examples/s]:00<00:00, 1486.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]:00<00:00, 1891.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 59.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.20 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 35.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.67 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8227 ...Processing shard 8226 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.12 examples/s]:00<00:00, 737.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.79 examples/s]:00<00:00, 762.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2454.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.97 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]:00<00:00, 2266.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.96 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.29 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]:00<00:00, 2443.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.41 examples/s]00<00:00, 1858.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.48 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.34 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2122.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.88 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.65 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2501.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2526.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.96 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.76 examples/s]:00<00:00, 1424.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.03 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8310 ...Processing shard 8311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.61 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1353.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8318 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.89 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.26 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]:00<00:00, 828.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.31 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.13 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.18 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.51 examples/s]:00<00:00, 309.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 210.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]:00<00:00, 419.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.55 examples/s]:00<00:00, 501.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.89 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.74 examples/s]00<00:00, 853.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.32 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.67 examples/s]:00<00:00, 1284.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.37 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.31 examples/s]:00<00:00, 805.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 793.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.69 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  1.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]:00<00:00, 926.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.88 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8369 ...Processing shard 8368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.04 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.27 examples/s]00<00:00, 460.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.22 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.82 examples/s]:00<00:00, 669.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.97 examples/s]:00<00:00, 511.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8391 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]:00<00:00, 554.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]:00<00:00, 833.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.20 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.33 examples/s]:00<00:00, 1357.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.23 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 751.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.11 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.58 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.43 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.73 examples/s]00<00:00, 1788.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.57 examples/s]:00<00:00, 925.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.06 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  3.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 500.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.61 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.09 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2525.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.52 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.64 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.64 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2455.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.77 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.89 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.34 examples/s]00<00:00, 2172.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.14 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.37 examples/s]:00<00:00, 1497.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.88 examples/s]00<00:00, 907.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.58 examples/s]:00<00:00, 601.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.93 examples/s]:00<00:00, 606.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.22 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.42 examples/s]00<00:00, 798.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.21 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.70 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.06 examples/s]00<00:00, 418.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.57 examples/s]00<00:00, 488.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]:00<00:00, 394.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.58 examples/s]:00<00:00, 505.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.38 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.55 examples/s]:00<00:00, 409.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.72 examples/s]:00<00:00, 291.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.45 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.40 examples/s]00<00:00, 521.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]:00<00:00, 389.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8519 ...Processing shard 8520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8521 ...Processing shard 8522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.43 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2203.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.30 examples/s]:00<00:00, 1029.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.16 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.51 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8540 ...\n",
      "Processing shard 8541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.74 examples/s]:00<00:00, 1939.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.66 examples/s]:00<00:00, 2263.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.90 examples/s]:00<00:00, 1276.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.53 examples/s]:00<00:00, 2097.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.69 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.67 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.72 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.19 examples/s]:00<00:00, 2034.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.71 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.07 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8575 ...\n",
      "Processing shard 8576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.49 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.84 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.50 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 921.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]:00<00:00, 976.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.23 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 171.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.14 examples/s]00<00:00, 755.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8626 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]:00<00:00, 748.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 871.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]:00<00:00, 960.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.17 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.16 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]:00<00:00, 816.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.64 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.68 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2137.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.66 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8651 ...Processing shard 8650 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.19 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.17 examples/s]:00<00:00, 694.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8658 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 173.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.36 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.33 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2303.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.85 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2109.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.09 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.72 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.68 examples/s]00<00:00, 1361.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.38 examples/s]:00<00:00, 1484.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.76 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.79 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.50 examples/s]:00<00:00, 1436.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.00 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.11 examples/s]00<00:00, 2174.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2244.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.24 examples/s]:00<00:00, 522.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.97 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.40 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.42 examples/s]00<00:00, 2343.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2130.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.94 examples/s]00<00:00, 1944.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.78 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.67 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.01 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.65 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.99 examples/s]00<00:00, 1281.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8723 ...\n",
      "\n",
      "Processing shard 8724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.47 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.47 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8733 ...\n",
      "Processing shard 8734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.90 examples/s]:00<00:00, 1581.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.70 examples/s]00<00:00, 893.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.93 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.15 examples/s]:00<00:00, 1562.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]:00<00:00, 639.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]:00<00:00, 1495.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.83 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.77 examples/s]:00<00:00, 296.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8776 ...Processing shard 8777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 802.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.01 examples/s]:00<00:00, 1060.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.50 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.10 examples/s]:00<00:00, 1196.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8789 ...Processing shard 8790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.87 examples/s]:00<00:00, 1482.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.93 examples/s]:00<00:00, 563.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.60 examples/s]:00<00:00, 434.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.89 examples/s]:00<00:00, 302.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.41 examples/s]:00<00:00, 326.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.62 examples/s]:00<00:00, 326.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.74 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.07 examples/s]:00<00:00, 480.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.55 examples/s]:00<00:00, 315.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8831 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.47 examples/s]:00<00:00, 393.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.86 examples/s]:00<00:00, 260.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.45 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.38 examples/s]:00<00:00, 450.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]:00<00:00, 344.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.04 examples/s]:00<00:00, 513.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.58 examples/s]:00<00:00, 441.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8861 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.89 examples/s]:00<00:00, 239.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]:00<00:00, 241.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.98 examples/s]:00<00:00, 822.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.10 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.50 examples/s]:00<00:00, 411.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.28 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.04 examples/s]00<00:00, 448.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.09 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 335.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.97 examples/s]00<00:00, 292.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 64.86 examples/s]:00<?, ? examples/s]amples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 67.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.15 examples/s]00<00:00, 481.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.72 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.03 examples/s]00<00:00, 265.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.39 examples/s]00<00:00, 470.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.35 examples/s]00<00:00, 857.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 324.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.21 examples/s]]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.24 examples/s]00<00:00, 397.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8942 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.66 examples/s]:00<00:00, 243.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8950 ...Processing shard 8951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.79 examples/s]:00<00:00, 395.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.33 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.46 examples/s]:00<00:00, 458.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]:00<00:00, 826.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 52.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]:00<00:00, 392.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.83 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8975 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.51 examples/s]:00<00:00, 365.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.77 examples/s]00<00:00, 284.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.64 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.72 examples/s]:00<00:00, 276.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 8983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 64.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.98 examples/s]:00<00:00, 252.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 8999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.50 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.06 examples/s]:00<00:00, 696.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.09 examples/s]:00<00:00, 279.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 28.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.20 examples/s]:00<00:00, 503.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.44 examples/s]:00<00:00, 199.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.65 examples/s]:00<00:00, 276.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.40 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9026 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.84 examples/s]:00<00:00, 284.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.39 examples/s]:00<00:00, 312.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.54 examples/s]:00<00:00, 341.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.64 examples/s]:00<00:00, 326.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9054 ...Processing shard 9053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.30 examples/s]:00<00:00, 266.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.97 examples/s]:00<00:00, 355.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.45 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.75 examples/s]:00<00:00, 287.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.39 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.33 examples/s]:00<00:00, 326.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.09 examples/s]:00<00:00, 556.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.28 examples/s]:00<00:00, 274.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.15 examples/s]00<00:00, 393.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.62 examples/s]00<00:00, 374.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.86 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.28 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.81 examples/s]:00<00:00, 418.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9094 ...Processing shard 9095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.80 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.03 examples/s]00<00:00, 487.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.15 examples/s]00<00:00, 394.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]:00<00:00, 231.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.79 examples/s]:00<00:00, 412.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.44 examples/s]:00<00:00, 173.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.64 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 233.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.62 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]:00<00:00, 461.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.99 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.31 examples/s]00<00:00, 427.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9152 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.84 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 30.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]:00<00:00, 2366.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]:00<00:00, 928.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2495.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2270.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.99 examples/s]:00<00:00, 2134.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.06 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.30 examples/s]00<00:00, 1593.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.23 examples/s]00<00:00, 1337.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.05 examples/s]00<00:00, 797.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.63 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 50.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.70 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.63 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.64 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.48 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.01 examples/s]00<00:00, 1626.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.59 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1204.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.21 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.12 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.10 examples/s]00<00:00, 855.05 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9218 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.04 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.65 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.17 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.94 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.34 examples/s]00<00:00, 1929.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.82 examples/s]00<00:00, 2452.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.47 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.49 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.89 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.54 examples/s]00<00:00, 1557.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.73 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 56.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.56 examples/s]00<00:00, 830.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.79 examples/s]00<00:00, 1083.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.84 examples/s]:00<?, ? examples/s]amples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.81 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.97 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.98 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.79 examples/s]00<00:00, 565.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.74 examples/s]00<00:00, 851.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.85 examples/s]:00<00:00, 438.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.60 examples/s]00<00:00, 568.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 339.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.81 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.90 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.58 examples/s]:00<00:00, 476.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]:00<00:00, 405.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.28 examples/s]00<00:00, 482.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.03 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.08 examples/s]:00<00:00, 490.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.96 examples/s]00<00:00, 479.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.10 examples/s]00<00:00, 556.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.38 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.19 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.37 examples/s]00<00:00, 907.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.26 examples/s]00<00:00, 858.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.93 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.16 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.32 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.34 examples/s]00<00:00, 1152.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.13 examples/s]00<00:00, 1589.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.51 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.93 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.80 examples/s]:00<00:00, 906.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.20 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.85 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.77 examples/s]00<00:00, 978.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.61 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1508.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.33 examples/s]00<00:00, 843.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.80 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9356 ...Processing shard 9357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.08 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.94 examples/s]00<00:00, 1192.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]:00<00:00, 1315.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9358 ...Processing shard 9359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.12 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.55 examples/s]00<00:00, 1116.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.81 examples/s]00<00:00, 492.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.54 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.62 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.08 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.29 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.57 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.16 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.49 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.79 examples/s]:00<00:00, 545.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.20 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.40 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.71 examples/s]00<00:00, 520.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.89 examples/s]00<00:00, 501.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.42 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.42 examples/s]:00<00:00, 525.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.65 examples/s]00<00:00, 514.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.17 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.53 examples/s]00<00:00, 469.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.92 examples/s]00<00:00, 491.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.43 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.97 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]:00<00:00, 286.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.30 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9413 ...Processing shard 9414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 145.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.41 examples/s]:00<00:00, 339.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.66 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.36 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:02<00:05,  1.06 examples/s]:00<00:00, 372.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.65 examples/s]00<00:00, 365.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.60 examples/s]00<00:00, 448.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.20 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.00 examples/s]:00<00:00, 420.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.73 examples/s]00<00:00, 633.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.10 examples/s]00<00:00, 589.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 406.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.05 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.13 examples/s]00<00:00, 580.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.90 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.66 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.69 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.40 examples/s]00<00:00, 335.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.46 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.02 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.30 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.16 examples/s]:00<00:00, 371.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.32 examples/s]00<00:00, 188.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.16 examples/s]00<00:00, 263.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9465 ...Processing shard 9464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.45 examples/s]:00<00:00, 492.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.13 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.04 examples/s]:00<00:00, 377.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.58 examples/s]:00<00:00, 436.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.18 examples/s]00<00:00, 354.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.03 examples/s]:00<00:00, 459.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.59 examples/s]00<00:00, 454.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.69 examples/s]:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.05 examples/s]:00<00:00, 434.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.83 examples/s]:00<00:00, 378.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]:00<00:00, 437.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.11 examples/s]:00<00:00, 414.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.77 examples/s]:00<00:00, 246.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.13 examples/s]:00<00:00, 387.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.29 examples/s]00<00:00, 536.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.82 examples/s]:00<00:00, 359.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.12 examples/s]:00<00:00, 352.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.45 examples/s]00<00:00, 336.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.88 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.84 examples/s]:00<00:00, 274.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.00 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.35 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9540 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.41 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.08 examples/s]:00<00:00, 352.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.64 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.17 examples/s]:00<00:00, 574.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.54 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.81 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 181.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.08 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2146.40 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:02<00:19,  2.45s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.93 examples/s]00<00:00, 2114.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.98 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.58 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]:00<00:00, 1855.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 175.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 178.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]:00<00:00, 812.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.66 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.03 examples/s]:00<00:00, 1227.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.51 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.10 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.03 examples/s]00<00:00, 1384.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.43 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.82 examples/s]00<00:00, 572.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.21 examples/s]00<00:00, 646.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.34 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.60 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1297.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.51 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.10 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.93 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.91 examples/s]:00<00:00, 967.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.74 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.48 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.78 examples/s]:00<00:00, 616.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.08 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.15 examples/s]:00<00:00, 648.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.42 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.32 examples/s]00<00:00, 544.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.85 examples/s]:00<00:00, 500.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.98 examples/s]00<00:00, 697.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.59 examples/s]:00<00:00, 690.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.28 examples/s]00<00:00, 568.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.63 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.00 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.62 examples/s]00<00:00, 317.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.07 examples/s]00<00:00, 463.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.36 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 341.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]:00<00:00, 508.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.82 examples/s]00<00:00, 952.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.05 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.20 examples/s]:00<00:00, 517.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.71 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.54 examples/s]00<00:00, 822.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.05 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<00:00, 452.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.22 examples/s]:00<00:00, 411.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.32 examples/s]00<00:00, 462.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.43 examples/s]00<00:00, 289.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]:00<00:00, 234.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 380.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.89 examples/s]:00<00:00, 446.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.10 examples/s]00<00:00, 456.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.38 examples/s]:00<00:00, 342.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.05 examples/s]:00<00:00, 457.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.19 examples/s]00<00:00, 352.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.09 examples/s]00<00:00, 469.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.15 examples/s]:00<00:00, 345.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9729 ...\n",
      "Processing shard 9730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.08 examples/s]00<00:00, 363.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2388.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.66 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.34 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.11 examples/s]:00<00:00, 216.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.36 examples/s]00<00:00, 284.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.85 examples/s]00<00:00, 329.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.67 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.91 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.93 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 308.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.08 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.48 examples/s]00<00:00, 495.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.09 examples/s]:00<00:00, 274.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.64 examples/s]00<00:00, 294.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.32 examples/s]:00<00:00, 393.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.56 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.92 examples/s]:00<00:00, 364.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.52 examples/s]:00<00:00, 440.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.68 examples/s]00<00:00, 410.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.91 examples/s]:00<00:00, 239.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.11 examples/s]:00<00:00, 293.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.93 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.81 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.86 examples/s]:00<00:00, 386.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.60 examples/s]00<00:00, 370.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.98 examples/s]00<00:00, 412.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.49 examples/s]00<00:00, 492.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9842 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.48 examples/s]00<00:00, 307.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.09 examples/s]:00<00:00, 374.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.67 examples/s]:00<00:00, 284.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.68 examples/s]00<00:00, 366.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9853 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.84 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 42.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.21 examples/s]00<00:00, 414.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.50 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.90 examples/s]:00<00:00, 348.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 68.59 examples/s]:00<00:00, 162.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 92.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 23.58 examples/s]:00<00:00, 352.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.96 examples/s]:00<00:00, 376.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.92 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.63 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.95 examples/s]:00<00:00, 264.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.76 examples/s]00<00:00, 300.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.35 examples/s]00<00:00, 312.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 191.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.57 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.40 examples/s]:00<00:00, 1071.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.16 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.16 examples/s]:00<00:00, 311.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.45 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.60 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.18 examples/s]:00<00:00, 268.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.13 examples/s]:00<00:00, 392.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.56 examples/s]:00<00:00, 154.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.40 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9946 ...Processing shard 9947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.75 examples/s]:00<00:00, 903.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.93 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 460.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]:00<00:00, 336.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.95 examples/s]:00<00:00, 288.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 9968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.16 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.51 examples/s]:00<00:00, 473.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.03 examples/s]:00<00:00, 286.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9981 ...Processing shard 9982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.76 examples/s]:00<00:00, 330.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.75 examples/s]:00<00:00, 447.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.92 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.92 examples/s]:00<00:00, 355.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.33 examples/s]:00<00:00, 131.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 79.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 9999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]:00<00:00, 261.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.26 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 66.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.50 examples/s]:00<00:00, 378.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.09 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.94 examples/s]00<00:00, 285.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.93 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.80 examples/s]00<00:00, 341.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.78 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.31 examples/s]:00<00:00, 273.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.49 examples/s]:00<00:00, 345.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.41 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.00 examples/s]:00<00:00, 350.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.44 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 341.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.07 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.64 examples/s]:00<00:00, 216.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10038 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.82 examples/s]00<00:00, 98.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 67.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.71 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.15 examples/s]:00<00:00, 128.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.13 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.23 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.40 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.86 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.51 examples/s]00<00:00, 296.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.01 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 491.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10088 ...Processing shard 10089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.58 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2112.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.32 examples/s]:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10100 ...\n",
      "Processing shard 10101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.51 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 23.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.27 examples/s]:00<00:00, 2290.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.32 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]:00<00:00, 2073.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2550.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2218.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2099.48 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.71 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2288.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.85 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.88 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.28 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]:00<00:00, 2033.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]:00<00:00, 2280.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10173 ...Processing shard 10172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]:00<00:00, 919.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]:00<00:00, 2066.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.89 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.28 examples/s]:00<00:00, 2056.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]:00<00:00, 2502.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1524.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.81 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.62 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2524.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10190 ...\n",
      "Processing shard 10191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 36.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.32 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.66 examples/s]00<00:00, 1233.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.83 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.91 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10215 ...\n",
      "Processing shard 10216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.95 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10219 ...\n",
      "Processing shard 10220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 171.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2396.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.12 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.52 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.09 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 23.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10231 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.02 examples/s]:00<00:00, 2428.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.62 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.54 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.07 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.31 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2560.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2137.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.12 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10281 ...Processing shard 10282 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]:00<00:00, 1693.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2448.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.68 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.55 examples/s]:00<00:00, 2347.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.87 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.17 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.09 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.09 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]:00<00:00, 2335.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.33 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2300.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 179.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]:00<00:00, 2528.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.54 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.59 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2372.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 179.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 183.88 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.11 examples/s]00<00:00, 1821.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 186.45 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.74 examples/s]00<00:00, 2433.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2136.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.47 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.45 examples/s]00<00:00, 1077.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.24 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.39 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 29.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]:00<00:00, 2351.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10362 ...\n",
      "Processing shard 10363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]:00<00:00, 2209.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.80 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]:00<00:00, 2378.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]:00<00:00, 2439.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.11 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.14 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.24 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.15 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2381.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.57 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.62 examples/s]:00<00:00, 2271.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10457 ...\n",
      "Processing shard 10458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.17 examples/s]:00<00:00, 1336.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10467 ...Processing shard 10466 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.21 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.34 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]:00<00:00, 2439.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.67 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.46 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2134.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.54 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2346.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.24 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10536 ...Processing shard 10537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 205.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.30 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.19 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]:00<00:00, 1924.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.21 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.05 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2497.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.30 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.59 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]:00<00:00, 2136.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.91 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2296.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]:00<00:00, 1739.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.91 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.85 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]:00<00:00, 1943.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.99 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10613 ...\n",
      "Processing shard 10614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]:00<00:00, 706.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10644 ...\n",
      "Processing shard 10645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.83 examples/s]:00<00:00, 2464.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.18 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2277.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]:00<00:00, 2244.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.93 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.80 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.68 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.16 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]:00<00:00, 2376.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2459.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.83 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.76 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.41 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.82 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2397.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.47 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2332.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.34 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.67 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10738 ...\n",
      "Processing shard 10739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.28 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2485.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]:00<00:00, 2322.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.86 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.08 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10778 ...\n",
      "Processing shard 10779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]:00<00:00, 1954.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.78 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]:00<00:00, 859.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10811 ...\n",
      "Processing shard 10812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.23 examples/s]:00<00:00, 2171.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]:00<00:00, 1531.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.72 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 176.52 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.55 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 173.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.17 examples/s]00<00:00, 878.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]:00<00:00, 579.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.81 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.69 examples/s]00<00:00, 842.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 168.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 53.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.66 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  7.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]:00<00:00, 1886.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.75 examples/s]:00<00:00, 1083.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  2.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2378.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.85 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:01,  3.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.22 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2444.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 50.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.12 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]:00<00:00, 1747.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.82 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.23 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.35 examples/s]:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.08 examples/s]:00<00:00, 1591.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.05 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.11 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10939 ...\n",
      "Processing shard 10940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.90 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2378.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]:00<00:00, 1545.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.79 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]:00<00:00, 1984.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.87 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.04 examples/s]:00<00:00, 1252.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.67 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]:00<00:00, 1983.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.80 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]:00<00:00, 2085.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.62 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2137.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 10991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.08 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]:00<00:00, 1207.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1748.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 10999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2421.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2169.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2097.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.80 examples/s]00<00:00, 1293.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]:00<00:00, 1862.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.52 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.24 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.93 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<00:00, 1614.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.92 examples/s]:00<00:00, 1253.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.27 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.28 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2581.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.66 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2218.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]:00<00:00, 1418.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.01 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]:00<00:00, 1110.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.64 examples/s]:00<00:00, 1324.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2133.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11080 ...\n",
      "Processing shard 11081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.78 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]:00<00:00, 2375.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.05 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.60 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2099.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2475.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.82 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.42 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2402.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 14.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.85 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:01,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.14 examples/s]:00<00:00, 2262.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.21 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11138 ...Processing shard 11139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2462.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.12 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.14 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.22 examples/s]:00<00:00, 2269.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.39 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 23.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2259.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 45.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11173 ...Processing shard 11174 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11185 ...\n",
      "Processing shard 11186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]:00<00:00, 874.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]:00<00:00, 2286.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.75 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 49.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11210 ...Processing shard 11209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.16 examples/s]:00<00:00, 2479.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11216 ...\n",
      "Processing shard 11217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 10.24 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]:00<00:00, 2386.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.16 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.24 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]:00<00:00, 2072.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11260 ...Processing shard 11261 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.52 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.10 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.89 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.53 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]:00<00:00, 1497.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]:00<00:00, 2246.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]:00<00:00, 1340.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.67 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.92 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.46 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11343 ...\n",
      "Processing shard 11344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]:00<00:00, 1893.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]:00<00:00, 2376.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.94 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.09 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]:00<00:00, 2023.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.83 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]:00<00:00, 2011.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2502.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2434.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.97 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.27 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.20 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.63 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.29 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2286.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.98 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2369.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11421 ...\n",
      "\n",
      "Processing shard 11422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.79 examples/s]00<00:00, 1862.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.19 examples/s]:00<00:00, 1853.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11430 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.29 examples/s]00<00:00, 1325.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.37 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.55 examples/s]00<00:00, 1305.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.78 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.42 examples/s]:00<00:00, 1576.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.92 examples/s]00<00:00, 1420.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.15 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.05 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11459 ...Processing shard 11460 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11464 ...\n",
      "Processing shard 11465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.47 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.60 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.68 examples/s]:00<00:00, 2453.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.41 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]:00<00:00, 1271.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.94 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2567.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.47 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.37 examples/s]:00<00:00, 2551.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]:00<00:00, 2033.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.90 examples/s]:00<00:00, 1533.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]:00<00:00, 1874.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]:00<00:00, 2142.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.29 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2371.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.63 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.66 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2108.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.36 examples/s]:00<00:00, 1812.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2234.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2169.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.00 examples/s]:00<00:00, 724.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11560 ...\n",
      "Processing shard 11561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.20 examples/s]:00<00:00, 1766.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.72 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.05 examples/s]:00<00:00, 1962.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2363.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 47.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]:00<00:00, 1486.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2238.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]:00<00:00, 2326.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2126.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.56 examples/s]:00<00:00, 2273.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11625 ...\n",
      "Processing shard 11626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.09 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]:00<00:00, 2529.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.50 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]:00<00:00, 2079.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.99 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11649 ...Processing shard 11650 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.89 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11667 ...Processing shard 11668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.51 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.29 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.50 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11683 ...\n",
      "Processing shard 11684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2515.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.09 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.67 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]:00<00:00, 2145.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11714 ...\n",
      "Processing shard 11715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2424.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11727 ...\n",
      "Processing shard 11728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]:00<00:00, 2390.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.30 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:08<00:01,  1.01s/ examples]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2081.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 31.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.50 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.51 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2397.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.02 examples/s]:00<00:00, 1873.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2338.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.03 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.21 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.82 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.63 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.48 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.07 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2118.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.32 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.37 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.51 examples/s]:00<00:00, 823.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:01,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2271.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.88 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.63 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.91 examples/s]:00<00:00, 1521.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.09 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 11904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]:00<00:00, 2449.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]:00<00:00, 1894.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.43 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.74 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11930 ...Processing shard 11931 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.58 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11942 ...\n",
      "Processing shard 11943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 37.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]:00<00:00, 2371.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.96 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.91 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]:00<00:00, 1359.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.94 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 19.84 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.82 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.43 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11994 ...\n",
      "Processing shard 11995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 11999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2496.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2128.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]:00<00:00, 1442.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.38 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.67 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]:00<00:00, 1994.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.77 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.03 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2358.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.63 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 35.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.71 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]:00<00:00, 1752.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.39 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.38 examples/s]:00<00:00, 1640.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]:00<00:00, 1937.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]:00<00:00, 2511.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2414.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]:00<00:00, 2508.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.53 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:03<00:01,  1.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2204.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.84 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.11 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]:00<00:00, 772.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.61 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2134.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2392.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2314.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.48 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2259.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2118.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.03 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2554.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 28.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.19 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2413.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.88 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.15 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12195 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2282.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2085.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.97 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.94 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2438.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2305.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]:00<00:00, 2409.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.60 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2233.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12253 ...\n",
      "Processing shard 12254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.91 examples/s]:00<00:00, 951.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]:00<00:00, 1770.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.60 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.73 examples/s]:00<00:00, 844.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]:00<00:00, 1377.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.02 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:03,  1.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.92 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.18 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.57 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2403.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 36.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.33 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 29.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.79 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.67 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12330 ...\n",
      "Processing shard 12331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.93 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.24 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]:00<00:00, 1665.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.90 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.68 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2329.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12367 ...\n",
      "Processing shard 12368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.40 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.74 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2137.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1859.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.65 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.59 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.24 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2408.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.34 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.73 examples/s]:00<00:00, 1877.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.87 examples/s]:00<00:00, 1833.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.86 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12417 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]:00<00:00, 1468.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.42 examples/s]:00<00:00, 730.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.65 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.79 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.63 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.57 examples/s]:00<00:00, 2385.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.21 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2158.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]:00<00:00, 2320.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.83 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]:00<00:00, 1396.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2412.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.48 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]:00<00:00, 2380.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.63 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.24 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.19 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]:00<00:00, 1333.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]:00<00:00, 1529.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.88 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 39.38 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.11 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.96 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]:00<00:00, 2397.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.98 examples/s]:00<00:00, 1757.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.44 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]:00<00:00, 2384.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.01 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.38 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2124.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.25 examples/s]:00<00:00, 925.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2385.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2411.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 164.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.20 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12618 ...\n",
      "Processing shard 12619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.74 examples/s]:00<00:00, 1645.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.93 examples/s]:00<00:00, 882.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12631 ...\n",
      "Processing shard 12632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]:00<00:00, 2219.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.79 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]:00<00:00, 2416.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.86 examples/s]:00<00:00, 2020.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.45 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.96 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.34 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 29.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2439.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.50 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:12,  1.56s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.16 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.91 examples/s]:00<00:00, 810.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.09 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:14,  1.82s/ examples]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.80 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.54 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1706.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.92 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.12 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]:00<00:00, 1458.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.32 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]:00<00:00, 719.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.18 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12785 ...\n",
      "Processing shard 12786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12801 ...\n",
      "Processing shard 12802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<00:00, 2069.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.91 examples/s]:00<00:00, 2046.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.85 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12819 ...Processing shard 12820 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2305.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.90 examples/s]:00<00:00, 2483.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.92 examples/s]:00<00:00, 1434.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.77 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12836 ...Processing shard 12837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.34 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<00:00, 2507.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2024.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12862 ...\n",
      "Processing shard 12863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]:00<00:00, 2067.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]:00<00:00, 1645.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.63 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12891 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]:00<00:00, 2330.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]:00<00:00, 2318.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12917 ...\n",
      "Processing shard 12918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.33 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]:00<00:00, 2047.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2244.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2141.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]:00<00:00, 967.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.86 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]:00<00:00, 2504.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2382.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 12965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]:00<00:00, 1526.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]:00<00:00, 2461.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2468.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2073.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 12999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.30 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.41 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2195.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.53 examples/s]:00<00:00, 2302.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 168.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 36.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.61 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]:00<00:00, 2554.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.11 examples/s]:00<00:00, 2392.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]:00<00:00, 2371.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.37 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.84 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.46 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2431.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.33 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.92 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13111 ...Processing shard 13110 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.65 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.35 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]:00<00:00, 2445.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.63 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.91 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.97 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.55 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:02<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13164 ...\n",
      "Processing shard 13165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]:00<00:00, 2310.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]:00<00:00, 1320.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.34 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.13 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.39 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.25 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:10<00:07,  2.34s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.45 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:10<00:00,  1.18s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.12 examples/s]:00<00:00, 822.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]:00<00:00, 789.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.80 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.54 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.69 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.51 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]:00<00:00, 2481.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.68 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2328.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]:00<00:00, 2472.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.54 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  1.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]:00<00:00, 2365.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.77 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]:00<00:00, 2352.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  3.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.02 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13304 ...Processing shard 13303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13318 ...Processing shard 13319 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.99 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:08,  1.10s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13332 ...\n",
      "Processing shard 13333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]:00<00:00, 2339.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.11 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.20 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.53 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2225.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13409 ...\n",
      "Processing shard 13410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.56 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2364.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 59.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.94 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13483 ...\n",
      "Processing shard 13484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.54 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2242.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]:00<00:00, 1855.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]:00<00:00, 2372.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]:00<00:00, 1404.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2557.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2074.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.36 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.49 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13547 ...Processing shard 13548 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2398.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.80 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.01 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.00 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13583 ...\n",
      "Processing shard 13584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13589 ...\n",
      "Processing shard 13590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2264.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13600 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.60 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.90 examples/s]:00<00:00, 1408.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.06 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2341.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 175.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2574.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2358.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2225.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2545.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]:00<00:00, 2255.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2290.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]:00<00:00, 2466.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.45 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.15 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.11 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.40 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.37 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.84 examples/s]:00<00:00, 597.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.21 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13683 ...Processing shard 13682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]:00<00:00, 2313.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2276.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.32 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]:00<00:00, 1852.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.73 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.89 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.06 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.83 examples/s]:00<00:00, 1296.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.26 examples/s]:00<00:00, 2511.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2143.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.40 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]:00<00:00, 822.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]:00<00:00, 2142.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]:00<00:00, 2385.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.84 examples/s]00<00:00, 842.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.76 examples/s]:00<00:00, 1635.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13784 ...\n",
      "Processing shard 13785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.14 examples/s]:00<00:00, 2369.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.49 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13801 ...\n",
      "Processing shard 13802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.48 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13807 ...Processing shard 13806 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2420.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13812 ...Processing shard 13813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]:00<00:00, 847.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.77 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.32 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2362.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2360.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]:00<00:00, 2352.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13841 ...\n",
      "Processing shard 13842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.34 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.27 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 30.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.26 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  1.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.92 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]:00<00:00, 1764.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]:00<00:00, 2425.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2332.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13904 ...\n",
      "Processing shard 13905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.73 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.31 examples/s]:00<00:00, 2312.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2214.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.53 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.54 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13945 ...\n",
      "Processing shard 13946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.15 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.99 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13952 ...Processing shard 13953 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.99 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]:00<00:00, 2109.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.89 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.64 examples/s]:00<00:00, 1745.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2326.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2456.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.43 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 13991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2415.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 13999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.73 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2285.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.25 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14023 ...\n",
      "Processing shard 14024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2478.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.71 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]:00<00:00, 952.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2470.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.81 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.98 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14046 ...\n",
      "Processing shard 14047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.75 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.29 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2423.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2261.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.31 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:04<00:03,  1.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.03 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.31 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2382.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.83 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]:00<00:00, 2478.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]:00<00:00, 2388.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14137 ...\n",
      "Processing shard 14138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.32 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.35 examples/s]:00<00:00, 2217.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]:00<00:00, 1656.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]:00<00:00, 2361.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2173.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14166 ...\n",
      "Processing shard 14167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]:00<00:00, 2457.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.31 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.32 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.02 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.59 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.64 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2435.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.11 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.29 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]:00<00:00, 2152.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.78 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]:00<00:00, 2176.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14254 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]:00<00:00, 871.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.87 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.65 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.87 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.83 examples/s]:00<00:00, 721.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.21 examples/s]:00<00:00, 2125.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.74 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.45 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.58 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14305 ...\n",
      "Processing shard 14306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.58 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 24.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.42 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.49 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.24 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2313.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14345 ...\n",
      "Processing shard 14346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.21 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2318.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 14.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.66 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2306.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14402 ...Processing shard 14403 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.97 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]:00<00:00, 2315.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2340.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2268.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2368.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 163.67 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.70 examples/s]:00<00:00, 543.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 179.29 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.30 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.03 examples/s]:00<00:00, 1652.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2124.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14450 ...Processing shard 14451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.61 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2166.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.08 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.94 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.51 examples/s]:00<00:00, 1332.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.16 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.64 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 32.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 56.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2301.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2155.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2149.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.67 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.24 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.46 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.14 examples/s]:00<00:00, 2047.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.84 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.78 examples/s]:00<00:00, 2453.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.71 examples/s]:00<00:00, 2351.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]:00<00:00, 2122.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2307.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14582 ...\n",
      "Processing shard 14583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14584 ...\n",
      "Processing shard 14585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.48 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.19 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.35 examples/s]:00<00:00, 1571.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.76 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.74 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.47 examples/s]:00<00:00, 2399.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.70 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2308.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 26.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2365.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.56 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2468.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.14 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.17 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]:00<00:00, 850.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]:00<00:00, 2494.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14669 ...Processing shard 14670 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.97 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]:00<00:00, 596.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 46.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.45 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]:00<00:00, 2537.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.98 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.92 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.23 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  6.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.55 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.61 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2331.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14741 ...\n",
      "Processing shard 14742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.54 examples/s]:00<00:00, 2359.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.42 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.20 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2098.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14760 ...Processing shard 14759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]:00<00:00, 2382.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 37.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2485.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.12 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2558.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.03 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:08,  1.02s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14777 ...Processing shard 14778 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.13 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.65 examples/s]:00<00:00, 1380.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.48 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.48 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14792 ...Processing shard 14793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]:00<00:00, 1450.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.08 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.81 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.96 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.39 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2246.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.59 examples/s]:00<00:00, 1688.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2439.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.80 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.29 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.21 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]:00<00:00, 2469.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14871 ...\n",
      "Processing shard 14872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]:00<00:00, 1980.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1667.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.39 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.08 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]:00<00:00, 2489.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  5.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]:00<00:00, 793.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 25.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2386.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2397.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14927 ...Processing shard 14928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]:00<00:00, 840.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.69 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.92 examples/s]:00<00:00, 1171.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14935 ...\n",
      "Processing shard 14936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.28 examples/s]:00<00:00, 788.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.52 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14942 ...Processing shard 14943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.67 examples/s]:00<00:00, 1524.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 14960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2179.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.77 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.92 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.76 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 14975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 23.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.54 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2251.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.98 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.01 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 14999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.88 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 39.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.35 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.24 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.20 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.62 examples/s]:00<00:00, 1958.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1564.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.43 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.24 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]:00<00:00, 2173.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2218.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.96 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.20 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.23 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2491.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.11 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]:00<00:00, 1501.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.85 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2325.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.37 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2224.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.08 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 35.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]:00<00:00, 1941.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.33 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15128 ...Processing shard 15129 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15132 ...\n",
      "Processing shard 15133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.29 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  1.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.34 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.12 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15160 ...\n",
      "Processing shard 15161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15168 ...\n",
      "Processing shard 15169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.23 examples/s]:00<00:00, 2088.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.08 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.59 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.47 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:02<00:08,  1.21s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.32 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2409.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.06 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.98 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 40.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2485.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.15 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.58 examples/s]:00<00:00, 2305.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.91 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.46 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]:00<00:00, 1516.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.52 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15284 ...\n",
      "Processing shard 15285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.09 examples/s]:00<00:00, 895.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2498.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.08 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.69 examples/s]:00<00:00, 1719.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]:00<00:00, 2316.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]:00<00:00, 1587.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.12 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.55 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 55.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15353 ...\n",
      "Processing shard 15354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.46 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15358 ...Processing shard 15357 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]:00<00:00, 2132.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.67 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]:00<00:00, 862.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.30 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.73 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:04<00:01,  1.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15392 ...\n",
      "Processing shard 15393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.10 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]:00<?, ? examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.43 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 26.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.51 examples/s]:00<00:00, 2250.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.31 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.91 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:06,  1.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2422.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.18 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]:00<00:00, 1777.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.20 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15464 ...\n",
      "Processing shard 15465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.12 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.35 examples/s]:00<00:00, 1225.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]:00<00:00, 2034.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.82 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2525.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.47 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2411.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15528 ...\n",
      "Processing shard 15529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15530 ...\n",
      "Processing shard 15531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]:00<00:00, 891.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]:00<00:00, 1076.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.21 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.69 examples/s]:00<00:00, 1878.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.76 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]:00<00:00, 1252.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.60 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.53 examples/s]]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.44 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]:00<00:00, 2286.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 23.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.00 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.88 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.49 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.39 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.67 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.40 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 21.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.64 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2221.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15638 ...Processing shard 15637 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.09 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.84 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]:00<00:00, 921.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.39 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.10 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.31 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]:00<00:00, 860.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15673 ...\n",
      "Processing shard 15674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15696 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]:00<00:00, 2408.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]:00<00:00, 1986.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.20 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 27.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]:00<00:00, 1592.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.29 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.94 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]:00<00:00, 1514.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.91 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]:00<00:00, 1877.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]:00<00:00, 1820.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2262.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]:00<00:00, 1792.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.66 examples/s]:00<00:00, 1734.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.57 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.37 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15759 ...\n",
      "Processing shard 15760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15764 ...Processing shard 15765 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.34 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.96 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]:00<00:00, 2475.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.06 examples/s]:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.45 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.89 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]:00<00:00, 2511.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]:00<00:00, 1636.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.47 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.11 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.19 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15857 ...\n",
      "Processing shard 15858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]:00<00:00, 811.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2362.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.08 examples/s]:00<00:00, 1485.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]:00<00:00, 1818.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2082.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.86 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.37 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2396.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]:00<00:00, 1747.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.00 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]:00<00:00, 835.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.49 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.03 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.30 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.82 examples/s]:00<00:00, 1572.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]:00<00:00, 1629.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1520.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15953 ...\n",
      "Processing shard 15954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 15975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 27.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.42 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 15999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16001 ...\n",
      "Processing shard 16002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.96 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.22 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16019 ...Processing shard 16020 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.10 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2311.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.26 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2496.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.26 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.52 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.82 examples/s]:00<00:00, 1562.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]:00<00:00, 2251.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16092 ...\n",
      "Processing shard 16093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.90 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.03 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]:00<00:00, 1435.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.60 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.23 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.90 examples/s]:00<00:00, 2375.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.38 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.59 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.86 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16172 ...\n",
      "Processing shard 16173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2438.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.13 examples/s]:00<00:00, 916.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2152.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 33.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.88 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 45.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:01,  3.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.74 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.92 examples/s]:00<00:00, 1996.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.70 examples/s]:00<00:00, 2332.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]:00<00:00, 1217.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]:00<00:00, 1594.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.50 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.68 examples/s]:00<00:00, 832.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.37 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16241 ...Processing shard 16242 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16244 ...\n",
      "Processing shard 16245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.52 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]:00<00:00, 2252.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.92 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]:00<00:00, 2185.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.66 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.46 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]:00<00:00, 2309.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]:00<00:00, 1846.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.58 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16300 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.59 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.61 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.66 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.92 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.72 examples/s]:00<00:00, 1596.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]:00<00:00, 2005.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.31 examples/s]:00<00:00, 1349.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.76 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.91 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.66 examples/s]:00<00:00, 2414.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 32.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.87 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16399 ...\n",
      "Processing shard 16400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.59 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2553.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.18 examples/s]:00<00:00, 1721.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.24 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]:00<00:00, 2453.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2093.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.28 examples/s]:00<00:00, 781.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16442 ...\n",
      "Processing shard 16443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.01 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16460 ...Processing shard 16459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.92 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16470 ...\n",
      "Processing shard 16471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.50 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2304.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.75 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.28 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16518 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.67 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]:00<00:00, 885.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]:00<00:00, 2401.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]:00<00:00, 2119.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2440.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.74 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]:00<00:00, 1550.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.39 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16560 ...\n",
      "Processing shard 16561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.13 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16576 ...Processing shard 16577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.84 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.67 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.58 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16583 ...Processing shard 16584 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]:00<00:00, 1514.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]:00<00:00, 2455.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.38 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.89 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]:00<00:00, 1655.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]:00<00:00, 794.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.25 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2154.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.13 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.11 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]:00<00:00, 2406.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16655 ...\n",
      "Processing shard 16656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 27.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2273.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2383.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.02 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16672 ...\n",
      "Processing shard 16673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.58 examples/s]:00<00:00, 2427.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.91 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]:00<00:00, 873.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.61 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:08,  1.04s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16714 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 28.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16732 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2351.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  4.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.97 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16757 ...\n",
      "Processing shard 16758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.73 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.17 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.36 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.73 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.94 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.72 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.47 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.10 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.46 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16855 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.39 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.90 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16893 ...\n",
      "Processing shard 16894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:01<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.14 examples/s]:00<00:00, 1017.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.50 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.19 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:04<00:05,  1.08s/ examples]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.05 examples/s]:00<00:00, 1555.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.15 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 16956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2350.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.67 examples/s]:00<00:00, 2129.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]:00<00:00, 2323.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16984 ...\n",
      "Processing shard 16985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.41 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 16999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.46 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17002 ...\n",
      "Processing shard 17003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2456.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17008 ...\n",
      "Processing shard 17009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.75 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.10 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.57 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.31 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2410.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.13 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.85 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.29 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.12 examples/s]:00<00:00, 2381.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.75 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2103.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]:00<00:00, 2433.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.65 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 805.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.11 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.06 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]:00<00:00, 1068.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]:00<00:00, 870.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17147 ...\n",
      "Processing shard 17148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.84 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.29 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.83 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2509.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.61 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.46 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.56 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2341.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17197 ...\n",
      "Processing shard 17198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]:00<00:00, 2027.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.93 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.53 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.33 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.78 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.67 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 40.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.19 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.74 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.11 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.40 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.60 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.39 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.62 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17273 ...\n",
      "Processing shard 17274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.16 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.76 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.35 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.38 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17302 ...Processing shard 17303 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.59 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17304 ...Processing shard 17305 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.23 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.01 examples/s]:00<00:00, 898.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.78 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.34 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17312 ...Processing shard 17313 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.59 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.58 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]:00<00:00, 2440.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2311.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.25 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.81 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.85 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17365 ...\n",
      "Processing shard 17366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.00 examples/s]:00<00:00, 2482.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.46 examples/s]:00<00:00, 2413.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 11.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.59 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]:00<00:00, 2418.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.82 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.72 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2098.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17413 ...Processing shard 17414 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.20 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.87 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]:00<00:00, 1429.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.78 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2135.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2379.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17464 ...\n",
      "Processing shard 17465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.05 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]:00<00:00, 2397.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.74 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17521 ...\n",
      "Processing shard 17522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17525 ...\n",
      "Processing shard 17526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]:00<00:00, 2090.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.68 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.66 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]:00<00:00, 1767.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.57 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2433.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17551 ...\n",
      "Processing shard 17552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2297.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2542.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.54 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.76 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17571 ...Processing shard 17572 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.39 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.31 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.16 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.77 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2358.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.70 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.71 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.83 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.45 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.32 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.91 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]:00<00:00, 1654.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]:00<00:00, 1322.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.73 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.03 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.80 examples/s]:00<00:00, 1609.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.23 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17681 ...Processing shard 17682 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]:00<00:00, 2517.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.05 examples/s]:00<00:00, 2239.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]:00<00:00, 2143.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.44 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]:00<00:00, 2380.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.00 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2371.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.56 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2423.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.64 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.86 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]:00<00:00, 1968.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.92 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 27.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.50 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 10.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2543.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.76 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.02 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]:00<00:00, 2464.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2205.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.82 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.32 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]:00<00:00, 2265.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]:00<00:00, 1984.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17811 ...\n",
      "Processing shard 17812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2371.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 29.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.76 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2439.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17854 ...\n",
      "Processing shard 17855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2085.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]:00<00:00, 886.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]:00<00:00, 2539.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.29 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.47 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17886 ...\n",
      "Processing shard 17887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]:00<00:00, 2469.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  9.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.59 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.50 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.46 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17905 ...\n",
      "Processing shard 17906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2499.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]:00<00:00, 1797.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17917 ...Processing shard 17918 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2484.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.39 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 29.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.69 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:03<00:02,  1.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.72 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.90 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.78 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.31 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.93 examples/s]:00<00:00, 2368.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 17965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.18 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.68 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17968 ...\n",
      "Processing shard 17969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2578.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2104.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]:00<00:00, 2429.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.68 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2514.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.60 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 17999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18002 ...\n",
      "Processing shard 18003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2382.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]:00<00:00, 1932.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.48 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 37.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]:00<00:00, 2138.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.52 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18026 ...\n",
      "Processing shard 18027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]:00<00:00, 1531.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2474.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.40 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.46 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2387.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.30 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.31 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]:00<00:00, 1875.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 10.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]:00<00:00, 1384.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.06 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18080 ...\n",
      "Processing shard 18081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2394.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 51.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2473.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.70 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]:00<00:00, 662.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]:00<00:00, 1577.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.47 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.79 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2445.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.05 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.03 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.83 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18134 ...\n",
      "Processing shard 18135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.05 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 23.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]:00<00:00, 2488.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.48 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.12 examples/s]:00<00:00, 900.07 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2454.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.17 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.93 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]:00<00:00, 687.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.30 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]:00<00:00, 851.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.39 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]:00<00:00, 1146.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.02 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18181 ...\n",
      "Processing shard 18182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.57 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.27 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 40.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18221 ...\n",
      "Processing shard 18222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.67 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.19 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.74 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2580.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.76 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2552.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.77 examples/s]:00<00:00, 861.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.32 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.38 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.22 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2556.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]:00<00:00, 1811.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18320 ...\n",
      "Processing shard 18321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]:00<00:00, 1287.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.90 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2294.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18329 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]:00<00:00, 1549.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2134.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]:00<00:00, 750.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]:00<00:00, 1801.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.24 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.92 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2383.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.32 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.70 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.32 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18353 ...\n",
      "Processing shard 18354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]:00<00:00, 1332.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.47 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.27 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.43 examples/s]:00<00:00, 1404.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.96 examples/s]:00<00:00, 1542.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.40 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2368.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.44 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2455.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]:00<00:00, 2026.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.02 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.06 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.31 examples/s]:00<00:00, 1957.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18425 ...\n",
      "Processing shard 18426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.43 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.46 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.42 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.77 examples/s]:00<00:00, 2380.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2319.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.02 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2098.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18474 ...Processing shard 18475 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.49 examples/s]:00<00:00, 2435.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]:00<00:00, 2515.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.34 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 56.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18486 ...\n",
      "Processing shard 18487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.13 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.21 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18488 ...Processing shard 18489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.47 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18503 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.68 examples/s]:00<00:00, 2321.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.42 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.00 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.32 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18516 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.44 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.49 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 38.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]:00<00:00, 2317.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.29 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18539 ...\n",
      "Processing shard 18540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]:00<00:00, 2361.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.75 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.64 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.37 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.89 examples/s]:00<00:00, 829.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.76 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:02,  2.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.82 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.77 examples/s]:00<00:00, 2339.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.86 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.66 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2402.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.18 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.25 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2118.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]:00<00:00, 2310.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.22 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18651 ...Processing shard 18650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.70 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2405.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.78 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.22 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.99 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]:00<00:00, 1636.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.20 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 44.93 examples/s]:00<00:00, 1835.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.38 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.30 examples/s]:00<00:00, 1052.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.70 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]:00<00:00, 1560.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]:00<00:00, 2513.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2214.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.29 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.70 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.17 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.00 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.97 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.77 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2302.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18802 ...\n",
      "Processing shard 18803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]:00<00:00, 1805.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18811 ...\n",
      "Processing shard 18812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.91 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2407.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.44 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]:00<00:00, 1970.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18835 ...Processing shard 18836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.59 examples/s]:00<00:00, 2034.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2383.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2148.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.07 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18863 ...\n",
      "Processing shard 18864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.66 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 36.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.61 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.40 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2262.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.65 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1941.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2323.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2357.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 34.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 10.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.12 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.55 examples/s]:00<00:00, 1932.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.69 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2209.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.38 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.94 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18990 ...\n",
      "Processing shard 18991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 18995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 18999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]:00<00:00, 2396.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.78 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.03 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2097.85 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 26.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2189.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.93 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.79 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.96 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]:00<00:00, 1122.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:02<00:08,  1.18s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.09 examples/s]:00<00:00, 2321.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]:00<00:00, 2021.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]:00<00:00, 2301.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 45.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2503.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.26 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 19092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.46 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]:00<00:00, 653.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.47 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2456.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 42.88 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]:00<00:00, 2141.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.89 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 42.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]:00<00:00, 1534.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.16 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]:00<00:00, 2552.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.27 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.49 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.29 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19165 ...\n",
      "Processing shard 19166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2378.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.49 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.05 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19194 ...\n",
      "Processing shard 19195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.27 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]:00<00:00, 2543.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.33 examples/s]:00<00:00, 2515.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]:00<00:00, 2477.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.91 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2513.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.71 examples/s]:00<00:00, 1874.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.18 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 187.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 166.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.80 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2495.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.18 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2428.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.45 examples/s]:00<00:00, 1413.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2395.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.40 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]:00<00:00, 1893.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2483.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2426.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.37 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 39.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.31 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2429.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]:00<00:00, 2484.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19326 ...\n",
      "Processing shard 19327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2126.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.71 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.96 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.52 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]:00<00:00, 2457.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.69 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.77 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2108.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.31 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.54 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.83 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 31.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2117.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.37 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2082.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]:00<00:00, 2440.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.81 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.08 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.70 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.50 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]:00<00:00, 2118.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.34 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  4.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.34 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2523.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2129.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2100.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.98 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.98 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.64 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.78 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.84 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]:00<00:00, 2469.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]:00<00:00, 940.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.43 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]:00<00:00, 687.40 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]:00<00:00, 2463.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.49 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2273.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.12 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2524.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.13 examples/s]:00<00:00, 847.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.87 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.22 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.50 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.65 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2309.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.41 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]:00<00:00, 2088.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.79 examples/s]:00<00:00, 1602.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]:00<00:00, 1655.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.69 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.50 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19610 ...\n",
      "Processing shard 19611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.05 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.25 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.21 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.51 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2453.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.47 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.86 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.85 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.05 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.63 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:04,  1.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.29 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.67 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2275.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2371.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.13 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2421.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.15 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19695 ...Processing shard 19696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.30 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.27 examples/s]:00<00:00, 1487.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.45 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.94 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]:00<00:00, 1891.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.52 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2502.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.00 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.32 examples/s]:00<00:00, 2452.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.34 examples/s]:00<00:00, 2123.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.99 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.89 examples/s]:00<00:00, 2113.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2282.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.82 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.08 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.56 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.68 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]:00<00:00, 2433.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.00 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]:00<00:00, 1413.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.72 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.46 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2084.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.66 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.98 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2554.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.72 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.65 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.64 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]:00<00:00, 1991.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19824 ...\n",
      "Processing shard 19825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2494.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]:00<00:00, 2417.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.40 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.93 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.37 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.35 examples/s]:00<00:00, 1672.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 19839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.41 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.03 examples/s]:00<00:00, 1831.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.91 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.73 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.83 examples/s]00<00:00, 2134.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.37 examples/s]00<00:00, 567.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.60 examples/s]00<00:00, 437.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.32 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.02 examples/s]00<00:00, 448.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]:00<00:00, 507.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.83 examples/s]:00<00:00, 681.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.57 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.90 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.01 examples/s]00<00:00, 384.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.15 examples/s]00<00:00, 347.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.68 examples/s]:00<00:00, 401.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19904 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.32 examples/s]00<00:00, 619.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.11 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.00 examples/s]:00<00:00, 1153.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]:00<00:00, 539.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.30 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.11 examples/s]:00<00:00, 738.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.17 examples/s]:00<00:00, 643.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.67 examples/s]:00<00:00, 786.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19923 ...Processing shard 19924 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.94 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  1.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.83 examples/s]00<00:00, 525.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]:00<00:00, 375.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.44 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]:00<00:00, 1686.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.40 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.35 examples/s]00<00:00, 689.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.69 examples/s]00<00:00, 1018.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.45 examples/s]:00<00:00, 630.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]:00<00:00, 588.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.24 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.67 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.05 examples/s]:00<00:00, 440.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.38 examples/s]00<00:00, 1153.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 19993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.60 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 19999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.40 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.01 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.50 examples/s]:00<00:00, 1079.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.36 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.10 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.51 examples/s]\n",
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20011 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.83 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.50 examples/s]:00<00:00, 1319.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20014 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.39 examples/s]00<00:00, 739.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.31 examples/s]00<00:00, 723.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.82 examples/s]:00<00:00, 872.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.29 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.20 examples/s]:00<00:00, 439.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.52 examples/s]:00<00:00, 299.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.29 examples/s]:00<00:00, 452.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 417.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]:00<00:00, 398.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2134.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.90 examples/s]00<00:00, 2251.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.08 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.20 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.60 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2283.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.79 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.22 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.44 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.13 examples/s]00<00:00, 888.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.64 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]:00<00:00, 560.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]:00<00:00, 244.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20085 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.96 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.84 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20098 ...Processing shard 20099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 31.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.43 examples/s]:00<00:00, 509.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.59 examples/s]:00<00:00, 359.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.24 examples/s]:00<00:00, 373.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.51 examples/s]:00<00:00, 179.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.99 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 30.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.82 examples/s]:00<00:00, 531.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.76 examples/s]:00<00:00, 713.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.62 examples/s]:00<00:00, 599.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20140 ...Processing shard 20141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.42 examples/s]:00<00:00, 532.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.23 examples/s]:00<00:00, 434.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.66 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.84 examples/s]:00<00:00, 353.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.59 examples/s]:00<00:00, 509.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.05 examples/s]:00<00:00, 863.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 447.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.99 examples/s]:00<00:00, 377.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.40 examples/s]:00<00:00, 395.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.21 examples/s]:00<00:00, 389.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.74 examples/s]:00<00:00, 595.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.95 examples/s]:00<00:00, 322.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.11 examples/s]:00<00:00, 317.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.73 examples/s]:00<00:00, 423.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.40 examples/s]:00<00:00, 346.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.77 examples/s]:00<00:00, 392.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.20 examples/s]:00<00:00, 431.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]:00<00:00, 513.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.33 examples/s]:00<00:00, 604.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.03 examples/s]:00<00:00, 556.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.73 examples/s]:00<00:00, 711.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 439.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.97 examples/s]:00<00:00, 511.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.60 examples/s]:00<00:00, 523.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.02 examples/s]:00<00:00, 424.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.55 examples/s]:00<00:00, 348.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]:00<00:00, 282.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]:00<00:00, 306.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.95 examples/s]:00<00:00, 388.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.02 examples/s]:00<00:00, 380.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.38 examples/s]:00<00:00, 369.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.21 examples/s]:00<00:00, 361.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.32 examples/s]:00<00:00, 480.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20274 ...Processing shard 20275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 43.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.07 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 35.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 59.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.67 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.00 examples/s]:00<00:00, 769.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.01 examples/s]:00<00:00, 1368.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.06 examples/s]:00<00:00, 845.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 61.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.95 examples/s]:00<00:00, 466.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.49 examples/s]:00<00:00, 361.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.78 examples/s]:00<00:00, 443.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]:00<00:00, 493.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.53 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 17.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20312 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.29 examples/s]:00<00:00, 268.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.71 examples/s]:00<00:00, 381.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 67.74 examples/s]:00<00:00, 474.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.21 examples/s]:00<00:00, 457.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20332 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.87 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]:00<00:00, 453.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.37 examples/s]:00<00:00, 565.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 416.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.42 examples/s]:00<00:00, 298.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.81 examples/s]:00<00:00, 582.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]:00<00:00, 522.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20397 ...Processing shard 20398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.42 examples/s]:00<00:00, 315.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.31 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]:00<00:00, 378.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 406.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]:00<00:00, 501.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.94 examples/s]:00<00:00, 463.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 309.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]:00<00:00, 508.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.19 examples/s]:00<00:00, 655.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20417 ...Processing shard 20418 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.14 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]:00<00:00, 858.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.81 examples/s]:00<00:00, 345.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]:00<00:00, 229.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.00 examples/s]:00<00:00, 336.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.32 examples/s]:00<00:00, 417.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 347.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.09 examples/s]:00<00:00, 210.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20444 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 66.40 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.03 examples/s]:00<00:00, 333.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20457 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.30 examples/s]:00<00:00, 452.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.72 examples/s]:00<00:00, 533.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.87 examples/s]:00<00:00, 417.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.76 examples/s]:00<00:00, 539.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 20.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.27 examples/s]:00<00:00, 260.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.18 examples/s]:00<00:00, 354.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.56 examples/s]:00<00:00, 431.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.69 examples/s]:00<00:00, 386.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.57 examples/s]:00<00:00, 316.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.00 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 443.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.53 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]:00<00:00, 405.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]:00<00:00, 114.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.86 examples/s]:00<00:00, 335.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 47.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]:00<00:00, 322.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.64 examples/s]:00<00:00, 283.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.80 examples/s]:00<00:00, 310.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.58 examples/s]:00<00:00, 338.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 73.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 260.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]:00<00:00, 345.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.67 examples/s]:00<00:00, 324.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.88 examples/s]:00<00:00, 405.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.28 examples/s]:00<00:00, 359.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.66 examples/s]:00<00:00, 447.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.87 examples/s]:00<00:00, 385.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.96 examples/s]:00<00:00, 276.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 79.99 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.43 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.27 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<00:00, 342.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.91 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]:00<00:00, 436.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.28 examples/s]:00<00:00, 500.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.17 examples/s]:00<00:00, 403.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.96 examples/s]:00<00:00, 358.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]:00<00:00, 265.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.55 examples/s]:00<00:00, 332.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.12 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.55 examples/s]:00<00:00, 422.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]:00<00:00, 318.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]:00<00:00, 420.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.14 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]:00<00:00, 292.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]:00<00:00, 415.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.89 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.67 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.52 examples/s]:00<00:00, 266.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.39 examples/s]:00<00:00, 838.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.10 examples/s]:00<00:00, 388.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.48 examples/s]:00<00:00, 419.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.62 examples/s]:00<00:00, 358.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]:00<00:00, 209.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.66 examples/s]:00<00:00, 321.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.29 examples/s]:00<00:00, 396.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 22.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.90 examples/s]:00<00:00, 406.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.98 examples/s]:00<00:00, 448.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]:00<00:00, 539.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]:00<00:00, 443.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.67 examples/s]:00<00:00, 165.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]:00<00:00, 328.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.56 examples/s]:00<00:00, 364.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.93 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.42 examples/s]:00<00:00, 460.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]:00<00:00, 369.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20765 ...Processing shard 20766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.16 examples/s]:00<00:00, 230.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.73 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.48 examples/s]:00<00:00, 223.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.59 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]:00<00:00, 154.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.68 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.02 examples/s]:00<00:00, 268.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.42 examples/s]:00<00:00, 624.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.84 examples/s]:00<00:00, 361.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.27 examples/s]:00<00:00, 427.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.76 examples/s]:00<00:00, 215.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.30 examples/s]:00<00:00, 307.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.82 examples/s]:00<00:00, 326.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 70.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.18 examples/s]:00<00:00, 270.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.51 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.80 examples/s]:00<00:00, 433.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.27 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 376.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.55 examples/s]:00<00:00, 291.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.85 examples/s]:00<00:00, 860.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 41.93 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.35 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]:00<00:00, 181.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.72 examples/s]:00<00:00, 376.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20877 ...Processing shard 20876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.45 examples/s]:00<00:00, 374.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.44 examples/s]:00<00:00, 555.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.91 examples/s]:00<00:00, 257.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.61 examples/s]:00<00:00, 322.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.90 examples/s]:00<00:00, 340.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.87 examples/s]:00<00:00, 872.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.61 examples/s]:00<00:00, 400.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.90 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.52 examples/s]:00<00:00, 275.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.45 examples/s]:00<00:00, 406.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.87 examples/s]:00<00:00, 354.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.42 examples/s]:00<00:00, 320.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.23 examples/s]:00<00:00, 391.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.45 examples/s]:00<00:00, 489.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.34 examples/s]:00<00:00, 728.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 20949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]:00<00:00, 638.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.46 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.16 examples/s]:00<00:00, 512.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]:00<00:00, 404.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]:00<00:00, 330.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.46 examples/s]:00<00:00, 132.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 71.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.37 examples/s]:00<00:00, 1098.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.91 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.31 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.92 examples/s]:00<00:00, 308.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 478.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.78 examples/s]:00<00:00, 531.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.60 examples/s]:00<00:00, 367.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]:00<00:00, 406.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.37 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 20999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.02 examples/s]:00<00:00, 314.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.53 examples/s]:00<00:00, 309.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 51.45 examples/s]:00<00:00, 300.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 54.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.37 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]:00<00:00, 205.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.69 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 443.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.76 examples/s]:00<00:00, 366.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s]:00<00:00, 837.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.14 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 29.43 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.57 examples/s]:00<00:00, 320.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.30 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21045 ...\n",
      "Processing shard 21046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.71 examples/s]:00<00:00, 222.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.65 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 292.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.41 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.54 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.05 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.57 examples/s]:00<00:00, 1678.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.04 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.04 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.53 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.25 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.78 examples/s]:00<00:00, 1554.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.39 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.41 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 206.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.73 examples/s]:00<00:00, 411.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.61 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.26 examples/s]:00<00:00, 463.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]:00<00:00, 295.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]:00<00:00, 367.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]:00<00:00, 477.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.29 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]:00<00:00, 725.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.16 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.85 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]:00<00:00, 853.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.86 examples/s]:00<00:00, 339.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.31 examples/s]:00<00:00, 339.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]:00<00:00, 172.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.08 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.69 examples/s]:00<00:00, 280.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.33 examples/s]:00<00:00, 245.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]:00<00:00, 360.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.63 examples/s]:00<00:00, 320.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]:00<00:00, 871.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.94 examples/s]:00<00:00, 393.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]:00<00:00, 471.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.32 examples/s]:00<00:00, 532.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 47.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.11 examples/s]:00<00:00, 270.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.28 examples/s]:00<00:00, 309.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.59 examples/s]:00<00:00, 365.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]:00<00:00, 339.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.21 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.30 examples/s]:00<00:00, 850.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.38 examples/s]:00<00:00, 589.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.02 examples/s]:00<00:00, 443.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21194 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]:00<00:00, 306.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]:00<00:00, 513.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.28 examples/s]:00<00:00, 673.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.67 examples/s]:00<00:00, 317.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]:00<00:00, 673.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.62 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 539.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.75 examples/s]:00<00:00, 297.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.78 examples/s]:00<00:00, 205.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.49 examples/s]:00<00:00, 484.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<00:00, 554.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.94 examples/s]:00<00:00, 434.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.97 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.13 examples/s]:00<00:00, 1086.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]:00<00:00, 843.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2433.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.27 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.73 examples/s]:00<00:00, 636.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.93 examples/s]:00<00:00, 474.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.22 examples/s]:00<00:00, 333.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]:00<00:00, 455.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.98 examples/s]:00<00:00, 418.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.28 examples/s]:00<00:00, 366.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 451.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.55 examples/s]:00<00:00, 1479.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.18 examples/s]:00<00:00, 250.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.96 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.48 examples/s]:00<00:00, 1881.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.72 examples/s]:00<00:00, 812.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]:00<00:00, 756.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.48 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]:00<00:00, 1185.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.02 examples/s]:00<00:00, 826.17 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.60 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.12 examples/s]:00<00:00, 512.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.53 examples/s]:00<00:00, 378.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.68 examples/s]:00<00:00, 402.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 29.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.96 examples/s]:00<00:00, 293.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.63 examples/s]:00<00:00, 293.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 377.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.21 examples/s]:00<00:00, 428.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.36 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.40 examples/s]:00<00:00, 308.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.15 examples/s]:00<00:00, 455.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.48 examples/s]:00<00:00, 374.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:09,  1.13s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.66 examples/s]:00<00:00, 329.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 353.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.69 examples/s]:00<00:00, 295.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.40 examples/s]:00<00:00, 344.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.22 examples/s]:00<00:00, 296.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]:00<00:00, 365.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.19 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.59 examples/s]:00<00:00, 297.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.74 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.15 examples/s]:00<00:00, 107.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.13 examples/s]:00<00:00, 183.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.51 examples/s]:00<00:00, 398.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 43.13 examples/s]:00<00:00, 528.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.66 examples/s]:00<00:00, 370.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 46.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.11 examples/s]:00<00:00, 267.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.07 examples/s]:00<00:00, 501.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]:00<00:00, 310.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.78 examples/s]00<00:00, 340.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.83 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]:00<00:00, 413.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.41 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]:00<00:00, 305.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]:00<00:00, 397.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21432 ...Processing shard 21433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.08 examples/s]:00<00:00, 543.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.55 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.67 examples/s]:00<00:00, 346.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.04 examples/s]:00<00:00, 467.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21445 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.00 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.27 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.41 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]:00<00:00, 679.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.60 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 65.48 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.96 examples/s]:00<00:00, 387.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.29 examples/s]:00<00:00, 369.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.23 examples/s]:00<00:00, 421.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.38 examples/s]:00<00:00, 177.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]:00<00:00, 293.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.91 examples/s]:00<00:00, 362.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.64 examples/s]:00<00:00, 386.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.05 examples/s]:00<00:00, 375.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.59 examples/s]:00<00:00, 685.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21543 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]:00<00:00, 429.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.73 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.68 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.91 examples/s]:00<00:00, 719.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.69 examples/s]:00<00:00, 324.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.93 examples/s]:00<00:00, 347.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 367.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.85 examples/s]:00<00:00, 529.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.07 examples/s]:00<00:00, 455.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.45 examples/s]:00<00:00, 435.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.95 examples/s]:00<00:00, 376.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.31 examples/s]:00<00:00, 573.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.70 examples/s]:00<00:00, 377.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 977.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 337.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.91 examples/s]:00<00:00, 226.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.77 examples/s]:00<00:00, 407.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.42 examples/s]:00<00:00, 382.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.30 examples/s]:00<00:00, 212.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.97 examples/s]:00<00:00, 423.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.37 examples/s]:00<00:00, 317.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.05 examples/s]:00<00:00, 285.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 318.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.88 examples/s]:00<00:00, 323.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 66.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 296.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]:00<00:00, 756.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.73 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.78 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.62 examples/s]:00<00:00, 256.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 72.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.15 examples/s]:00<00:00, 282.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]:00<00:00, 315.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]:00<00:00, 476.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.69 examples/s]:00<00:00, 357.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.00 examples/s]:00<00:00, 862.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 281.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.18 examples/s]:00<00:00, 262.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.75 examples/s]:00<00:00, 217.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.52 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.78 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.48 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.80 examples/s]:00<00:00, 433.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.60 examples/s]:00<00:00, 380.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.79 examples/s]:00<00:00, 327.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.67 examples/s]:00<00:00, 301.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.23 examples/s]:00<00:00, 238.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.14 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.33 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]:00<00:00, 1381.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.25 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s]:00<00:00, 1187.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]:00<00:00, 544.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.83 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.61 examples/s]00<00:00, 1885.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.96 examples/s]00<00:00, 1611.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.16 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.71 examples/s]00<00:00, 2280.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.98 examples/s]00<00:00, 622.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.49 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]:00<00:00, 434.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.01 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.96 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.76 examples/s]:00<00:00, 1193.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.91 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]:00<00:00, 1442.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.17 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.59 examples/s]00<00:00, 1082.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.45 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.45 examples/s]00<00:00, 711.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]:00<00:00, 315.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 40.97 examples/s]:00<00:00, 198.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.63 examples/s]:00<00:00, 695.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21795 ...Processing shard 21796 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2376.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.18 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.87 examples/s]:00<00:00, 819.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.48 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.79 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.80 examples/s]:00<00:00, 610.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.90 examples/s]:00<00:00, 473.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.54 examples/s]:00<00:00, 584.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.90 examples/s]:00<00:00, 472.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 282.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.05 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 24.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.77 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.68 examples/s]:00<?, ? examples/s]amples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.77 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.72 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.70 examples/s]:00<00:00, 439.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.30 examples/s]:00<00:00, 427.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.99 examples/s]:00<00:00, 276.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]:00<00:00, 464.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]:00<00:00, 363.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.62 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]:00<00:00, 505.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.45 examples/s]:00<00:00, 382.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.19 examples/s]:00<00:00, 352.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.18 examples/s]:00<00:00, 184.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.29 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 58.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.07 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.34 examples/s]00<00:00, 2342.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.26 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.94 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.88 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.23 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.08 examples/s]:00<00:00, 1447.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.52 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2538.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.06 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2541.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.89 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.55 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.82 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.32 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.01 examples/s]:00<00:00, 677.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.35 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 21966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.70 examples/s]:00<00:00, 1357.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.45 examples/s]:00<00:00, 2198.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.54 examples/s]:00<00:00, 827.06 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.85 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.66 examples/s]:00<00:00, 394.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.63 examples/s]:00<00:00, 350.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]:00<00:00, 483.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.90 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.80 examples/s]:00<00:00, 355.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]:00<00:00, 312.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.64 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]:00<00:00, 223.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 365.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 21999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]:00<00:00, 344.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.26 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  6.28 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]:00<00:00, 511.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.66 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.29 examples/s]:00<00:00, 270.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]:00<00:00, 397.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.60 examples/s]:00<00:00, 661.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.41 examples/s]:00<00:00, 330.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22042 ...\n",
      "Processing shard 22043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 398.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.91 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.88 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22053 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]:00<00:00, 492.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 313.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.29 examples/s]:00<00:00, 284.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 383.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.37 examples/s]:00<00:00, 214.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.61 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]:00<00:00, 388.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 295.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.97 examples/s]:00<00:00, 2239.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]:00<00:00, 221.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]:00<00:00, 350.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]:00<00:00, 314.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]:00<00:00, 202.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.86 examples/s]:00<00:00, 814.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.38 examples/s]:00<00:00, 1079.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.22 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22113 ...Processing shard 22112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.80 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.90 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.44 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.78 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.36 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.78 examples/s]:00<00:00, 839.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.51 examples/s]:00<00:00, 275.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 45.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.03 examples/s]:00<00:00, 415.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.59 examples/s]:00<00:00, 583.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 279.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]:00<00:00, 397.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.06 examples/s]:00<00:00, 329.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.81 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.49 examples/s]:00<00:00, 414.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]:00<00:00, 455.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.85 examples/s]:00<00:00, 297.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 453.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.39 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.80 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2478.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2378.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.96 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.68 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.72 examples/s]00<00:00, 1023.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.45 examples/s]00<00:00, 1079.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.14 examples/s]:00<00:00, 586.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]:00<00:00, 946.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.26 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 79.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22247 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]:00<00:00, 1687.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.14 examples/s]:00<00:00, 1178.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 76.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]:00<00:00, 367.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]:00<00:00, 622.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.16 examples/s]:00<00:00, 459.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]:00<00:00, 752.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]:00<00:00, 432.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.71 examples/s]:00<00:00, 540.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.10 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.66 examples/s]:00<00:00, 716.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]:00<00:00, 647.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.35 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.06 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]:00<00:00, 405.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]:00<00:00, 248.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.97 examples/s]:00<00:00, 171.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 24.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 70.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 68.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.51 examples/s]:00<00:00, 635.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.47 examples/s]:00<00:00, 705.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.98 examples/s]:00<00:00, 842.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.55 examples/s]:00<00:00, 419.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 64.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.33 examples/s]:00<00:00, 586.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.63 examples/s]:00<00:00, 443.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22358 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.20 examples/s]:00<00:00, 380.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.88 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.22 examples/s]:00<00:00, 442.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.50 examples/s]:00<00:00, 302.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.59 examples/s]:00<00:00, 278.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.52 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 32.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.89 examples/s]:00<00:00, 411.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.95 examples/s]:00<00:00, 372.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.32 examples/s]:00<00:00, 626.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.78 examples/s]:00<00:00, 193.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.04 examples/s]:00<00:00, 206.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]:00<00:00, 272.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 330.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22404 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.42 examples/s]:00<00:00, 303.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.44 examples/s]:00<00:00, 375.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.15 examples/s]:00<00:00, 355.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.86 examples/s]:00<00:00, 392.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.66 examples/s]:00<00:00, 246.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.17 examples/s]:00<00:00, 391.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.31 examples/s]:00<00:00, 312.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<00:00, 186.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.46 examples/s]:00<00:00, 341.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]:00<00:00, 372.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.12 examples/s]:00<00:00, 1896.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.03 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.98 examples/s]:00<00:00, 352.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.09 examples/s]:00<00:00, 171.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 63.84 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.14 examples/s]:00<00:00, 532.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.82 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 59.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22471 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.89 examples/s]:00<00:00, 209.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.11 examples/s]:00<00:00, 337.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 369.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 399.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.35 examples/s]:00<00:00, 323.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.74 examples/s]:00<00:00, 254.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.72 examples/s]:00<00:00, 394.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22494 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.32 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.30 examples/s]:00<00:00, 287.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]:00<00:00, 239.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 311.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.45 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s]:00<00:00, 2030.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.25 examples/s]:00<00:00, 1501.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.17 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2189.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.20 examples/s]:00<00:00, 1901.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.37 examples/s]:00<00:00, 843.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.29 examples/s]:00<00:00, 1803.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.75 examples/s]:00<00:00, 703.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.57 examples/s]:00<00:00, 929.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.48 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.14 examples/s]:00<00:00, 1075.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.17 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.80 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1430.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.57 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.16 examples/s]:00<00:00, 1444.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.65 examples/s]:00<00:00, 524.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.81 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.09 examples/s]:00<00:00, 691.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]:00<00:00, 426.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]:00<00:00, 437.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 78.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 532.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<00:00, 541.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.22 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.09 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22602 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22603 ...\n",
      "Processing shard 22604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.28 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.80 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1525.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.71 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.26 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22611 ...Processing shard 22612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.86 examples/s]:00<00:00, 643.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.87 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.60 examples/s]:00<00:00, 1380.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.22 examples/s]:00<00:00, 1750.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.59 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.87 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]:00<00:00, 1228.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.12 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.32 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.95 examples/s]:00<00:00, 637.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.52 examples/s]:00<00:00, 649.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.95 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.47 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.16 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.20 examples/s]:00<00:00, 919.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 52.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.90 examples/s]00<00:00, 1298.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.61 examples/s]00<00:00, 808.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.10 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]:00<00:00, 910.07 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.68 examples/s]:00<00:00, 2151.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.94 examples/s]:00<00:00, 1234.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22675 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.86 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.50 examples/s]:00<00:00, 2256.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]:00<00:00, 638.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.67 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 634.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.03 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 54.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.12 examples/s]:00<00:00, 600.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.77 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.22 examples/s]:00<00:00, 416.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.23 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.30 examples/s]:00<00:00, 408.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]:00<00:00, 345.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 22727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.73 examples/s]:00<00:00, 199.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]:00<00:00, 209.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.69 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]:00<00:00, 402.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.33 examples/s]:00<00:00, 216.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.44 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.21 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 47.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.64 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 406.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.89 examples/s]:00<00:00, 273.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.97 examples/s]:00<00:00, 554.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.97 examples/s]:00<00:00, 429.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.05 examples/s]:00<00:00, 221.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.72 examples/s]:00<00:00, 393.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.06 examples/s]:00<00:00, 445.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]:00<00:00, 301.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.54 examples/s]:00<00:00, 468.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]:00<00:00, 162.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.32 examples/s]:00<00:00, 345.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]:00<00:00, 478.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.63 examples/s]:00<00:00, 269.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]:00<00:00, 275.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.04 examples/s]:00<00:00, 1410.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.53 examples/s]:00<00:00, 242.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.40 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 22817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]:00<00:00, 381.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.59 examples/s]:00<00:00, 268.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.41 examples/s]:00<00:00, 365.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.41 examples/s]:00<00:00, 385.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.59 examples/s]:00<00:00, 416.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.58 examples/s]:00<00:00, 569.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]:00<00:00, 302.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]:00<00:00, 443.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22860 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]:00<00:00, 316.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.93 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]:00<00:00, 303.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.29 examples/s]:00<00:00, 423.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.20 examples/s]:00<00:00, 418.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.30 examples/s]:00<00:00, 205.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.99 examples/s]:00<00:00, 309.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]:00<00:00, 275.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.55 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.32 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 339.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]:00<00:00, 434.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.14 examples/s]:00<00:00, 720.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 817.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.23 examples/s]:00<00:00, 1771.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.54 examples/s]:00<00:00, 1480.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]:00<00:00, 993.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.46 examples/s]:00<00:00, 453.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.19 examples/s]:00<00:00, 423.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.94 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.39 examples/s]:00<00:00, 802.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.08 examples/s]:00<00:00, 511.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.38 examples/s]:00<00:00, 478.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 253.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22966 ...Processing shard 22967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.82 examples/s]:00<00:00, 241.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22976 ...Processing shard 22977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.38 examples/s]:00<00:00, 353.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.32 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.26 examples/s]:00<00:00, 269.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 361.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.78 examples/s]:00<00:00, 300.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.45 examples/s]:00<00:00, 354.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.32 examples/s]:00<00:00, 237.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.08 examples/s]:00<00:00, 395.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 22999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.08 examples/s]:00<00:00, 447.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.40 examples/s]:00<00:00, 454.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.62 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23012 ...Processing shard 23011 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]:00<00:00, 355.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.80 examples/s]:00<00:00, 246.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.24 examples/s]:00<00:00, 610.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23015 ...Processing shard 23016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]:00<00:00, 479.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.25 examples/s]:00<00:00, 462.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 358.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 351.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.35 examples/s]:00<00:00, 478.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.46 examples/s]:00<00:00, 374.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23045 ...\n",
      "Processing shard 23046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 400.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.34 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]:00<00:00, 438.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.60 examples/s]:00<00:00, 294.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]:00<00:00, 316.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]:00<00:00, 307.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.37 examples/s]:00<00:00, 391.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]:00<00:00, 599.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.22 examples/s]:00<00:00, 322.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]:00<00:00, 365.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.60 examples/s]:00<00:00, 424.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23067 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.91 examples/s]:00<00:00, 321.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.35 examples/s]:00<00:00, 345.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.74 examples/s]:00<00:00, 280.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.65 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]:00<00:00, 156.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.33 examples/s]:00<00:00, 243.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]:00<00:00, 364.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]:00<00:00, 207.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.81 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.22 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.03 examples/s]:00<00:00, 345.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.95 examples/s]:00<00:00, 401.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.13 examples/s]:00<00:00, 517.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.59 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]:00<00:00, 849.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.26 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23127 ...Processing shard 23128 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.82 examples/s]:00<00:00, 267.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]:00<00:00, 850.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.81 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.24 examples/s]:00<00:00, 461.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 317.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.22 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 161.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.91 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.82 examples/s]:00<00:00, 591.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.53 examples/s]:00<00:00, 422.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.38 examples/s]:00<00:00, 576.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.13 examples/s]:00<00:00, 507.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 29.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.33 examples/s]:00<00:00, 184.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 438.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.86 examples/s]:00<00:00, 514.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.77 examples/s]:00<00:00, 445.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.09 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.03 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.65 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23193 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.81 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.33 examples/s]:00<00:00, 351.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.62 examples/s]:00<00:00, 489.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.78 examples/s]:00<00:00, 671.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 40.90 examples/s]:00<00:00, 455.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.96 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 33.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.48 examples/s]:00<00:00, 274.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.68 examples/s]:00<00:00, 369.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.67 examples/s]:00<00:00, 691.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 753.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]:00<00:00, 653.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.47 examples/s]:00<00:00, 391.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.51 examples/s]:00<00:00, 369.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.87 examples/s]:00<00:00, 609.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s]:00<00:00, 380.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.65 examples/s]:00<00:00, 287.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]:00<00:00, 475.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.88 examples/s]:00<00:00, 333.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23249 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.75 examples/s]:00<00:00, 397.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.47 examples/s]:00<00:00, 378.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]:00<00:00, 834.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]:00<00:00, 399.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.22 examples/s]:00<00:00, 347.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.13 examples/s]:00<00:00, 370.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.13 examples/s]:00<00:00, 400.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.98 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 15.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.90 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.48 examples/s]:00<00:00, 255.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]:00<00:00, 268.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]:00<00:00, 409.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.40 examples/s]:00<00:00, 405.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.61 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.22 examples/s]:00<00:00, 366.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.61 examples/s]:00<00:00, 316.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.88 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.16 examples/s]:00<00:00, 176.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.00 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 30.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.92 examples/s]:00<00:00, 412.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.67 examples/s]:00<00:00, 312.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.24 examples/s]:00<00:00, 361.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.36 examples/s]:00<00:00, 403.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.96 examples/s]:00<00:00, 346.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.83 examples/s]:00<00:00, 446.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.68 examples/s]:00<00:00, 446.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.29 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]:00<00:00, 460.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]:00<00:00, 339.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.72 examples/s]:00<00:00, 477.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]:00<00:00, 442.10 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.58 examples/s]:00<00:00, 460.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]:00<00:00, 308.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.59 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 45.75 examples/s]:00<00:00, 408.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 302.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]:00<00:00, 328.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.80 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.23 examples/s]:00<00:00, 354.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23382 ...\n",
      "Processing shard 23383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<00:00, 285.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.80 examples/s]:00<00:00, 477.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]:00<00:00, 340.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.22 examples/s]:00<00:00, 320.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 68.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.03 examples/s]:00<00:00, 386.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.21 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 55.70 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23418 ...\n",
      "Processing shard 23419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.69 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.34 examples/s]:00<00:00, 401.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.37 examples/s]:00<00:00, 778.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.06 examples/s]:00<00:00, 317.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]:00<00:00, 152.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.50 examples/s]:00<00:00, 302.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]:00<00:00, 290.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 21.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.00 examples/s]:00<00:00, 852.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.94 examples/s]:00<00:00, 476.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]:00<00:00, 421.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.90 examples/s]]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.95 examples/s]:00<00:00, 503.18 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.97 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23482 ...Processing shard 23483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.29 examples/s]:00<00:00, 891.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.27 examples/s]00<00:00, 889.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.80 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 47.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.23 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23497 ...\n",
      "Processing shard 23498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.98 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.53 examples/s]00<00:00, 2343.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.00 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.29 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.30 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.42 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.51 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2454.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.42 examples/s]00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 71.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.63 examples/s]00<00:00, 1491.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.70 examples/s]:00<00:00, 1505.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.50 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.96 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.74 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.12 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]:00<00:00, 856.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23537 ...Processing shard 23538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]:00<00:00, 1074.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.88 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.60 examples/s]:00<00:00, 847.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1290.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.96 examples/s]:00<00:00, 1604.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.68 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.50 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.28 examples/s]:00<00:00, 2391.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.78 examples/s]:00<00:00, 1165.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.60 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.03 examples/s]:00<00:00, 822.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.76 examples/s]:00<00:00, 871.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.24 examples/s]:00<00:00, 1262.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23578 ...Processing shard 23577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]:00<00:00, 500.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.74 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.19 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.82 examples/s]:00<00:00, 687.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2384.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 83.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.22 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.47 examples/s]:00<00:00, 1766.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.24 examples/s]:00<00:00, 721.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.02 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]:00<00:00, 1009.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.80 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.28 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.12 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]:00<00:00, 607.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23617 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.19 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]:00<00:00, 399.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.23 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.60 examples/s]:00<00:00, 450.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 41.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23638 ...\n",
      "Processing shard 23639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.18 examples/s]:00<00:00, 920.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.25 examples/s]:00<00:00, 636.38 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 30.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 371.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]:00<00:00, 381.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23653 ...Processing shard 23654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.84 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 54.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23664 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.97 examples/s]:00<00:00, 409.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.25 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.45 examples/s]:00<00:00, 609.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.19 examples/s]:00<00:00, 334.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.35 examples/s]:00<00:00, 372.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]:00<00:00, 321.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]:00<00:00, 335.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 49.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23694 ...\n",
      "Processing shard 23695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]:00<00:00, 351.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]:00<00:00, 438.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.34 examples/s]:00<00:00, 475.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 67.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 367.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.48 examples/s]:00<00:00, 327.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 15.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 45.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]:00<00:00, 366.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.84 examples/s]:00<00:00, 347.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.83 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.30 examples/s]:00<00:00, 314.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 388.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 437.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.13 examples/s]:00<00:00, 401.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.90 examples/s]:00<00:00, 363.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 265.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.42 examples/s]:00<00:00, 243.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.00 examples/s]:00<00:00, 450.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.25 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]:00<00:00, 280.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.40 examples/s]:00<00:00, 167.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23760 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.78 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 364.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23768 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.74 examples/s]:00<00:00, 509.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.55 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.27 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.73 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.76 examples/s]:00<00:00, 622.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.55 examples/s]:00<00:00, 658.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.33 examples/s]:00<00:00, 569.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23805 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.77 examples/s]:00<00:00, 727.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.68 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.50 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.55 examples/s]:00<00:00, 2581.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.73 examples/s]:00<00:00, 1945.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 69.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2152.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.14 examples/s]:00<00:00, 811.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.67 examples/s]:00<00:00, 1469.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]:00<00:00, 814.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.65 examples/s]:00<00:00, 675.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.19 examples/s]:00<00:00, 432.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]:00<00:00, 524.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.25 examples/s]:00<00:00, 277.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.02 examples/s]:00<00:00, 367.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.84 examples/s]:00<00:00, 866.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.63 examples/s]:00<00:00, 574.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 47.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.46 examples/s]:00<00:00, 373.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.62 examples/s]:00<00:00, 511.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 393.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.24 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]:00<00:00, 394.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.23 examples/s]:00<00:00, 458.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.48 examples/s]:00<00:00, 505.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.25 examples/s]:00<00:00, 500.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]:00<00:00, 333.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.45 examples/s]:00<00:00, 409.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.66 examples/s]:00<00:00, 323.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 481.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2106.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2301.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.19 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23919 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.13 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.74 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.17 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]:00<00:00, 2413.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.58 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.97 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1357.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.53 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:05,  1.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]:00<00:00, 1201.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.94 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 23981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.78 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 23999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.86 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24013 ...Processing shard 24014 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.66 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.83 examples/s]:00<00:00, 1835.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]:00<00:00, 963.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.85 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.10 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.29 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.39 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]:00<00:00, 2253.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.61 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]:00<00:00, 2409.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]:00<00:00, 1888.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24075 ...Processing shard 24076 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]:00<00:00, 2205.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.09 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.39 examples/s]:00<00:00, 953.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2436.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.27 examples/s]:00<00:00, 862.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.90 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24112 ...Processing shard 24113 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24114 ...Processing shard 24115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.83 examples/s]:00<00:00, 1338.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.24 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.19 examples/s]:00<00:00, 2135.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24122 ...\n",
      "Processing shard 24123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.24 examples/s]:00<00:00, 2350.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1923.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.48 examples/s]:00<00:00, 1532.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.75 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.31 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.94 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.44 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.70 examples/s]:00<00:00, 2489.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.78 examples/s]:00<00:00, 2106.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.47 examples/s]:00<00:00, 796.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]:00<00:00, 2546.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]:00<00:00, 1580.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.69 examples/s]:00<00:00, 1243.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2458.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.24 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24198 ...Processing shard 24199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.00 examples/s]:00<00:00, 836.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.33 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24204 ...\n",
      "Processing shard 24205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.95 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]:00<00:00, 1186.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.83 examples/s]:00<00:00, 993.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.16 examples/s]:00<00:00, 1398.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.11 examples/s]:00<00:00, 838.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.05 examples/s]:00<00:00, 767.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.68 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.88 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2383.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.28 examples/s]:00<00:00, 1541.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.21 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.81 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.53 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.24 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24286 ...\n",
      "Processing shard 24287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2340.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.29 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 24.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.46 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24318 ...Processing shard 24319 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]:00<00:00, 1681.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2091.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]:00<00:00, 1549.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24341 ...\n",
      "Processing shard 24342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24346 ...Processing shard 24347 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.12 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.31 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]:00<00:00, 1757.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 105.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 97.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2222.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24383 ...\n",
      "Processing shard 24384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:01,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.96 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]:00<00:00, 2282.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.32 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.17 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24408 ...Processing shard 24409 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:04<00:16,  2.31s/ examples]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.33 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2125.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.66 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24426 ...\n",
      "Processing shard 24427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.53 examples/s]:00<00:00, 1729.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.11 examples/s]:00<00:00, 1517.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.17 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.48 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]:00<00:00, 2140.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.94 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2427.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.10 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]:00<00:00, 1483.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]:00<00:00, 2049.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.98 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.14 examples/s]00<00:00, 1416.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.00 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 198.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 221.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 215.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24469 ...Processing shard 24470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.26 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]:00<00:00, 1783.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 182.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  3.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]:00<00:00, 1766.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 226.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.22 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.47 examples/s]00<00:00, 2093.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.72 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 204.71 examples/s]00<00:00, 2471.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.62 examples/s]:00<00:00, 2410.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.88 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.92 examples/s]:00<00:00, 725.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]:00<00:00, 1401.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]:00<00:00, 867.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2488.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]:00<00:00, 1219.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.57 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2360.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.16 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24534 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2178.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<00:00, 1493.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.66 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24544 ...Processing shard 24543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2463.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]:00<00:00, 1925.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]:00<00:00, 2113.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.74 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.19 examples/s]:00<00:00, 2426.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.73 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.75 examples/s]:00<00:00, 912.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.43 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.50 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24597 ...Processing shard 24598 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.56 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.29 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.37 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]:00<00:00, 1331.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.69 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.71 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.96 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.66 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.68 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.55 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.74 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]:00<00:00, 723.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.52 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.10 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.50 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1792.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.78 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.48 examples/s]:00<00:00, 1560.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.75 examples/s]:00<00:00, 2220.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2104.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  1.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.58 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.67 examples/s]:00<00:00, 893.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.33 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.99 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.93 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24763 ...\n",
      "Processing shard 24764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.73 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.48 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2544.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  3.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.18 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24784 ...\n",
      "Processing shard 24785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.29 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.20 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 26.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2379.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24800 ...\n",
      "Processing shard 24801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:04,  1.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.92 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.92 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.69 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 11.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2266.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2423.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.48 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.34 examples/s]:00<00:00, 1224.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 29.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24863 ...Processing shard 24864 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]:00<00:00, 788.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.96 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.98 examples/s]:00<00:00, 1473.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.10 examples/s]:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.31 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]:00<00:00, 815.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.16 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.70 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.02 examples/s]:00<00:00, 1031.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24909 ...Processing shard 24910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]:00<00:00, 931.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.02 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.34 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24938 ...Processing shard 24937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.98 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.85 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 24955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]:00<00:00, 2079.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.41 examples/s]:00<00:00, 1841.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.54 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.30 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 39.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.71 examples/s]:00<00:00, 1810.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]:00<00:00, 1483.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]:00<00:00, 1130.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.17 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]:00<00:00, 1071.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]:00<00:00, 1858.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 24999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.98 examples/s]:00<00:00, 843.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]:00<00:00, 1928.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.47 examples/s]00<00:00, 2286.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.26 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.60 examples/s]00<00:00, 1851.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]:00<00:00, 2091.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.28 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.46 examples/s]:00<00:00, 1344.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.10 examples/s]:00<00:00, 889.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.92 examples/s]:00<00:00, 654.37 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.74 examples/s]00<00:00, 1459.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]:00<00:00, 456.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.61 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.58 examples/s]:00<00:00, 364.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]:00<00:00, 432.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]:00<00:00, 296.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.54 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.82 examples/s]:00<00:00, 745.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]:00<00:00, 854.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.79 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.97 examples/s]:00<00:00, 399.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.26 examples/s]:00<00:00, 526.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.31 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.05 examples/s]:00<00:00, 517.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25100 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.09 examples/s]:00<00:00, 514.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]:00<00:00, 335.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]:00<00:00, 270.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25110 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.99 examples/s]:00<00:00, 812.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.61 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.03 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]:00<00:00, 830.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 27.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.12 examples/s]:00<00:00, 663.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.29 examples/s]:00<00:00, 1593.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.72 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.74 examples/s]:00<00:00, 2210.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2084.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.23 examples/s]:00<00:00, 2315.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 23.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.78 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.50 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.13 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.21 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25177 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.47 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]:00<00:00, 1051.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.39 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 25.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2367.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25210 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.75 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.45 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.26 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:07,  1.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2402.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.01 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2097.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.96 examples/s]:00<00:00, 2516.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.57 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.25 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2301.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.15 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25288 ...\n",
      "Processing shard 25289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25295 ...\n",
      "Processing shard 25296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]:00<00:00, 2357.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.91 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 30.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25330 ...Processing shard 25331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.52 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]:00<00:00, 2150.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2084.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.59 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.61 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25367 ...\n",
      "Processing shard 25368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2118.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.89 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]:00<00:00, 231.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25391 ...\n",
      "Processing shard 25392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25400 ...\n",
      "Processing shard 25401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.41 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.58 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]:00<00:00, 1184.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.52 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.77 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]:00<00:00, 1155.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.52 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]:00<00:00, 814.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.24 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]:00<00:00, 1086.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.55 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.33 examples/s]:00<00:00, 852.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]:00<00:00, 1449.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.10 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.27 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.53 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.27 examples/s]:00<00:00, 994.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1440.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.81 examples/s]:00<00:00, 577.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]:00<00:00, 960.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]:00<00:00, 684.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.35 examples/s]:00<00:00, 627.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.46 examples/s]:00<00:00, 452.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.42 examples/s]:00<00:00, 891.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25500 ...Processing shard 25501 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.57 examples/s]:00<00:00, 402.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 563.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 58.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]:00<00:00, 1208.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.01 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.30 examples/s]:00<00:00, 1110.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.59 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]:00<00:00, 1069.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 661.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.19 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]:00<00:00, 1407.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.41 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.86 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.10 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.20 examples/s]:00<00:00, 909.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.55 examples/s]:00<00:00, 948.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.21 examples/s]:00<00:00, 588.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.48 examples/s]:00<00:00, 804.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.91 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.19 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25603 ...\n",
      "Processing shard 25604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.05 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]:00<00:00, 594.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.55 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]:00<00:00, 942.78 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.74 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]:00<00:00, 576.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.00 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25633 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.92 examples/s]:00<00:00, 477.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.08 examples/s]:00<00:00, 460.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25645 ...Processing shard 25644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.29 examples/s]:00<00:00, 428.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.20 examples/s]:00<00:00, 517.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.34 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2173.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.37 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.04 examples/s]:00<00:00, 2476.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.90 examples/s]:00<00:00, 1109.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.16 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.39 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 43.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]:00<00:00, 848.06 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:02<00:02,  1.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.28 examples/s]:00<00:00, 821.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25693 ...\n",
      "Processing shard 25694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.45 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.18 examples/s]:00<00:00, 600.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 67.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.85 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2503.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.15 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25726 ...Processing shard 25727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2560.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.98 examples/s]:00<00:00, 1434.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25741 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]:00<00:00, 899.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1685.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]:00<00:00, 787.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.02 examples/s]:00<00:00, 808.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.10 examples/s]]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.26 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.81 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.12 examples/s]:00<00:00, 897.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 738.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.47 examples/s]:00<00:00, 571.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.92 examples/s]]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.56 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.58 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.24 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.42 examples/s]:00<00:00, 984.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.83 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.24 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.42 examples/s]:00<00:00, 995.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.39 examples/s]:00<00:00, 614.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.95 examples/s]:00<00:00, 380.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.34 examples/s]:00<00:00, 573.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]:00<00:00, 261.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]:00<00:00, 864.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.47 examples/s]:00<00:00, 469.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.16 examples/s]:00<00:00, 490.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.00 examples/s]:00<00:00, 457.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1143.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]:00<00:00, 1746.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.40 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.34 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.76 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 51.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.97 examples/s]:00<00:00, 475.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.59 examples/s]:00<00:00, 773.94 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.73 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 56.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25916 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 40.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.46 examples/s]:00<00:00, 548.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.44 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.22 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.77 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.78 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.03 examples/s]:00<00:00, 1498.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:09<00:00,  1.06s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.98 examples/s]:00<00:00, 918.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]:00<00:00, 1199.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.62 examples/s]:00<00:00, 342.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.04 examples/s]:00<00:00, 351.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.41 examples/s]:00<00:00, 626.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.20 examples/s]:00<00:00, 1074.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.90 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.94 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]:00<00:00, 1101.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.58 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.71 examples/s]:00<00:00, 1120.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.92 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.23 examples/s]:00<00:00, 1031.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]:00<00:00, 979.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.12 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.96 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.92 examples/s]:00<00:00, 647.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.66 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]:00<00:00, 634.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25992 ...Processing shard 25993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 25995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 25999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26004 ...Processing shard 26005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.70 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.81 examples/s]:00<00:00, 357.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]:00<00:00, 705.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.94 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1740.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.47 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26021 ...Processing shard 26022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.91 examples/s]:00<00:00, 540.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.90 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.21 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.98 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.76 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2472.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.53 examples/s]:00<00:00, 1700.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]:00<00:00, 2002.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.07 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26049 ...Processing shard 26050 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.92 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]:00<00:00, 1159.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2296.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.99 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.06 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.32 examples/s]:00<00:00, 1162.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.90 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]:00<00:00, 1994.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.68 examples/s]:00<00:00, 1262.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.01 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.61 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26082 ...Processing shard 26081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.47 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.30 examples/s]:00<00:00, 1737.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.24 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.79 examples/s]:00<00:00, 1800.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.62 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.86 examples/s]:00<00:00, 1835.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1337.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2348.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1195.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]:00<00:00, 1236.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.15 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.72 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.71 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.57 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26127 ...\n",
      "Processing shard 26128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26146 ...\n",
      "Processing shard 26147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26150 ...\n",
      "Processing shard 26151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1725.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.57 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]:00<00:00, 2416.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2482.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2245.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]:00<00:00, 805.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.70 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.63 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26214 ...Processing shard 26215 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.65 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2353.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 28.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]:00<00:00, 1373.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 46.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2091.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.52 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2124.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.01 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.06 examples/s]:00<00:00, 2451.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.53 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26265 ...Processing shard 26266 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.59 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 81.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.80 examples/s]:00<00:00, 2296.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.07 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:04,  1.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.95 examples/s]:00<00:00, 1453.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.32 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.46 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.88 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.36 examples/s]:00<00:00, 1999.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.94 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:02<00:04,  1.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.03 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]:00<00:00, 970.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26331 ...Processing shard 26332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 26333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.32 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.40 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26351 ...Processing shard 26350 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.32 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.97 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.87 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.66 examples/s]:00<00:00, 797.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.83 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.12 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.60 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.55 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26385 ...\n",
      "Processing shard 26386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.06 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.61 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26415 ...\n",
      "Processing shard 26416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]:00<00:00, 2263.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26420 ...\n",
      "Processing shard 26421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.88 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.07 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.81 examples/s]:00<00:00, 722.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26436 ...\n",
      "Processing shard 26437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.55 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.85 examples/s]:00<00:00, 2446.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.55 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2357.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.63 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]:00<00:00, 1353.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.90 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.86 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.39 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.40 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2216.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 20.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]:00<00:00, 2452.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2458.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2284.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.09 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2161.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 28.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2216.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26545 ...\n",
      "Processing shard 26546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.59 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2226.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.95 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.71 examples/s]:00<00:00, 1876.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1753.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.57 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.53 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.85 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]:00<00:00, 2223.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.08 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.49 examples/s]:00<00:00, 1152.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.22 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1936.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2102.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2517.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.59 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.17 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:03,  2.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.55 examples/s]:00<00:00, 2336.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]:00<00:00, 2155.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]:00<00:00, 1193.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.93 examples/s]]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.97 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.14 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.87 examples/s]:00<00:00, 2428.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.19 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1563.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 158.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.06 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]:00<00:00, 2180.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.55 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.46 examples/s]:00<00:00, 1715.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 167.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.37 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.46 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.84 examples/s]00<00:00, 1126.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.01 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.28 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.48 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.07 examples/s]00<00:00, 962.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.44 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.86 examples/s]00<00:00, 1141.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.08 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.96 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.08 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.08 examples/s]00<00:00, 629.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]:00<00:00, 853.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.87 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.55 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.90 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 34.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 22.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.40 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1418.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 17.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.00 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.09 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 36.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.99 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2150.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.03 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.97 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]:00<00:00, 2365.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.41 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]:00<00:00, 2335.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26755 ...\n",
      "Processing shard 26756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.71 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.78 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]:00<?, ? examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.46 examples/s]:00<00:00, 2005.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2517.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2275.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.74 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.76 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.63 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.20 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]:00<00:00, 1105.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.40 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.46 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26800 ...Processing shard 26801 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.84 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2230.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2344.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.42 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.01 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.33 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26844 ...\n",
      "Processing shard 26845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2270.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2237.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1502.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26858 ...\n",
      "Processing shard 26859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.19 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.74 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 26871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.56 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26881 ...\n",
      "Processing shard 26882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.08 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.10 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.29 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2208.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.94 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.93 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.92 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.51 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.23 examples/s]:00<00:00, 982.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.09 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]:00<00:00, 2434.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.40 examples/s]:00<00:00, 963.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.45 examples/s]:00<00:00, 626.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1178.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26957 ...\n",
      "Processing shard 26958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.76 examples/s]:00<00:00, 1585.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.39 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.58 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.84 examples/s]:00<00:00, 2218.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.33 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.32 examples/s]:00<00:00, 1541.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]:00<00:00, 1451.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.02 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26984 ...Processing shard 26985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.58 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 26999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1766.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.84 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.77 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 32.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2368.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.41 examples/s]:00<00:00, 1821.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.36 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.03 examples/s]:00<00:00, 1491.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.94 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.82 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]:00<00:00, 741.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27055 ...\n",
      "Processing shard 27056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1826.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.14 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.75 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.56 examples/s]:00<00:00, 710.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]:00<00:00, 1030.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27082 ...Processing shard 27083 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.72 examples/s]:00<00:00, 2383.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1408.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1642.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.60 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1795.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.63 examples/s]:00<00:00, 1788.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2333.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<00:00, 720.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2571.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.78 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.97 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.60 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2174.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27129 ...\n",
      "Processing shard 27130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.15 examples/s]:00<00:00, 1465.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.44 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.92 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.21 examples/s]:00<00:00, 883.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.62 examples/s]:00<00:00, 1722.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 990.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.49 examples/s]:00<00:00, 1906.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]:00<00:00, 1696.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.44 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.80 examples/s]:00<00:00, 1012.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 721.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.75 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.77 examples/s]:00<00:00, 1357.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.38 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.41 examples/s]:00<00:00, 2311.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.92 examples/s]:00<00:00, 756.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.10 examples/s]:00<00:00, 2209.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.99 examples/s]:00<00:00, 1502.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.12 examples/s]:00<00:00, 872.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.06 examples/s]]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.57 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.49 examples/s]:00<00:00, 663.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.08 examples/s]:00<00:00, 1354.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.95 examples/s]:00<00:00, 656.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.15 examples/s]:00<00:00, 568.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1054.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.99 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]:00<00:00, 2457.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.58 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.74 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.98 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1536.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.17 examples/s]:00<00:00, 1757.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]:00<00:00, 1700.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.67 examples/s]:00<00:00, 2102.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 36.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2461.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.75 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2481.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.08 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.90 examples/s]:00<00:00, 1329.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.68 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.65 examples/s]:00<00:00, 2140.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.36 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27248 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27256 ...\n",
      "Processing shard 27257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.75 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27259 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1008.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.09 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.99 examples/s]:00<00:00, 2501.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 180.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.42 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 176.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.27 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.78 examples/s]00<00:00, 844.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.26 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 24.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 191.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 189.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2231.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 184.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 205.72 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 201.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 206.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]:00<00:00, 1354.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.67 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 179.62 examples/s]00<00:00, 1048.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 161.77 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 159.85 examples/s]00<00:00, 1021.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.98 examples/s]:00<00:00, 701.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.61 examples/s]:00<00:00, 591.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.91 examples/s]00<00:00, 1098.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 172.47 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.11 examples/s]00<00:00, 739.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 138.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.17 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.18 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 149.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 142.66 examples/s]00<00:00, 740.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.34 examples/s]00<00:00, 375.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.58 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.87 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.51 examples/s]:00<00:00, 371.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.35 examples/s]:00<00:00, 573.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.52 examples/s]:00<00:00, 395.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.17 examples/s]00<00:00, 481.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]:00<00:00, 600.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.36 examples/s]:00<00:00, 249.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.75 examples/s]:00<00:00, 401.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.44 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]:00<00:00, 623.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]:00<00:00, 253.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.38 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.11 examples/s]:00<00:00, 355.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.49 examples/s]:00<00:00, 222.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.52 examples/s]:00<00:00, 435.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.13 examples/s]:00<00:00, 415.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]:00<00:00, 363.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 453.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]:00<00:00, 333.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.39 examples/s]:00<00:00, 314.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.44 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.31 examples/s]:00<00:00, 466.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.16 examples/s]:00<00:00, 375.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27417 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.15 examples/s]:00<00:00, 401.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.95 examples/s]:00<00:00, 455.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]:00<00:00, 283.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.96 examples/s]:00<00:00, 403.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.74 examples/s]:00<00:00, 508.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.00 examples/s]:00<00:00, 367.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.53 examples/s]:00<00:00, 335.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.53 examples/s]:00<00:00, 323.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.17 examples/s]:00<00:00, 478.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]:00<00:00, 332.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.61 examples/s]:00<00:00, 165.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.40 examples/s]:00<00:00, 374.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.29 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.63 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27477 ...Processing shard 27478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.16 examples/s]:00<00:00, 412.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 894.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.33 examples/s]:00<00:00, 536.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.00 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.65 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 24.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2106.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2108.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2508.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.53 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27499 ...Processing shard 27500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 840.00 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.53 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2108.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2119.41 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.78 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.88 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27525 ...Processing shard 27524 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]:00<00:00, 1849.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.58 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.68 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27535 ...Processing shard 27534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1741.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2387.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2570.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.92 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 21.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]:00<00:00, 2364.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]:00<00:00, 2306.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.64 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 55.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.83 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]:00<00:00, 2177.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]:00<00:00, 846.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]:00<00:00, 759.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.30 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.82 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27580 ...\n",
      "Processing shard 27581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]:00<00:00, 2457.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.17 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27588 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2485.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.45 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.73 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27592 ...Processing shard 27593 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1840.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.56 examples/s]:00<00:00, 849.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.42 examples/s]:00<00:00, 1169.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.61 examples/s]:00<00:00, 861.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2565.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 31.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.39 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.59 examples/s]:00<00:00, 1533.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.35 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2368.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2073.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.24 examples/s]:00<00:00, 1896.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.04 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.05 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27645 ...\n",
      "Processing shard 27646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.25 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1774.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 900.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.18 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.69 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 15.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 22.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.35 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27691 ...\n",
      "Processing shard 27692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.71 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.89 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27703 ...\n",
      "Processing shard 27704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.65 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.46 examples/s]:00<00:00, 1086.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.35 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]:00<00:00, 2258.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2082.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.86 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27748 ...Processing shard 27749 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.85 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.46 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 45.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2126.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.78 examples/s]:00<00:00, 2479.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.33 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]:00<00:00, 1784.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1599.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27769 ...\n",
      "Processing shard 27770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2555.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.30 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.27 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2431.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27789 ...\n",
      "Processing shard 27790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2291.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2513.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2091.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.38 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.37 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]:00<00:00, 852.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:02,  2.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.96 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.08 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]:00<00:00, 2344.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.15 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]:00<00:00, 855.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.53 examples/s]:00<00:00, 1996.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 39.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.77 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 42.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.53 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.67 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27872 ...\n",
      "Processing shard 27873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27877 ...\n",
      "Processing shard 27878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.74 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.85 examples/s]:00<?, ? examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.38 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.26 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.95 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2385.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.69 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.84 examples/s]:00<?, ? examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]:00<00:00, 1914.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2495.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1050.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.85 examples/s]:00<00:00, 2466.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27957 ...Processing shard 27958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2502.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.54 examples/s]:00<00:00, 1268.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.33 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]:00<00:00, 1717.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1770.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 27970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 23.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2244.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.56 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.15 examples/s]:00<00:00, 1891.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2471.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27985 ...Processing shard 27986 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]:00<00:00, 2391.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.60 examples/s]:00<00:00, 540.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2510.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 27999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2120.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.26 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.57 examples/s]:00<00:00, 2108.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.98 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.93 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.22 examples/s]:00<00:00, 889.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]:00<00:00, 499.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.52 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]:00<00:00, 1382.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.18 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28040 ...Processing shard 28041 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2346.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28048 ...\n",
      "Processing shard 28049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]:00<00:00, 2279.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.22 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]:00<00:00, 1859.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]:00<00:00, 1901.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.27 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1696.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2182.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.31 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 41.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2138.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.34 examples/s]:00<00:00, 2476.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.80 examples/s]:00<00:00, 2484.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2132.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.59 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.15 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28101 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.44 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2484.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.19 examples/s]:00<00:00, 1114.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.20 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2198.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.11 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.81 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28141 ...Processing shard 28140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2138.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2102.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.15 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2453.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28158 ...\n",
      "Processing shard 28159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2086.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1409.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.58 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.53 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.77 examples/s]:00<00:00, 889.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.41 examples/s]:00<?, ? examples/s]amples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2480.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]:00<00:00, 1028.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.17 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.11 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.22 examples/s]:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.81 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.50 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1375.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.88 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.66 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 37.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.25 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 25.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.25 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.22 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 43.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.38 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:04<00:04,  1.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2426.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1638.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.09 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.88 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.53 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28252 ...\n",
      "Processing shard 28253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.20 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 18.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2467.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.15 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.42 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2450.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28264 ...Processing shard 28265 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]:00<00:00, 990.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28270 ...Processing shard 28271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2586.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.31 examples/s]:00<00:00, 2457.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.61 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 12.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]:00<00:00, 1827.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.56 examples/s]:00<00:00, 2463.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2160.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.53 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]:00<00:00, 2325.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.72 examples/s]:00<00:00, 2157.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2451.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2471.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.85 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2109.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1756.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]:00<00:00, 2057.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:13,  1.72s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1783.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.92 examples/s]:00<00:00, 2281.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1528.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.37 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.36 examples/s]:00<00:00, 1951.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.67 examples/s]:00<00:00, 1920.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1073.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.02 examples/s]:00<00:00, 2403.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.37 examples/s]:00<00:00, 2438.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.53 examples/s]:00<00:00, 2348.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.66 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1775.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  6.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.93 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.07 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.48 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.41 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.99 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.19 examples/s]00<00:00, 362.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.66 examples/s]:00<00:00, 1168.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28433 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.15 examples/s]:00<00:00, 1019.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 546.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.19 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.77 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]:00<00:00, 1207.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.00 examples/s]00<00:00, 1106.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 63.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1116.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.34 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.48 examples/s]00<00:00, 1185.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.06 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.64 examples/s]:00<00:00, 1238.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.84 examples/s]00<00:00, 1023.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.06 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.15 examples/s]:00<00:00, 886.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.80 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.70 examples/s]:00<00:00, 641.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]:00<00:00, 905.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.13 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<00:00, 554.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.85 examples/s]:00<00:00, 485.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 537.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.13 examples/s]:00<00:00, 518.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.53 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.88 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.51 examples/s]:00<00:00, 543.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.32 examples/s]:00<00:00, 461.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 78.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.81 examples/s]:00<00:00, 764.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.11 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.31 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.60 examples/s]:00<00:00, 462.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.04 examples/s]:00<00:00, 326.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.07 examples/s]:00<00:00, 518.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.51 examples/s]:00<00:00, 393.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.38 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.49 examples/s]:00<00:00, 192.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.68 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]:00<00:00, 861.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.33 examples/s]:00<00:00, 332.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.46 examples/s]:00<00:00, 409.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.16 examples/s]:00<00:00, 436.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.96 examples/s]:00<00:00, 328.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]:00<00:00, 601.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.75 examples/s]:00<00:00, 747.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 675.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.49 examples/s]:00<00:00, 733.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.78 examples/s]:00<00:00, 931.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.22 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.05 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.12 examples/s]:00<00:00, 901.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.48 examples/s]:00<00:00, 335.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.89 examples/s]:00<00:00, 449.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.58 examples/s]:00<00:00, 469.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 205.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.49 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1453.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2279.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.55 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.33 examples/s]00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 155.84 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 165.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2095.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 173.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 157.72 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 160.97 examples/s]00<00:00, 2384.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.13 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.87 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 173.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 174.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 170.28 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 169.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.85 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.64 examples/s]00<00:00, 739.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 143.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.69 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.93 examples/s]00<00:00, 1468.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28620 ...Processing shard 28621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 147.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.64 examples/s]00<00:00, 2501.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.65 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.26 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.78 examples/s]:00<00:00, 1149.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.50 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.37 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 135.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]:00<00:00, 1023.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.40 examples/s]00<00:00, 1017.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.09 examples/s]00<00:00, 650.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.57 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.50 examples/s]00<00:00, 1401.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.95 examples/s]00<00:00, 1286.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.22 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.57 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.64 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.44 examples/s]00<00:00, 589.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.67 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 568.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 499.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.89 examples/s]:00<00:00, 520.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.45 examples/s]00<00:00, 1140.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]:00<00:00, 713.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28672 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.98 examples/s]:00<00:00, 485.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.55 examples/s]:00<00:00, 640.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28685 ...Processing shard 28684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.29 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28689 ...Processing shard 28690 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28698 ...\n",
      "Processing shard 28699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2513.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.80 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.88 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]:00<00:00, 960.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.49 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 78.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]:00<00:00, 668.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.46 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.93 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]:00<00:00, 1062.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.09 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.03 examples/s]:00<00:00, 600.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.87 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]:00<00:00, 435.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]:00<00:00, 604.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1048.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.56 examples/s]:00<00:00, 682.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]:00<00:00, 606.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.50 examples/s]:00<00:00, 596.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.91 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.00 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.54 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.59 examples/s]:00<00:00, 563.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1378.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]:00<00:00, 808.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.80 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.91 examples/s]:00<00:00, 893.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.09 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.22 examples/s]:00<00:00, 1369.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.48 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<00:00, 292.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.28 examples/s]:00<00:00, 541.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.96 examples/s]:00<00:00, 545.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.99 examples/s]:00<00:00, 573.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.70 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]:00<00:00, 744.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.60 examples/s]:00<00:00, 577.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.44 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.45 examples/s]:00<00:00, 399.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.95 examples/s]:00<00:00, 962.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.75 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 55.92 examples/s]:00<00:00, 538.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.85 examples/s]:00<00:00, 1315.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.15 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.87 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.13 examples/s]:00<00:00, 583.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28864 ...\n",
      "Processing shard 28865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 68.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.59 examples/s]:00<00:00, 1260.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.11 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.50 examples/s]:00<00:00, 1070.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.57 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.28 examples/s]:00<00:00, 988.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.38 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.38 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.07 examples/s]:00<00:00, 871.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.11 examples/s]:00<00:00, 824.75 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.16 examples/s]:00<00:00, 699.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.39 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]:00<00:00, 730.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]:00<00:00, 378.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.15 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.07 examples/s]:00<00:00, 472.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 68.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]:00<00:00, 388.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.81 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.20 examples/s]:00<00:00, 553.29 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 17.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.20 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.16 examples/s]:00<00:00, 468.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.05 examples/s]:00<00:00, 889.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 891.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.78 examples/s]:00<00:00, 495.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.50 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:03<00:06,  1.07s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]:00<00:00, 724.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.74 examples/s]:00<00:00, 516.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.18 examples/s]:00<00:00, 661.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.63 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]:00<00:00, 730.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.96 examples/s]:00<00:00, 505.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.15 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.65 examples/s]:00<00:00, 445.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]:00<00:00, 653.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.63 examples/s]:00<00:00, 636.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.22 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.31 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.70 examples/s]:00<00:00, 542.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]:00<00:00, 471.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.82 examples/s]:00<00:00, 507.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.28 examples/s]:00<00:00, 596.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.54 examples/s]:00<00:00, 455.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.32 examples/s]:00<00:00, 404.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 58.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.12 examples/s]:00<00:00, 424.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.11 examples/s]:00<00:00, 531.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]:00<00:00, 311.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]:00<00:00, 518.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]:00<00:00, 309.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.21 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.41 examples/s]:00<00:00, 511.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]:00<00:00, 418.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 28997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 465.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 28999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]:00<00:00, 439.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]:00<?, ? examples/s]amples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.19 examples/s]:00<00:00, 426.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.67 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 11.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.41 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.62 examples/s]:00<00:00, 347.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.36 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.20 examples/s]:00<00:00, 348.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]:00<00:00, 432.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.27 examples/s]:00<00:00, 495.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.89 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29046 ...Processing shard 29047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 44.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.32 examples/s]:00<00:00, 856.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.44 examples/s]:00<00:00, 573.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1048.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.00 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29067 ...Processing shard 29068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]:00<00:00, 2455.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.58 examples/s]:00<00:00, 1604.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.34 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.88 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.10 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.39 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.89 examples/s]:00<00:00, 841.37 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.14 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.45 examples/s]:00<00:00, 459.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.52 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.98 examples/s]:00<00:00, 393.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]:00<00:00, 374.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 337.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.99 examples/s]:00<00:00, 609.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.84 examples/s]:00<00:00, 810.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 417.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.77 examples/s]:00<00:00, 630.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.66 examples/s]:00<00:00, 412.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]:00<00:00, 1473.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]:00<00:00, 1250.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.83 examples/s]:00<00:00, 1236.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 29174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.48 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.74 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.43 examples/s]:00<00:00, 364.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 306.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.37 examples/s]:00<00:00, 503.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 690.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.38 examples/s]:00<00:00, 602.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.02 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]:00<00:00, 1060.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.74 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1864.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]:00<00:00, 1483.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.23 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 857.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]:00<00:00, 785.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.63 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.58 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.63 examples/s]:00<00:00, 849.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.77 examples/s]:00<00:00, 646.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.97 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2422.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.12 examples/s]:00<00:00, 1831.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.78 examples/s]:00<00:00, 744.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]:00<00:00, 1247.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.59 examples/s]:00<00:00, 981.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.91 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.83 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.73 examples/s]:00<00:00, 1346.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.01 examples/s]:00<00:00, 854.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.18 examples/s]:00<00:00, 617.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29286 ...Processing shard 29287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.52 examples/s]:00<00:00, 671.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]:00<00:00, 824.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.41 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.96 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1198.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29301 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]:00<00:00, 1633.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.63 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 805.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.04 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.82 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.43 examples/s]:00<00:00, 2022.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<00:00, 1579.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.35 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.34 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.49 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.29 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.76 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]:00<00:00, 1886.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 859.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.31 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 649.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]:00<00:00, 1491.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]:00<00:00, 609.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.51 examples/s]:00<00:00, 692.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.52 examples/s]:00<00:00, 1274.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.66 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 915.05 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 904.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.56 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.91 examples/s]:00<00:00, 1074.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.96 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.34 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 911.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.76 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.20 examples/s]:00<00:00, 838.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.48 examples/s]:00<00:00, 639.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]:00<00:00, 485.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.59 examples/s]:00<00:00, 784.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.36 examples/s]:00<00:00, 473.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.78 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.25 examples/s]:00<00:00, 479.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.38 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.56 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]:00<00:00, 572.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.77 examples/s]:00<00:00, 432.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 568.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]:00<00:00, 566.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.13 examples/s]:00<00:00, 1952.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.76 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.88 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.08 examples/s]:00<00:00, 2443.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.93 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.20 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]:00<00:00, 1297.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.30 examples/s]:00<00:00, 2084.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]:00<00:00, 2511.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.47 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.04 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 40.41 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]:00<00:00, 2405.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.47 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.01 examples/s]:00<00:00, 1944.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.73 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29533 ...Processing shard 29534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.69 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1689.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2567.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2159.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]:00<00:00, 2122.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2532.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29553 ...\n",
      "Processing shard 29554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.13 examples/s]:00<00:00, 1833.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.46 examples/s]:00<00:00, 1437.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]:00<00:00, 1605.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.72 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.28 examples/s]:00<00:00, 1624.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2147.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29575 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]:00<00:00, 682.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.11 examples/s]:00<00:00, 788.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]:00<00:00, 944.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]:00<00:00, 925.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29580 ...Processing shard 29581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.28 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.38 examples/s]:00<00:00, 2568.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.49 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.34 examples/s]:00<00:00, 771.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.17 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.16 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.00 examples/s]:00<00:00, 491.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]:00<00:00, 2384.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.97 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]:00<00:00, 1692.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1483.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]:00<00:00, 2437.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.06 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.79 examples/s]:00<00:00, 1140.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.04 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 38.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2413.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]:00<00:00, 1575.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.53 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 196.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.00 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]:00<00:00, 1152.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.47 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 136.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.86 examples/s]:00<00:00, 1587.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.11 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.19 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]:00<00:00, 1154.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.76 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.69 examples/s]:00<00:00, 818.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]:00<00:00, 683.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]:00<00:00, 711.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]:00<00:00, 855.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]:00<00:00, 479.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]:00<00:00, 668.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.98 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.29 examples/s]:00<00:00, 279.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 298.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.40 examples/s]:00<00:00, 615.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]:00<00:00, 794.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.97 examples/s]:00<00:00, 855.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.27 examples/s]:00<00:00, 506.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.77 examples/s]:00<00:00, 451.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.27 examples/s]:00<00:00, 641.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]:00<00:00, 842.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.09 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.90 examples/s]:00<00:00, 636.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.10 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.12 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.12 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.34 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.27 examples/s]:00<00:00, 981.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 356.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]:00<00:00, 519.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.07 examples/s]:00<00:00, 930.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.03 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<00:00, 510.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.91 examples/s]:00<00:00, 504.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.97 examples/s]:00<00:00, 659.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.31 examples/s]:00<00:00, 633.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.73 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.09 examples/s]:00<00:00, 695.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 33.43 examples/s]:00<00:00, 573.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.44 examples/s]:00<00:00, 452.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]:00<00:00, 437.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]:00<00:00, 346.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.39 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 25.68 examples/s]:00<00:00, 364.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.25 examples/s]:00<00:00, 432.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.56 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.24 examples/s]:00<00:00, 501.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29807 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.82 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.02 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]:00<00:00, 532.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]:00<00:00, 425.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.68 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.12 examples/s]:00<00:00, 225.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.34 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]:00<00:00, 429.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.83 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]:00<00:00, 504.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.59 examples/s]:00<00:00, 433.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.79 examples/s]:00<00:00, 376.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.96 examples/s]:00<00:00, 552.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.12 examples/s]:00<00:00, 354.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.25 examples/s]:00<00:00, 1003.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.48 examples/s]:00<00:00, 543.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]:00<00:00, 855.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.78 examples/s]:00<00:00, 609.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.57 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]:00<00:00, 365.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.04 examples/s]:00<00:00, 553.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]:00<00:00, 674.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.00 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.72 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2337.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]:00<00:00, 1490.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.92 examples/s]:00<00:00, 1168.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.02 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.71 examples/s]:00<00:00, 409.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.30 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]:00<00:00, 331.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]:00<00:00, 239.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.18 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.83 examples/s]:00<00:00, 841.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]:00<00:00, 334.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 488.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 59.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]:00<00:00, 306.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.77 examples/s]:00<00:00, 537.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.31 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 29986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 866.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.22 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.74 examples/s]:00<00:00, 480.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.35 examples/s]:00<00:00, 529.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.78 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.76 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 29999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]:00<00:00, 893.27 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.00 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.05 examples/s]:00<00:00, 576.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.38 examples/s]:00<00:00, 421.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.69 examples/s]:00<00:00, 508.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.50 examples/s]:00<00:00, 740.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.95 examples/s]:00<00:00, 1002.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.49 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]:00<00:00, 586.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.08 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.33 examples/s]:00<00:00, 932.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2360.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30030 ...Processing shard 30031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]:00<00:00, 1300.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.68 examples/s]:00<00:00, 874.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30039 ...Processing shard 30040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1039.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.77 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.13 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.49 examples/s]:00<00:00, 471.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.53 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.88 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.41 examples/s]:00<00:00, 572.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.31 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.82 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.15 examples/s]00<00:00, 854.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30097 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.36 examples/s]:00<00:00, 451.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.17 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.50 examples/s]:00<00:00, 346.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.20 examples/s]:00<00:00, 419.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.78 examples/s]:00<00:00, 431.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]:00<00:00, 533.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.90 examples/s]:00<00:00, 458.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.88 examples/s]:00<00:00, 454.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 435.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.92 examples/s]:00<00:00, 536.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.61 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]:00<00:00, 865.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.61 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.66 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.39 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.83 examples/s]:00<00:00, 1293.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.93 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.48 examples/s]:00<00:00, 1463.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.39 examples/s]:00<00:00, 252.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 336.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.23 examples/s]:00<00:00, 469.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.13 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.80 examples/s]:00<00:00, 513.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]:00<00:00, 464.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.88 examples/s]:00<00:00, 463.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.43 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]:00<00:00, 391.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.51 examples/s]:00<00:00, 282.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]:00<00:00, 302.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.09 examples/s]:00<00:00, 328.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.04 examples/s]:00<00:00, 420.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]:00<00:00, 257.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.59 examples/s]:00<00:00, 269.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.13 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]:00<00:00, 329.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]:00<00:00, 417.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.86 examples/s]:00<00:00, 217.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 234.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.69 examples/s]:00<00:00, 266.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.38 examples/s]:00<00:00, 364.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]:00<00:00, 402.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.79 examples/s]:00<00:00, 289.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.33 examples/s]:00<00:00, 332.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.07 examples/s]:00<00:00, 384.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 482.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.84 examples/s]:00<00:00, 371.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.38 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.22 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.31 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.17 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2249.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.53 examples/s]:00<00:00, 1558.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.99 examples/s]:00<00:00, 969.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.49 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.18 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.74 examples/s]:00<00:00, 485.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 604.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.27 examples/s]:00<00:00, 489.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.50 examples/s]:00<00:00, 304.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.04 examples/s]:00<00:00, 444.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.15 examples/s]:00<00:00, 426.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.61 examples/s]:00<00:00, 378.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]:00<00:00, 388.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.84 examples/s]:00<00:00, 465.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.03 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.23 examples/s]:00<00:00, 607.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]:00<00:00, 301.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30350 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.97 examples/s]:00<00:00, 312.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.45 examples/s]:00<00:00, 323.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.83 examples/s]:00<00:00, 313.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.81 examples/s]:00<00:00, 416.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30366 ...Processing shard 30367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30370 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<00:00, 391.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.75 examples/s]:00<00:00, 322.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.72 examples/s]:00<00:00, 274.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.31 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 70.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.81 examples/s]:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30384 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.90 examples/s]:00<00:00, 299.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:01<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.49 examples/s]:00<00:00, 475.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.63 examples/s]:00<00:00, 394.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.89 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.91 examples/s]:00<00:00, 456.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.20 examples/s]:00<00:00, 238.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.26 examples/s]:00<00:00, 315.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.87 examples/s]:00<00:00, 297.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.66 examples/s]:00<00:00, 801.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30416 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.65 examples/s]:00<00:00, 833.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.30 examples/s]:00<00:00, 176.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30431 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]:00<00:00, 343.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]:00<00:00, 434.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30461 ...Processing shard 30462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<00:00, 370.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.93 examples/s]:00<00:00, 386.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.77 examples/s]:00<00:00, 464.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]:00<00:00, 330.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]:00<00:00, 397.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 66.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]:00<00:00, 309.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.95 examples/s]:00<00:00, 379.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.41 examples/s]:00<00:00, 355.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.41 examples/s]:00<00:00, 325.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.00 examples/s]:00<00:00, 512.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.08 examples/s]:00<00:00, 540.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 260.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.28 examples/s]:00<00:00, 224.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]:00<00:00, 430.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.71 examples/s]:00<00:00, 394.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.76 examples/s]:00<00:00, 223.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]:00<00:00, 473.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]:00<00:00, 164.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]:00<00:00, 522.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]:00<00:00, 200.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.09 examples/s]:00<00:00, 273.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.75 examples/s]:00<00:00, 364.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.29 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.66 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.88 examples/s]:00<00:00, 448.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 339.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 981.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.63 examples/s]:00<00:00, 269.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.82 examples/s]:00<00:00, 230.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.01 examples/s]:00<00:00, 352.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30584 ...Processing shard 30585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.04 examples/s]:00<00:00, 360.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.00 examples/s]:00<00:00, 431.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]:00<00:00, 494.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.81 examples/s]:00<00:00, 349.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.19 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.34 examples/s]:00<00:00, 406.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 368.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.46 examples/s]:00<00:00, 409.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 489.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.59 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.32 examples/s]:00<00:00, 404.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.88 examples/s]:00<00:00, 526.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.81 examples/s]:00<00:00, 508.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.54 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.98 examples/s]:00<00:00, 389.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.55 examples/s]:00<00:00, 377.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s]:00<00:00, 1606.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 75.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]:00<00:00, 304.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 74.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]:00<00:00, 354.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 70.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]:00<00:00, 516.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]:00<00:00, 401.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]:00<00:00, 395.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]:00<00:00, 284.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.80 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.63 examples/s]:00<00:00, 332.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.00 examples/s]:00<00:00, 402.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]:00<00:00, 392.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.30 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.37 examples/s]:00<00:00, 805.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.52 examples/s]:00<00:00, 252.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30718 ...\n",
      "Processing shard 30719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.69 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30726 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.11 examples/s]:00<00:00, 316.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]:00<00:00, 305.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.94 examples/s]:00<00:00, 225.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.06 examples/s]:00<00:00, 349.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.10 examples/s]:00<00:00, 277.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.48 examples/s]:00<00:00, 327.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.41 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]:00<00:00, 218.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.77 examples/s]:00<00:00, 444.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.47 examples/s]:00<00:00, 714.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]:00<00:00, 772.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.66 examples/s]:00<00:00, 519.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30770 ...Processing shard 30769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]:00<00:00, 830.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.76 examples/s] \n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.23 examples/s]:00<00:00, 1120.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.50 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.24 examples/s]:00<00:00, 855.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.13 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.20 examples/s]:00<00:00, 475.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.99 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.21 examples/s]:00<00:00, 465.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]:00<00:00, 478.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.01 examples/s]:00<00:00, 665.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.15 examples/s]:00<00:00, 620.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 45.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.87 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.19 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.75 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2389.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1381.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.99 examples/s]:00<00:00, 2376.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]:00<00:00, 1696.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.71 examples/s]:00<00:00, 1348.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.86 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.54 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.18 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 30.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.03 examples/s]:00<00:00, 767.61 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]:00<00:00, 1245.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.20 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]:00<00:00, 748.12 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.64 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]:00<00:00, 1630.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.21 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.07 examples/s]:00<00:00, 575.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.06 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.95 examples/s]:00<00:00, 656.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.51 examples/s]:00<00:00, 840.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]:00<00:00, 955.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30912 ...Processing shard 30913 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30916 ...Processing shard 30917 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1239.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.98 examples/s]:00<00:00, 2431.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]:00<00:00, 2358.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.47 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1516.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1025.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2171.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30940 ...\n",
      "Processing shard 30941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.31 examples/s]:00<00:00, 2237.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.08 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 660.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30954 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]:00<00:00, 2244.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.66 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 34.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 30965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.78 examples/s]:00<00:00, 1281.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.54 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.73 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.78 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.36 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1541.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.05 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2324.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.26 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]:00<00:00, 2277.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.14 examples/s]:00<00:00, 1810.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.77 examples/s]:00<00:00, 1628.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.26 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.99 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.56 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.74 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 30999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<00:00, 1585.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.13 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.66 examples/s]:00<00:00, 2523.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.83 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.96 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.54 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.24 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]:00<00:00, 1980.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.87 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]:00<00:00, 1541.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.80 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.18 examples/s]:00<00:00, 1698.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.66 examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 513.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]:00<00:00, 799.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.66 examples/s]:00<00:00, 1160.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31096 ...Processing shard 31097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.23 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.20 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]:00<00:00, 2149.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]:00<00:00, 2424.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.77 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.99 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31108 ...Processing shard 31107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.19 examples/s]:00<00:00, 2018.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.29 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.86 examples/s]:00<00:00, 585.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.47 examples/s]:00<00:00, 888.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.07 examples/s]:00<00:00, 279.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 327.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.79 examples/s]:00<00:00, 263.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 499.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]:00<00:00, 1108.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.18 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.30 examples/s]:00<00:00, 739.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.91 examples/s]:00<00:00, 1916.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.64 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.93 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.68 examples/s]:00<00:00, 1071.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.08 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.17 examples/s]:00<00:00, 1290.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.81 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<00:00, 636.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.41 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1832.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.90 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.52 examples/s]:00<00:00, 611.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.61 examples/s]:00<00:00, 931.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.51 examples/s]:00<00:00, 663.80 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]:00<00:00, 421.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.70 examples/s]:00<00:00, 1414.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.09 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.66 examples/s]:00<00:00, 1658.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1588.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2588.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2094.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.74 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.68 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.20 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.56 examples/s]:00<00:00, 2023.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.69 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31217 ...Processing shard 31216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 78.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.06 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.73 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.21 examples/s]:00<00:00, 1289.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.88 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.28 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 31.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.55 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.14 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.97 examples/s]:00<00:00, 911.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.24 examples/s]:00<00:00, 1369.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 966.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2441.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.58 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]:00<00:00, 1389.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.44 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.42 examples/s]:00<00:00, 859.98 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.98 examples/s]:00<00:00, 422.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.80 examples/s]:00<00:00, 468.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]:00<00:00, 1067.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.99 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.60 examples/s]:00<00:00, 222.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.48 examples/s]:00<00:00, 538.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]:00<00:00, 546.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.60 examples/s]:00<00:00, 386.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.55 examples/s]:00<00:00, 457.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.89 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.43 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.69 examples/s]:00<00:00, 2209.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.87 examples/s]:00<00:00, 879.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.64 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]:00<00:00, 528.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.47 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.84 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31337 ...Processing shard 31336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.65 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]:00<00:00, 760.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.30 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.13 examples/s]:00<00:00, 530.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]:00<00:00, 886.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.56 examples/s]:00<00:00, 402.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.15 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.45 examples/s]:00<00:00, 395.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]:00<00:00, 425.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.44 examples/s]:00<00:00, 281.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.10 examples/s]:00<00:00, 428.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.69 examples/s]:00<00:00, 380.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]:00<00:00, 387.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]:00<00:00, 314.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.89 examples/s]:00<00:00, 294.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.65 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.25 examples/s]:00<00:00, 1045.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.58 examples/s]:00<00:00, 370.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.21 examples/s]:00<00:00, 589.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]:00<00:00, 511.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]:00<00:00, 283.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]:00<00:00, 573.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]:00<00:00, 439.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 307.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.77 examples/s]:00<00:00, 199.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]:00<00:00, 384.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.47 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.96 examples/s]:00<00:00, 248.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]:00<00:00, 143.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]:00<00:00, 418.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.77 examples/s]:00<00:00, 437.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.75 examples/s]:00<00:00, 354.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.50 examples/s]:00<00:00, 341.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]:00<00:00, 395.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31465 ...Processing shard 31466 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.03 examples/s]:00<00:00, 331.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]:00<00:00, 425.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.27 examples/s]:00<00:00, 218.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.39 examples/s]:00<00:00, 607.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.15 examples/s]:00<00:00, 304.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.16 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]:00<00:00, 274.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.72 examples/s]:00<00:00, 518.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.40 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]:00<00:00, 553.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]:00<00:00, 286.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31548 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.31 examples/s]:00<00:00, 302.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.28 examples/s]:00<00:00, 421.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 410.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.05 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.60 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]:00<00:00, 383.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]:00<00:00, 469.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.15 examples/s]:00<00:00, 357.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.13 examples/s]:00<00:00, 238.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.91 examples/s]:00<00:00, 295.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.73 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 416.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 477.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.88 examples/s]:00<00:00, 861.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.09 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.19 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.01 examples/s]:00<00:00, 934.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.40 examples/s]:00<00:00, 480.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.29 examples/s]:00<00:00, 396.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]:00<00:00, 894.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31602 ...Processing shard 31601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]:00<00:00, 236.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.99 examples/s]:00<00:00, 422.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31607 ...Processing shard 31608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.32 examples/s]:00<00:00, 249.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.88 examples/s]:00<00:00, 354.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.70 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]:00<00:00, 409.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31633 ...Processing shard 31634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 807.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.04 examples/s]:00<00:00, 418.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.90 examples/s]:00<00:00, 330.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.60 examples/s]:00<00:00, 367.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.74 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.62 examples/s]:00<00:00, 276.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]:00<00:00, 179.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.92 examples/s]:00<00:00, 340.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.78 examples/s]:00<00:00, 333.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 74.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.26 examples/s]:00<00:00, 292.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]:00<00:00, 421.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.89 examples/s]:00<00:00, 437.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31677 ...Processing shard 31676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.99 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.74 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.17 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]:00<00:00, 484.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.93 examples/s]:00<00:00, 531.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.06 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.85 examples/s]:00<00:00, 353.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.62 examples/s]:00<00:00, 291.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 67.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]:00<00:00, 388.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]:00<00:00, 356.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.48 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.13 examples/s]:00<00:00, 199.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31726 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]:00<00:00, 298.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.44 examples/s]:00<00:00, 465.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]:00<00:00, 437.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.82 examples/s]:00<00:00, 268.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.32 examples/s]:00<00:00, 253.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.69 examples/s]:00<00:00, 455.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.50 examples/s]:00<00:00, 385.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.36 examples/s]:00<00:00, 350.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.67 examples/s]:00<00:00, 432.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 222.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.59 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.57 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.49 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.50 examples/s]:00<00:00, 315.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 307.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.57 examples/s]:00<00:00, 236.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.83 examples/s]:00<00:00, 331.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.29 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]:00<00:00, 325.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.59 examples/s]:00<00:00, 286.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.66 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.26 examples/s]:00<00:00, 320.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.36 examples/s]:00<00:00, 178.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.98 examples/s]:00<00:00, 384.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]:00<00:00, 449.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.40 examples/s]:00<00:00, 329.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.62 examples/s]:00<00:00, 517.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.42 examples/s]:00<00:00, 410.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.43 examples/s]:00<00:00, 333.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.60 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.86 examples/s]:00<00:00, 389.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.77 examples/s]:00<00:00, 219.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.60 examples/s]:00<00:00, 426.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.81 examples/s]:00<00:00, 511.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]:00<00:00, 376.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.13 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.31 examples/s]:00<00:00, 842.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.63 examples/s]:00<00:00, 276.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.80 examples/s]:00<00:00, 318.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.73 examples/s]:00<00:00, 525.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.66 examples/s]:00<00:00, 281.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.20 examples/s]:00<00:00, 318.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<00:00, 856.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.00 examples/s]:00<00:00, 433.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.30 examples/s]:00<00:00, 283.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]:00<00:00, 398.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.84 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.52 examples/s]:00<00:00, 218.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.49 examples/s]:00<00:00, 475.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]:00<00:00, 192.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.45 examples/s]:00<00:00, 382.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]:00<00:00, 366.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.02 examples/s]:00<00:00, 267.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.15 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31961 ...Processing shard 31962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.52 examples/s]:00<00:00, 527.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]:00<00:00, 819.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]:00<00:00, 505.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 68.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.58 examples/s]:00<00:00, 462.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]:00<00:00, 452.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.21 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.05 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]:00<00:00, 497.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.89 examples/s]:00<00:00, 275.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.64 examples/s]:00<00:00, 327.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 31997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 31999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32001 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]:00<00:00, 418.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.36 examples/s]:00<00:00, 306.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]:00<00:00, 504.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.13 examples/s]:00<00:00, 380.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.40 examples/s]:00<00:00, 155.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.71 examples/s]:00<00:00, 347.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.93 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.66 examples/s]:00<00:00, 177.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.39 examples/s]:00<00:00, 364.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.53 examples/s]:00<00:00, 346.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.27 examples/s]:00<00:00, 382.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.61 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]:00<00:00, 428.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]:00<00:00, 398.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]:00<00:00, 532.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 67.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.88 examples/s]:00<00:00, 367.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.14 examples/s]:00<00:00, 353.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32085 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32087 ...Processing shard 32088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.42 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.19 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.61 examples/s]:00<00:00, 402.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.16 examples/s]:00<00:00, 385.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 76.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]:00<00:00, 274.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 386.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.19 examples/s]:00<00:00, 238.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.18 examples/s]:00<00:00, 421.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.45 examples/s]:00<00:00, 440.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 349.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]:00<00:00, 411.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.75 examples/s]:00<00:00, 330.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.15 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.56 examples/s]:00<00:00, 470.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.53 examples/s]:00<00:00, 301.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.01 examples/s]:00<00:00, 263.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.51 examples/s]:00<00:00, 284.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.06 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]:00<00:00, 275.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 160.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.72 examples/s]:00<00:00, 286.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]:00<00:00, 216.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]:00<00:00, 2393.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.40 examples/s]:00<00:00, 362.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.95 examples/s]:00<00:00, 338.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.39 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.42 examples/s]:00<00:00, 321.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.36 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 355.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 325.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.52 examples/s]:00<00:00, 466.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]:00<00:00, 346.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.41 examples/s]:00<00:00, 315.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.45 examples/s]:00<00:00, 350.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.11 examples/s]:00<00:00, 242.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32196 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 322.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 204.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]:00<00:00, 323.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.13 examples/s]:00<00:00, 211.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.78 examples/s]:00<00:00, 305.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.17 examples/s]:00<00:00, 368.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.50 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.38 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.77 examples/s]:00<00:00, 294.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]:00<00:00, 332.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.78 examples/s]:00<00:00, 400.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.31 examples/s]:00<00:00, 334.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 76.04 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.72 examples/s]00<00:00, 402.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32255 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.27 examples/s]:00<00:00, 354.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.88 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.16 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]:00<00:00, 458.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]:00<00:00, 349.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.30 examples/s]00<00:00, 231.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.58 examples/s]:00<00:00, 311.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 65.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.36 examples/s]:00<00:00, 458.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.53 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.22 examples/s]:00<00:00, 361.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.89 examples/s]00<00:00, 271.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.02 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.64 examples/s]:00<00:00, 496.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.26 examples/s]:00<00:00, 221.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 137.84 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.49 examples/s]00<00:00, 310.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.97 examples/s]00<00:00, 306.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.40 examples/s]00<00:00, 277.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 190.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32314 ...Processing shard 32315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.83 examples/s]:00<00:00, 275.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.82 examples/s]00<00:00, 337.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.26 examples/s]00<00:00, 172.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.15 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.67 examples/s]:00<00:00, 368.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.27 examples/s]:00<00:00, 281.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.51 examples/s]:00<00:00, 286.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.93 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.34 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.23 examples/s]:00<00:00, 286.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.06 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.07 examples/s]00<00:00, 410.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.46 examples/s]00<00:00, 343.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.71 examples/s]:00<00:00, 344.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]:00<00:00, 337.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 412.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.79 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.44 examples/s]:00<00:00, 321.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.63 examples/s]:00<00:00, 271.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.78 examples/s]:00<00:00, 365.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.98 examples/s]:00<00:00, 338.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.96 examples/s]:00<00:00, 277.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]:00<00:00, 312.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.60 examples/s]:00<00:00, 316.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.84 examples/s]:00<00:00, 202.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.60 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 197.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.64 examples/s]:00<00:00, 245.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 349.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.19 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.10 examples/s]00<00:00, 327.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.07 examples/s]:00<00:00, 249.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.69 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 71.36 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 322.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.69 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 68.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.26 examples/s]00<00:00, 357.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.18 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.21 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 350.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.67 examples/s]:00<00:00, 585.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.71 examples/s]:00<00:00, 340.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 116.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.44 examples/s]:00<00:00, 295.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.16 examples/s]:00<00:00, 306.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.42 examples/s]00<00:00, 252.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.30 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.80 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.28 examples/s]:00<00:00, 182.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.61 examples/s]00<00:00, 557.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.29 examples/s]00<00:00, 513.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.02 examples/s]:00<00:00, 384.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.79 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.15 examples/s]:00<00:00, 306.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.29 examples/s]00<00:00, 546.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.15 examples/s]:00<00:00, 273.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.89 examples/s]:00<00:00, 199.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 71.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]:00<00:00, 429.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]:00<00:00, 2527.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.92 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]:00<00:00, 1294.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.15 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.70 examples/s]:00<00:00, 531.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.83 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]:00<00:00, 1050.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]:00<00:00, 1400.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.04 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.97 examples/s]:00<00:00, 790.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.86 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32578 ...Processing shard 32579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.45 examples/s]:00<00:00, 817.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.13 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 151.60 examples/s]00<00:00, 859.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.96 examples/s]:00<00:00, 546.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.57 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.23 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.72 examples/s]00<00:00, 952.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 21.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.42 examples/s]:00<00:00, 139.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32594 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]:00<00:00, 234.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.64 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.69 examples/s]:00<00:00, 323.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.28 examples/s]:00<00:00, 273.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.25 examples/s]:00<00:00, 348.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 523.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]:00<00:00, 338.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]:00<00:00, 306.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.50 examples/s]:00<00:00, 355.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.55 examples/s]:00<00:00, 204.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]:00<00:00, 374.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.43 examples/s]:00<00:00, 186.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]:00<00:00, 380.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 79.45 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.28 examples/s]:00<00:00, 788.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.60 examples/s]:00<00:00, 315.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 77.17 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.00 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]:00<00:00, 266.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.92 examples/s]:00<00:00, 290.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.37 examples/s]:00<00:00, 170.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.49 examples/s]:00<00:00, 355.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32705 ...Processing shard 32706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.22 examples/s]:00<00:00, 532.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]:00<00:00, 407.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]:00<00:00, 326.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.02 examples/s]:00<00:00, 257.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.69 examples/s]:00<00:00, 311.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.50 examples/s]:00<00:00, 336.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.22 examples/s]:00<00:00, 451.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.93 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.44 examples/s]:00<00:00, 407.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.23 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.25 examples/s]:00<00:00, 364.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.48 examples/s]:00<00:00, 341.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]:00<00:00, 337.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]:00<00:00, 897.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.29 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.39 examples/s]:00<00:00, 322.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.50 examples/s]:00<00:00, 363.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.48 examples/s]:00<00:00, 259.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.26 examples/s]:00<00:00, 1668.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.86 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.93 examples/s]:00<00:00, 141.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.44 examples/s]:00<00:00, 414.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]:00<00:00, 350.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.45 examples/s]:00<00:00, 339.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]:00<00:00, 385.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]:00<00:00, 440.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.16 examples/s]:00<00:00, 648.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.13 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]:00<00:00, 1614.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.96 examples/s]:00<00:00, 1661.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.26 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.56 examples/s]:00<00:00, 734.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2205.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.08 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.99 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.65 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]:00<00:00, 1530.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]:00<00:00, 725.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.24 examples/s]:00<00:00, 831.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]:00<00:00, 483.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.11 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.37 examples/s]:00<00:00, 692.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]:00<00:00, 527.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.84 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.79 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]:00<00:00, 745.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 639.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]:00<00:00, 690.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.13 examples/s]:00<00:00, 1509.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.52 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.91 examples/s]:00<00:00, 991.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.66 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.38 examples/s]:00<00:00, 1125.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]:00<00:00, 597.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.22 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.23 examples/s]:00<00:00, 346.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.03 examples/s]:00<00:00, 266.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.19 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.30 examples/s]:00<00:00, 880.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.48 examples/s]:00<00:00, 519.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.76 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.14 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.60 examples/s]:00<00:00, 383.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]:00<00:00, 411.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.83 examples/s]:00<00:00, 227.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.47 examples/s]:00<00:00, 373.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.96 examples/s]:00<00:00, 473.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 380.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]:00<00:00, 462.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]:00<00:00, 274.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.78 examples/s]:00<00:00, 422.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.05 examples/s]:00<00:00, 434.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.91 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.65 examples/s]:00<00:00, 614.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]:00<00:00, 569.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.93 examples/s]:00<00:00, 475.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 32981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.65 examples/s]:00<00:00, 485.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 496.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32995 ...Processing shard 32996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 32999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2173.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33019 ...\n",
      "Processing shard 33020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.12 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.00 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 936.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.28 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.37 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.75 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.35 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.59 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.54 examples/s]:00<00:00, 604.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.53 examples/s]:00<00:00, 485.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]:00<00:00, 509.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.69 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.79 examples/s]:00<00:00, 458.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.85 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33059 ...Processing shard 33060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.87 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.25 examples/s]:00<00:00, 2365.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.55 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.33 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.65 examples/s]:00<00:00, 396.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.86 examples/s]:00<00:00, 393.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.24 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  4.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 844.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.07 examples/s]:00<00:00, 364.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]:00<00:00, 454.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.16 examples/s]:00<00:00, 183.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 333.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 367.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.34 examples/s]:00<00:00, 332.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 353.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.99 examples/s]:00<00:00, 356.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.56 examples/s]:00<00:00, 399.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]:00<00:00, 377.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.37 examples/s]:00<00:00, 311.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33124 ...Processing shard 33125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 501.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.63 examples/s]:00<00:00, 196.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.43 examples/s]:00<00:00, 272.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]:00<00:00, 599.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 446.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]:00<00:00, 325.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]:00<00:00, 352.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.16 examples/s]:00<00:00, 471.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.36 examples/s]:00<00:00, 367.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 164.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33160 ...Processing shard 33161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.86 examples/s]:00<00:00, 654.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33167 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]:00<00:00, 464.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.35 examples/s]:00<00:00, 211.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.67 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.43 examples/s]:00<00:00, 469.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 309.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]:00<00:00, 239.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.14 examples/s]:00<00:00, 562.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.25 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.25 examples/s]:00<00:00, 809.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33195 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.50 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.25 examples/s]:00<00:00, 326.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]:00<00:00, 305.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 382.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 296.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.89 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.66 examples/s]:00<00:00, 313.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.29 examples/s]:00<00:00, 340.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.14 examples/s]:00<00:00, 255.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.85 examples/s]:00<00:00, 216.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]:00<00:00, 323.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.59 examples/s]:00<00:00, 215.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.44 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.98 examples/s]:00<00:00, 282.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]:00<00:00, 228.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 83.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33253 ...Processing shard 33254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33259 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.56 examples/s]:00<00:00, 403.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.43 examples/s]:00<00:00, 292.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.48 examples/s]:00<00:00, 420.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.56 examples/s]:00<00:00, 322.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.97 examples/s]:00<00:00, 280.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]:00<00:00, 324.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.14 examples/s]:00<00:00, 376.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.31 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.69 examples/s]:00<00:00, 468.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]:00<00:00, 314.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.48 examples/s]:00<00:00, 236.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.47 examples/s]:00<00:00, 281.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]:00<00:00, 258.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.23 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]:00<00:00, 337.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]:00<00:00, 372.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]:00<00:00, 296.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.48 examples/s]:00<00:00, 363.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.11 examples/s]:00<00:00, 315.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.64 examples/s]:00<00:00, 160.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.18 examples/s]:00<00:00, 302.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.67 examples/s]:00<00:00, 478.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]:00<00:00, 190.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.95 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.72 examples/s]:00<00:00, 217.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.36 examples/s]:00<00:00, 263.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 73.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 327.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.49 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 30.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.05 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.35 examples/s]:00<00:00, 410.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.38 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]:00<00:00, 489.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.61 examples/s]:00<00:00, 465.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]:00<00:00, 329.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.39 examples/s]:00<00:00, 342.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.83 examples/s]:00<00:00, 214.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]:00<00:00, 500.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.95 examples/s]:00<00:00, 469.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.53 examples/s]:00<00:00, 346.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]:00<00:00, 549.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.40 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.65 examples/s]:00<00:00, 1402.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.69 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.69 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.73 examples/s]:00<00:00, 398.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.30 examples/s]:00<00:00, 483.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.57 examples/s]:00<00:00, 468.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.61 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.30 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.28 examples/s]:00<00:00, 520.97 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]:00<00:00, 584.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]:00<00:00, 283.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.52 examples/s]:00<00:00, 384.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.65 examples/s]:00<00:00, 214.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.54 examples/s]:00<00:00, 212.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]:00<00:00, 394.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.84 examples/s]:00<00:00, 2242.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.79 examples/s]:00<00:00, 760.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.77 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33507 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.22 examples/s]:00<00:00, 440.69 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.71 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.77 examples/s]:00<00:00, 298.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.28 examples/s]:00<00:00, 336.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33526 ...Processing shard 33527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.99 examples/s]:00<00:00, 785.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]:00<00:00, 403.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.66 examples/s]:00<00:00, 357.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.27 examples/s]:00<00:00, 326.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.95 examples/s]:00<00:00, 358.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.80 examples/s]:00<00:00, 233.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]:00<00:00, 263.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]:00<00:00, 298.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.63 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.06 examples/s]:00<00:00, 366.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.06 examples/s]:00<00:00, 289.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.15 examples/s]:00<00:00, 198.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.32 examples/s]:00<00:00, 297.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.73 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.40 examples/s]:00<00:00, 260.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.45 examples/s]:00<00:00, 730.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.15 examples/s]:00<00:00, 354.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]:00<00:00, 431.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<00:00, 294.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 98.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.29 examples/s]:00<00:00, 275.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.48 examples/s]:00<00:00, 404.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]:00<00:00, 249.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.91 examples/s]:00<00:00, 422.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.72 examples/s]:00<00:00, 312.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 848.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]:00<00:00, 1451.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.93 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33648 ...Processing shard 33647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]:00<00:00, 364.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.76 examples/s]:00<00:00, 269.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]:00<00:00, 415.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 228.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.41 examples/s]:00<00:00, 404.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.48 examples/s]:00<00:00, 513.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 385.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.02 examples/s]:00<00:00, 278.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33677 ...\n",
      "Processing shard 33678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]:00<00:00, 400.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.32 examples/s]:00<00:00, 333.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]:00<00:00, 239.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.08 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.33 examples/s]:00<00:00, 311.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.52 examples/s]:00<00:00, 347.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.13 examples/s]:00<00:00, 309.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 79.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 75.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.18 examples/s]:00<00:00, 256.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]:00<00:00, 358.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.62 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.85 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.11 examples/s]:00<00:00, 640.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.43 examples/s]:00<00:00, 402.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.05 examples/s]:00<00:00, 852.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.42 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]:00<00:00, 567.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]:00<00:00, 627.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.63 examples/s]:00<00:00, 312.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 105.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.97 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]:00<00:00, 307.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]:00<00:00, 177.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.76 examples/s]:00<00:00, 258.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]:00<00:00, 310.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.11 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33768 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]:00<00:00, 517.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]:00<00:00, 716.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]:00<00:00, 621.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.56 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.66 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.67 examples/s]:00<00:00, 654.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.49 examples/s]:00<00:00, 571.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.19 examples/s]:00<00:00, 517.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.78 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.66 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.65 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 44.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.88 examples/s]:00<00:00, 2082.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1582.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]:00<00:00, 1190.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]:00<00:00, 1146.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.33 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.65 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.43 examples/s]:00<00:00, 680.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.73 examples/s]:00<00:00, 819.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.31 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.45 examples/s]:00<00:00, 438.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.56 examples/s]:00<00:00, 362.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.47 examples/s]:00<00:00, 305.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.99 examples/s]:00<00:00, 347.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]:00<00:00, 346.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33835 ...Processing shard 33836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]:00<00:00, 860.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.27 examples/s]:00<00:00, 325.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.60 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]:00<00:00, 332.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.72 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.30 examples/s]:00<00:00, 1409.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.42 examples/s]:00<00:00, 543.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.02 examples/s]:00<00:00, 362.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.01 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.65 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.10 examples/s]:00<00:00, 422.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.15 examples/s]:00<00:00, 852.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.23 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.37 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.56 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1445.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.13 examples/s]:00<00:00, 2411.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.66 examples/s]:00<00:00, 1139.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.29 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.46 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.51 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.32 examples/s]:00<00:00, 229.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]:00<00:00, 269.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 310.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.03 examples/s]:00<00:00, 303.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 78.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.71 examples/s]:00<00:00, 472.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.61 examples/s]:00<00:00, 162.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.88 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 527.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]:00<00:00, 541.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.11 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.38 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.44 examples/s]:00<00:00, 604.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]:00<00:00, 363.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 33925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]:00<00:00, 404.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.00 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33934 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.72 examples/s]:00<00:00, 621.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1367.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33946 ...Processing shard 33947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]:00<00:00, 1102.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.12 examples/s]:00<00:00, 669.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]:00<00:00, 499.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.30 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.68 examples/s]:00<00:00, 220.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.50 examples/s]:00<00:00, 392.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.39 examples/s]:00<00:00, 207.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 71.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 392.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.29 examples/s]:00<00:00, 417.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.36 examples/s]:00<00:00, 610.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.24 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]:00<00:00, 331.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.70 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.99 examples/s]:00<00:00, 488.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]:00<00:00, 640.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.12 examples/s]:00<00:00, 508.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.98 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 53.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 33999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.66 examples/s]:00<00:00, 300.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.82 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 58.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.56 examples/s]:00<00:00, 401.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.04 examples/s]:00<00:00, 456.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]:00<00:00, 593.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.35 examples/s]:00<00:00, 308.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 399.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.79 examples/s]:00<00:00, 418.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.01 examples/s]:00<00:00, 452.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.24 examples/s]:00<00:00, 245.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]:00<00:00, 213.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.57 examples/s]:00<00:00, 397.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.89 examples/s]:00<00:00, 241.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.54 examples/s]:00<00:00, 289.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.83 examples/s]:00<00:00, 392.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.85 examples/s]:00<00:00, 318.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.26 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 23.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.05 examples/s]:00<00:00, 1950.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.92 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.02 examples/s]:00<00:00, 672.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.39 examples/s]:00<00:00, 231.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.04 examples/s]:00<00:00, 314.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.72 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]:00<00:00, 522.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]:00<00:00, 672.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]:00<00:00, 731.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]:00<00:00, 373.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.15 examples/s]:00<00:00, 482.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.10 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.09 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34110 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 315.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.58 examples/s]:00<00:00, 371.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.70 examples/s]:00<00:00, 207.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]:00<00:00, 393.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]:00<00:00, 417.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.90 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.58 examples/s]:00<00:00, 563.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.83 examples/s]:00<00:00, 375.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 473.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.84 examples/s]:00<00:00, 393.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34150 ...Processing shard 34149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.43 examples/s]:00<00:00, 712.09 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.31 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]:00<00:00, 409.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 465.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.51 examples/s]:00<00:00, 404.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 461.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.73 examples/s]:00<00:00, 357.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]:00<00:00, 326.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.58 examples/s]:00<00:00, 292.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.28 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.52 examples/s]:00<00:00, 517.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.17 examples/s]:00<00:00, 466.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.83 examples/s]:00<00:00, 384.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.76 examples/s]:00<00:00, 446.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.54 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.91 examples/s]:00<00:00, 983.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.14 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.98 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.05 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.87 examples/s]:00<00:00, 1563.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.01 examples/s]:00<00:00, 1299.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]:00<00:00, 948.87 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34212 ...Processing shard 34213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.69 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.23 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34219 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.16 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.01 examples/s]:00<00:00, 278.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.19 examples/s]:00<00:00, 375.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.13 examples/s]:00<00:00, 379.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 96.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34242 ...Processing shard 34241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.63 examples/s]:00<00:00, 452.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.99 examples/s]:00<00:00, 280.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.75 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.30 examples/s]:00<00:00, 413.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]:00<00:00, 505.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.14 examples/s]:00<00:00, 433.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.34 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.15 examples/s]:00<00:00, 375.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]:00<00:00, 335.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.72 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.73 examples/s]:00<00:00, 191.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 81.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.68 examples/s]:00<00:00, 444.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 229.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.83 examples/s]:00<00:00, 268.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]:00<00:00, 527.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.86 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.58 examples/s]:00<00:00, 433.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]:00<00:00, 370.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.77 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.95 examples/s]:00<00:00, 398.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.76 examples/s]:00<00:00, 394.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]:00<00:00, 343.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.76 examples/s]:00<00:00, 421.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.13 examples/s]:00<00:00, 206.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.63 examples/s]:00<00:00, 204.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.93 examples/s]:00<00:00, 448.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.39 examples/s]:00<00:00, 416.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.63 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.41 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.63 examples/s]:00<00:00, 456.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.00 examples/s]:00<00:00, 371.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 355.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]:00<00:00, 280.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34363 ...Processing shard 34364 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.02 examples/s]:00<00:00, 203.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]:00<00:00, 306.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 76.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.97 examples/s]:00<00:00, 344.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.84 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34399 ...Processing shard 34398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 520.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.06 examples/s]:00<00:00, 503.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.77 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.50 examples/s]:00<00:00, 516.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 387.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.75 examples/s]:00<00:00, 431.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]:00<00:00, 327.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 91.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34428 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.12 examples/s]:00<00:00, 403.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.45 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.24 examples/s]:00<00:00, 447.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.13 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.41 examples/s]:00<00:00, 354.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 92.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.37 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34462 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]:00<00:00, 321.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.37 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.05 examples/s]:00<00:00, 263.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.06 examples/s]:00<00:00, 860.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.22 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]:00<00:00, 346.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.18 examples/s]:00<00:00, 329.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.24 examples/s]:00<00:00, 321.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 93.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.87 examples/s]:00<00:00, 158.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.03 examples/s]:00<00:00, 297.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 101.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 79.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.25 examples/s]:00<00:00, 268.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 88.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34503 ...\n",
      "Processing shard 34504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 90.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.22 examples/s]:00<00:00, 386.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]:00<00:00, 319.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]:00<00:00, 409.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.40 examples/s]:00<00:00, 330.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.58 examples/s]:00<00:00, 381.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.63 examples/s]:00<00:00, 325.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 249.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.53 examples/s]:00<00:00, 298.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.95 examples/s]:00<00:00, 155.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.56 examples/s]:00<00:00, 263.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 112.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 84.93 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 373.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.88 examples/s]:00<00:00, 457.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]:00<00:00, 257.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.69 examples/s]:00<00:00, 453.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.66 examples/s]:00<00:00, 318.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.95 examples/s]:00<00:00, 315.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.68 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.30 examples/s]:00<00:00, 369.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 360.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.56 examples/s]:00<00:00, 342.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 197.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.28 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.29 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.88 examples/s]:00<00:00, 444.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]:00<00:00, 338.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 265.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 73.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 74.95 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.44 examples/s]:00<00:00, 257.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 372.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.91 examples/s]:00<00:00, 411.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.38 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.01 examples/s]:00<00:00, 439.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.52 examples/s]:00<00:00, 561.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.61 examples/s]:00<00:00, 905.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.20 examples/s]:00<00:00, 412.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 103.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]:00<00:00, 270.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 263.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 102.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34662 ...Processing shard 34663 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.47 examples/s]:00<00:00, 441.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.62 examples/s]:00<00:00, 331.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]:00<00:00, 207.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]:00<00:00, 491.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.61 examples/s]:00<00:00, 321.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 80.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]:00<?, ? examples/s]amples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.39 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.65 examples/s]:00<00:00, 361.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.25 examples/s]:00<00:00, 411.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]:00<00:00, 344.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 100.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]:00<00:00, 424.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.16 examples/s]:00<00:00, 407.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.48 examples/s]:00<00:00, 238.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.10 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.43 examples/s]:00<00:00, 427.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.89 examples/s]:00<00:00, 440.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]:00<00:00, 194.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]:00<00:00, 180.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.96 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 94.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.69 examples/s]:00<00:00, 387.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.63 examples/s]:00<00:00, 410.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.91 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 744.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.36 examples/s]:00<00:00, 278.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]:00<00:00, 208.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 104.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.47 examples/s]:00<00:00, 410.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]:00<00:00, 381.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 959.43 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.82 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.84 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.19 examples/s]:00<00:00, 937.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.45 examples/s]:00<00:00, 769.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.05 examples/s]:00<00:00, 450.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.69 examples/s]:00<00:00, 382.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.15 examples/s]:00<00:00, 296.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]:00<00:00, 289.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 163.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.55 examples/s]:00<00:00, 437.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]:00<00:00, 654.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.54 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.57 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.63 examples/s]:00<00:00, 1534.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2458.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.34 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.08 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 140.81 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.26 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.79 examples/s]00<00:00, 459.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.09 examples/s]:00<00:00, 519.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.77 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.34 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.34 examples/s]:00<00:00, 458.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.49 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.77 examples/s]00<00:00, 462.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.26 examples/s]00<00:00, 457.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.40 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.38 examples/s]00<00:00, 452.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.23 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.72 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34839 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.87 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 636.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 40.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2513.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.06 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.13 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.55 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2483.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.27 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.68 examples/s]:00<00:00, 2001.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.32 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.86 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]:00<00:00, 1516.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.97 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.57 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 604.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.18 examples/s]:00<00:00, 623.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.67 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 265.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.24 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 25.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 856.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.48 examples/s]:00<00:00, 2544.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.60 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.92 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.43 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.27 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.24 examples/s]:00<00:00, 1755.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.56 examples/s]:00<00:00, 1489.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.22 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.64 examples/s]:00<00:00, 946.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.11 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.80 examples/s]:00<00:00, 2417.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.60 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.52 examples/s]:00<00:00, 1774.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]:00<00:00, 1517.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.10 examples/s]:00<00:00, 2300.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.05 examples/s]:00<00:00, 1012.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.02 examples/s]:00<00:00, 1044.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.95 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1699.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.20 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.39 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34944 ...\n",
      "Processing shard 34945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34947 ...\n",
      "Processing shard 34948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]:00<00:00, 1552.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.66 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.24 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34953 ...Processing shard 34954 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.02 examples/s]:00<00:00, 2398.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.35 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.58 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 559.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.44 examples/s]:00<00:00, 362.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.86 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.13 examples/s]]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.04 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 749.30 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.09 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.25 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2123.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 805.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34989 ...Processing shard 34990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1688.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2114.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 34997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 34999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35004 ...\n",
      "Processing shard 35005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1693.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1621.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.77 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35012 ...Processing shard 35013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.19 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.46 examples/s]:00<00:00, 2545.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.90 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.79 examples/s]]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.84 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.35 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1690.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2451.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.32 examples/s]:00<00:00, 2329.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1424.21 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]:00<00:00, 1940.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 916.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.69 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.26 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.33 examples/s]:00<00:00, 1256.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.79 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.39 examples/s]:00<00:00, 1151.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.56 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.84 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1544.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2074.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2241.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1660.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.13 examples/s]:00<00:00, 1786.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.62 examples/s]:00<00:00, 1441.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.92 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.12 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]:00<00:00, 1343.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.96 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.26 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.81 examples/s]:00<00:00, 717.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.61 examples/s]:00<00:00, 633.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.25 examples/s]:00<00:00, 456.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.93 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]:00<00:00, 2580.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.58 examples/s]:00<00:00, 2324.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]:00<00:00, 912.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.47 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]:00<00:00, 525.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.36 examples/s]:00<00:00, 1183.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.32 examples/s]:00<00:00, 1461.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.27 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.62 examples/s]:00<00:00, 580.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.26 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.82 examples/s]:00<00:00, 335.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 124.39 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.80 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 146.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.68 examples/s]00<00:00, 524.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.93 examples/s]:00<00:00, 481.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.39 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 235.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.41 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.64 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 248.92 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 898.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.28 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.34 examples/s]:00<00:00, 2391.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.14 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.18 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.66 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.78 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]:00<00:00, 2345.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.75 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1451.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2315.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2054.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2353.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.71 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1521.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.97 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.14 examples/s]:00<00:00, 1204.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 873.71 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 790.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35204 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2130.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.53 examples/s]:00<00:00, 877.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.19 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.77 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]:00<00:00, 2458.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.44 examples/s]:00<00:00, 1668.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]:00<00:00, 1927.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.71 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 689.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.62 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1074.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35238 ...\n",
      "Processing shard 35239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.84 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.90 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 47.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2506.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1057.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2545.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2133.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 27.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2534.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1441.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.62 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.13 examples/s]:00<00:00, 1751.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]:00<00:00, 2459.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1372.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.92 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.99 examples/s]:00<00:00, 1403.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.01 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]:00<00:00, 653.11 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1103.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.73 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.69 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.24 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.00 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]:00<00:00, 1847.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.78 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.05 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.77 examples/s]]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.65 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.07 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 893.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.28 examples/s]:00<00:00, 1751.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.51 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.67 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.32 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.94 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 983.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.81 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.01 examples/s]:00<00:00, 1424.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.46 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.95 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]:00<00:00, 1008.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2482.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1601.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2553.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.32 examples/s]:00<00:00, 1124.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]:00<00:00, 1733.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2106.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1421.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1008.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.73 examples/s]:00<00:00, 1184.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.97 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35438 ...Processing shard 35437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.43 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]:00<00:00, 706.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 841.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1092.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.73 examples/s]:00<00:00, 2181.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.11 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.88 examples/s]:00<00:00, 2077.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.44 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]:00<00:00, 1304.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.69 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]:00<00:00, 1398.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.08 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.55 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.76 examples/s]:00<00:00, 1744.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.57 examples/s]:00<00:00, 786.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.70 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]:00<00:00, 269.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 209.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.02 examples/s]:00<00:00, 2429.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2500.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]:00<00:00, 1745.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]:00<00:00, 705.00 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 44.05 examples/s]:00<00:00, 586.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.02 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]:00<00:00, 487.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.74 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.00 examples/s]:00<00:00, 520.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 24.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 564.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 382.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.13 examples/s]:00<00:00, 810.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]:00<00:00, 2121.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.94 examples/s]:00<00:00, 1406.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.79 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.78 examples/s]:00<00:00, 877.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.87 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]:00<00:00, 1010.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.76 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 798.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]:00<00:00, 979.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2237.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1794.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.27 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.29 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]:00<00:00, 949.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.46 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.48 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]:00<00:00, 1006.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.63 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.11 examples/s]:00<00:00, 889.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.33 examples/s]:00<00:00, 435.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.89 examples/s]:00<00:00, 865.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]:00<00:00, 565.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]:00<00:00, 471.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.09 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1677.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.37 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.94 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.41 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.35 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.87 examples/s]:00<00:00, 400.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.20 examples/s]:00<00:00, 403.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 76.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]:00<00:00, 858.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.82 examples/s]:00<00:00, 303.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 358.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 127.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 478.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 370.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.66 examples/s]:00<00:00, 1002.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]:00<00:00, 908.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s]:00<00:00, 2236.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.11 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.50 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.90 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.34 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.05 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.60 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.79 examples/s]:00<00:00, 988.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]:00<00:00, 585.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.52 examples/s]:00<00:00, 789.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.28 examples/s]:00<00:00, 1368.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 67.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 87.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 85.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 82.56 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 130.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35744 ...\n",
      "Processing shard 35745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]:00<00:00, 310.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.25 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.89 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.08 examples/s]:00<00:00, 782.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1190.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.64 examples/s]:00<00:00, 1177.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.53 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.46 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.98 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]:00<00:00, 2364.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.69 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.21 examples/s]:00<00:00, 310.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.18 examples/s]:00<00:00, 931.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.51 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 147.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 109.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 309.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.88 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 95.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 162.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 158.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35796 ...Processing shard 35797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.86 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1147.20 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.29 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.08 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]:00<00:00, 737.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.83 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.76 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 56.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.38 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.58 examples/s]:00<00:00, 942.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.47 examples/s]:00<00:00, 682.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.33 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.62 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.73 examples/s]:00<00:00, 971.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]:00<00:00, 748.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.76 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1113.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.35 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.08 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.53 examples/s]:00<00:00, 1085.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 667.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.81 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.28 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 25.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1672.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.69 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.79 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.25 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2550.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1691.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.74 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2312.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.31 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1593.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.64 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.41 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2109.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2483.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.14 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.27 examples/s]:00<00:00, 2511.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.81 examples/s]:00<00:00, 1125.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.37 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.97 examples/s]:00<00:00, 1690.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 907.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.77 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.79 examples/s]:00<00:00, 1836.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2093.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1740.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1491.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2107.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.48 examples/s]:00<00:00, 856.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 563.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2199.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]:00<00:00, 2300.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.06 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.78 examples/s]:00<00:00, 770.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.48 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  3.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35941 ...Processing shard 35942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.07 examples/s]:00<00:00, 2504.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.63 examples/s]:00<00:00, 658.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2581.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1773.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]:00<00:00, 1443.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.87 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35957 ...\n",
      "Processing shard 35958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.55 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.55 examples/s]:00<00:00, 694.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 598.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.08 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1033.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.08 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.36 examples/s]:00<00:00, 1318.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.07 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35986 ...Processing shard 35985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 77.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.04 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.13 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.16 examples/s]:00<00:00, 1131.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.96 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.64 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 35989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.12 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.75 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.59 examples/s]:00<00:00, 1246.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.55 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.88 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.75 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.97 examples/s]:00<00:00, 1363.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 965.44 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 35999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.65 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36002 ...\n",
      "Processing shard 36003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.65 examples/s]:00<00:00, 2070.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.91 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.62 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.05 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.47 examples/s]00<00:00, 585.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2265.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.20 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.90 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.03 examples/s]:00<00:00, 1575.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.48 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.32 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.51 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2466.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  3.93 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 125.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.11 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.56 examples/s]00<00:00, 1874.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.39 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.86 examples/s]00<00:00, 1178.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.16 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.81 examples/s]00<00:00, 1714.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.57 examples/s]:00<00:00, 2027.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 17.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.92 examples/s]00<00:00, 2307.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.60 examples/s]:00<00:00, 879.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.65 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.57 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2077.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1406.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]:00<00:00, 1014.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.81 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 119.98 examples/s]00<00:00, 898.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.42 examples/s]00<00:00, 852.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36061 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 326.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.71 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]:00<00:00, 298.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 379.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.38 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.21 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.97 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.36 examples/s]00<00:00, 448.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.11 examples/s]:00<00:00, 446.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.53 examples/s]:00<00:00, 902.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.73 examples/s]:00<00:00, 427.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 410.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 740.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.30 examples/s]:00<00:00, 396.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 112.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.47 examples/s]:00<00:00, 298.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.63 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.06 examples/s]00<00:00, 474.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.39 examples/s]00<00:00, 368.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.67 examples/s]00<00:00, 420.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 140.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 233.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 389.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 115.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.00 examples/s]:00<00:00, 396.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.08 examples/s]:00<00:00, 855.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 546.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36149 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.27 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.25 examples/s]:00<00:00, 454.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.94 examples/s]:00<00:00, 365.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.06 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.87 examples/s]00<00:00, 447.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.43 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 121.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.50 examples/s]:00<00:00, 413.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 183.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 131.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 181.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.44 examples/s]00<00:00, 361.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 144.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.26 examples/s]:00<00:00, 344.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.00 examples/s]:00<00:00, 876.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.55 examples/s]00<00:00, 385.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.56 examples/s]:00<00:00, 228.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.34 examples/s]:00<00:00, 362.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.92 examples/s]:00<00:00, 339.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.51 examples/s]:00<00:00, 395.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.86 examples/s]:00<00:00, 418.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 114.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36202 ...Processing shard 36203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 157.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 106.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.35 examples/s]:00<00:00, 206.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.30 examples/s]:00<00:00, 308.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.28 examples/s]:00<00:00, 297.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 111.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 275.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.88 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 149.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 189.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 75.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 108.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.18 examples/s]:00<00:00, 307.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.82 examples/s]:00<00:00, 442.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.91 examples/s]:00<00:00, 759.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 208.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 319.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.09 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.53 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.19 examples/s]:00<00:00, 302.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.24 examples/s]:00<00:00, 332.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 110.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.33 examples/s]:00<00:00, 348.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.16 examples/s]:00<00:00, 183.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 120.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 107.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 89.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.29 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 152.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.64 examples/s]:00<00:00, 360.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 201.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 863.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.03 examples/s]:00<00:00, 429.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.46 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.70 examples/s]:00<00:00, 1099.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 165.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.87 examples/s]:00<00:00, 310.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 145.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.38 examples/s]:00<00:00, 406.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 86.38 examples/s]  "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.85 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.87 examples/s]:00<00:00, 357.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 123.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36283 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.70 examples/s]:00<00:00, 234.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 113.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.27 examples/s]:00<00:00, 277.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 99.62 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 162.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.04 examples/s]:00<00:00, 258.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 230.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.76 examples/s]00<00:00, 185.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 124.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 153.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.24 examples/s]:00<00:00, 340.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 97.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.25 examples/s]:00<00:00, 338.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.91 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 121.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]:00<00:00, 840.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 137.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 217.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 49.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36312 ...Processing shard 36313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 187.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.25 examples/s]:00<00:00, 745.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36320 ...Processing shard 36321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.56 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.54 examples/s]:00<00:00, 740.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.17 examples/s]:00<00:00, 515.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 226.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.11 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 108.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.61 examples/s]:00<00:00, 579.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 392.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 42.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]:00<00:00, 1478.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.07 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.30 examples/s]:00<00:00, 2470.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2101.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.04 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.77 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1001.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.46 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.63 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.35 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36375 ...Processing shard 36376 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36380 ...\n",
      "Processing shard 36381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.05 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 14.76 examples/s]:00<00:00, 1869.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.46 examples/s]:00<00:00, 2066.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 27.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.91 examples/s]:00<00:00, 1873.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 19.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 54.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2233.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 36.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.40 examples/s]:00<00:00, 2219.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.90 examples/s]:00<00:00, 1657.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.25 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.92 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.94 examples/s]:00<00:00, 634.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.66 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.19 examples/s]00<00:00, 1940.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.83 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.82 examples/s]]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36409 ...Processing shard 36408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.93 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 44.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1622.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.71 examples/s]:00<00:00, 1696.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.09 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.05 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 33.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.82 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 35.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1064.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.04 examples/s]:00<00:00, 2043.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.55 examples/s]:00<00:00, 2182.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.63 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.48 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.35 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 24.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.21 examples/s]:00<00:00, 1310.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.54 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.68 examples/s]:00<00:00, 1322.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.39 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.38 examples/s]:00<00:00, 920.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.26 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.33 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.18 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]:00<00:00, 1019.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 761.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2452.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 41.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.24 examples/s]:00<00:00, 1086.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.20 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.25 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.06 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 32.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.06 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.16 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2315.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 57.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]:00<00:00, 1457.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.70 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 32.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.91 examples/s]:00<00:00, 948.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.40 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 38.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2074.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1777.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.54 examples/s]:00<00:00, 726.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.57 examples/s]:00<00:00, 2141.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.73 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]:00<00:00, 1428.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 39.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.01 examples/s]:00<00:00, 1194.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.56 examples/s]:00<00:00, 1064.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.59 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.69 examples/s]:00<00:00, 1242.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 396.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.19 examples/s]:00<00:00, 683.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.57 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1004.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.23 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]:00<00:00, 1006.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.55 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.76 examples/s]:00<00:00, 1203.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.32 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]:00<00:00, 609.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.59 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.79 examples/s]:00<00:00, 1121.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.47 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 55.37 examples/s]:00<00:00, 1083.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 65.30 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 40.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 15.96 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.68 examples/s]:00<00:00, 2014.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 33.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.52 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 26.88 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 25.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.73 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 40.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36544 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 169.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 301.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 317.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 342.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]:00<00:00, 776.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 685.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.01 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2281.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 20.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 51.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<00:00, 1927.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.93 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.22 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.94 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1149.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36571 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.66 examples/s]:00<00:00, 2222.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.58 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36575 ...Processing shard 36576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 25.59 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 30.52 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.77 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.80 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 56.61 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 44.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 569.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 908.03 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2221.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]:00<00:00, 906.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.65 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 880.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.76 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36596 ...Processing shard 36597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 224.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.97 examples/s]:00<00:00, 1069.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.76 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 25.61 examples/s]:00<00:00, 1035.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2250.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.71 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 64.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.21 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36622 ...\n",
      "Processing shard 36623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00, 34.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.23 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]:00<00:00, 2525.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.74 examples/s]:00<00:00, 973.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 27.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.82 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 44.80 examples/s]:00<00:00, 790.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 42.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.70 examples/s]:00<00:00, 422.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 161.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.78 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 19.52 examples/s]:00<00:00, 365.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.70 examples/s]:00<00:00, 418.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 176.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 183.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 156.56 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 151.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 136.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 132.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 134.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 128.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.90 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 459.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.06 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 28.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36658 ...Processing shard 36659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2501.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 39.71 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.80 examples/s]:00<00:00, 1546.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 26.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.83 examples/s]IOPub message rate exceeded.s]\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 43.63 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.61 examples/s]:00<00:00, 852.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 980.49 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 345.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.14 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36768 ...Processing shard 36769 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.74 examples/s]:00<00:00, 742.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 958.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.84 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.43 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.23 examples/s]:00<00:00, 1949.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.48 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 54.55 examples/s]:00<00:00, 1233.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.39 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.82 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1244.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 50.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.12 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 49.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36798 ...Processing shard 36797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 52.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.48 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.59 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.39 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.66 examples/s]:00<00:00, 2280.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.27 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 33.04 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1790.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.54 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 32.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2079.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.29 examples/s]:00<?, ? examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2169.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.50 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 62.87 examples/s]:00<?, ? examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 57.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36825 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.50 examples/s]:00<00:00, 2193.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.62 examples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 30.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36829 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.36 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36832 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2367.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1579.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]:00<00:00, 1807.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 41.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 57.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.55 examples/s]:00<00:00, 1362.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.61 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.91 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1674.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.62 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]:00<00:00, 1911.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]:00<00:00, 1090.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.12 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1402.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1307.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2089.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2100.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 141.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.63 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.38 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 37.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.37 examples/s]:00<00:00, 1547.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 20.89 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.62 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.50 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1127.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 639.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36869 ...Processing shard 36870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.67 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1415.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36874 ...\n",
      "Processing shard 36875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.62 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 38.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.87 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.72 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36880 ...Processing shard 36881 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36888 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.44 examples/s]:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.16 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 36.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.38 examples/s]:00<00:00, 1745.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 496.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.99 examples/s]:00<00:00, 1189.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 896.99 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1130.95 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.35 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.94 examples/s]:00<00:00, 962.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.61 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.94 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.10 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]:00<00:00, 1151.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.88 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2120.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1002.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.67 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2069.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]:00<00:00, 1496.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.80 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]:00<00:00, 1175.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 38.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.77 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 899.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.05 examples/s]]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 37.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]:00<00:00, 1884.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.94 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.30 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 36960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.37 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1632.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 895.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 976.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 58.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.92 examples/s]:00<00:00, 1756.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 34.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.63 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.21 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1523.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.09 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2268.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]:00<00:00, 1413.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 451.18 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.85 examples/s]:00<00:00, 1176.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 36999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.00 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.08 examples/s]:00<00:00, 901.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 561.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 913.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 970.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37020 ...\n",
      "Processing shard 37021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 58.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.76 examples/s]:00<00:00, 776.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.00 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.57 examples/s]:00<00:00, 2565.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1631.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.68 examples/s]:00<00:00, 1442.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 772.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.48 examples/s]:00<00:00, 2498.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37036 ...Processing shard 37037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.75 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]:00<00:00, 1923.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.64 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.90 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.82 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.81 examples/s]:00<00:00, 1069.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.26 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.42 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.24 examples/s]:00<00:00, 835.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 408.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 470.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1102.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 602.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 424.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.93 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.31 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.39 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 867.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1093.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.83 examples/s]:00<00:00, 1478.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.82 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.35 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2073.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2055.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.39 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2145.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2048.67 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.77 examples/s]:00<00:00, 1733.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]:00<00:00, 1010.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.86 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.65 examples/s]:00<00:00, 1566.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1012.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 579.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.06 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.94 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.08 examples/s]:00<00:00, 1805.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]:00<00:00, 1153.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]:00<00:00, 1387.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37110 ...Processing shard 37111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 824.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.89 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37121 ...Processing shard 37122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.19 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.86 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1218.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.57 examples/s]:00<00:00, 1872.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.15 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1229.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.40 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.48 examples/s]:00<00:00, 1065.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.04 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.33 examples/s]:00<00:00, 765.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.92 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.11 examples/s]:00<00:00, 1208.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.28 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.09 examples/s]:00<00:00, 1870.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1545.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.95 examples/s]:00<00:00, 1158.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]:00<00:00, 1004.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.23 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.32 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.68 examples/s]:00<00:00, 607.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.10 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.19 examples/s]:00<00:00, 685.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 19.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.69 examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.16 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.95 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.47 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.63 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.00 examples/s]:00<00:00, 633.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.02 examples/s]:00<00:00, 724.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.61 examples/s]:00<00:00, 570.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37283 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 263.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.81 examples/s]:00<00:00, 946.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.89 examples/s]:00<00:00, 723.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 380.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.11 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.95 examples/s]:00<00:00, 797.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37307 ...\n",
      "Processing shard 37308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.05 examples/s]:00<00:00, 2339.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.91 examples/s]:00<00:00, 1036.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.92 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1206.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.05 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]:00<00:00, 722.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 247.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.52 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.57 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.03 examples/s]:00<00:00, 456.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37334 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.56 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]:00<00:00, 880.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.56 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 842.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 381.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1242.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.74 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.53 examples/s]:00<00:00, 1202.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.55 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.30 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.05 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.26 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:05<00:17,  2.53s/ examples]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.06 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.64 examples/s]:00<00:00, 1091.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.59 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.06 examples/s]]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.21 examples/s]:00<00:00, 1098.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.21 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1210.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.72 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.69 examples/s]:00<00:00, 2194.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.47 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1515.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2254.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.03 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]:00<00:00, 1051.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.08 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.32 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.39 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.60 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 872.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.47 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.97 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.68 examples/s]:00<00:00, 1500.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 952.31 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.15 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1898.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.42 examples/s]:00<00:00, 1603.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1076.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.92 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37425 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 769.83 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.93 examples/s]:00<00:00, 1952.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.91 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.81 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.10 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1043.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 597.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 283.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.94 examples/s]:00<00:00, 652.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 282.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.92 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 206.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 262.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 244.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 256.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.50 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1680.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.57 examples/s]:00<00:00, 2417.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.62 examples/s]:00<00:00, 2354.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.52 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.83 examples/s]:00<00:00, 1756.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]:00<00:00, 628.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1315.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.83 examples/s]:00<00:00, 1268.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 775.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]:00<00:00, 2526.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 825.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.34 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.32 examples/s]:00<00:00, 908.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.17 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]:00<00:00, 957.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 453.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.04 examples/s]:00<00:00, 615.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37487 ...Processing shard 37488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.86 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.10 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.98 examples/s]:00<00:00, 904.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37492 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.39 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.33 examples/s]:00<00:00, 553.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.62 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 335.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 685.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.89 examples/s]:00<00:00, 764.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.30 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 505.91 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.34 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.02 examples/s]:00<00:00, 614.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.14 examples/s]:00<00:00, 928.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.85 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.11 examples/s]:00<00:00, 636.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 429.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.05 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 325.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37528 ...Processing shard 37529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.76 examples/s]:00<00:00, 1139.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 534.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.22 examples/s]:00<00:00, 525.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37534 ...Processing shard 37535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 337.24 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.64 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.84 examples/s]:00<00:00, 1215.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.30 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.87 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.01 examples/s]\n",
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.89 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.37 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1179.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1049.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 819.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.87 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.18 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.24 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 782.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.30 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2377.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.23 examples/s]:00<00:00, 2198.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.51 examples/s]:00<00:00, 1874.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.11 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 26.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.01 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 154.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 156.00 examples/s]00<00:00, 2314.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 150.99 examples/s]00<00:00, 2154.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2213.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 845.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.76 examples/s]00<00:00, 2554.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 24.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2153.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1556.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 148.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1201.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 994.72 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1702.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.75 examples/s]:00<00:00, 2125.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1068.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.18 examples/s]00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.06 examples/s]:00<00:00, 1434.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.52 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.79 examples/s]:00<00:00, 1473.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 929.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 53.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 146.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 144.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.73 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.27 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]:00<00:00, 857.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.44 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.85 examples/s]00<00:00, 679.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 578.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.04 examples/s]:00<00:00, 662.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 719.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.02 examples/s]:00<00:00, 472.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.50 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.43 examples/s]:00<00:00, 589.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 750.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.85 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.43 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1030.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.80 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 33.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.07 examples/s]:00<00:00, 544.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2299.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.09 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.05 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.21 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.58 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 31.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37733 ...Processing shard 37732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.74 examples/s]:00<00:00, 1431.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37744 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1604.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37745 ...\n",
      "Processing shard 37746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 852.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 58.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.58 examples/s]:00<00:00, 1350.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.23 examples/s]:00<00:00, 714.87 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.89 examples/s]:00<00:00, 1764.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1628.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.79 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.96 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2090.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.42 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1359.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 765.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 948.60 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37775 ...Processing shard 37776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]:00<00:00, 1744.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.83 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.36 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1227.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.64 examples/s]:00<00:00, 2150.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]:00<00:00, 1552.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]:00<00:00, 845.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1808.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1356.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.76 examples/s]:00<00:00, 847.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.50 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.03 examples/s]:00<00:00, 1828.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.58 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.13 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.56 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 52.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 827.17 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]:00<00:00, 1271.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.35 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.36 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1023.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2085.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1070.67 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 50.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1171.08 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.56 examples/s]:00<00:00, 2579.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 65.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1011.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.32 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.83 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37825 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.16 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<00:00, 2193.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.68 examples/s]:00<00:00, 1509.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 773.51 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.28 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.06 examples/s]:00<00:00, 1641.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 542.83 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.05 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1248.88 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.17 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.25 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 471.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.59 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.42 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 874.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37845 ...Processing shard 37846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 502.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 428.49 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]:00<00:00, 739.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.52 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.79 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 489.92 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 883.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.63 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.73 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1013.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.55 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37867 ...\n",
      "Processing shard 37868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1630.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.73 examples/s]:00<00:00, 908.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.74 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.81 examples/s]:00<00:00, 758.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.92 examples/s]:00<00:00, 926.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.38 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 212.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.84 examples/s]:00<00:00, 374.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 177.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]:00<00:00, 268.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 215.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 119.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 174.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 190.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.04 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 302.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 172.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 37899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.01 examples/s]:00<00:00, 367.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 267.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 706.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2561.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.89 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.08 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]:00<00:00, 2529.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]:00<00:00, 1523.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.90 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.49 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1436.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.90 examples/s]:00<00:00, 1525.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 308.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.09 examples/s]]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.18 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 269.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 846.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 148.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.06 examples/s]:00<00:00, 348.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.60 examples/s]:00<00:00, 556.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 550.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 425.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 37942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.32 examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.50 examples/s]:00<00:00, 659.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 540.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.41 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1304.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.41 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.47 examples/s]:00<00:00, 1153.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.61 examples/s]:00<00:00, 926.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.31 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.67 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 264.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 800.92 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.43 examples/s]00<00:00, 1427.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 130.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.59 examples/s]:00<00:00, 1278.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.52 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 74.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.51 examples/s]00<00:00, 1558.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 656.53 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.40 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38045 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 134.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.41 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.35 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38047 ...Processing shard 38048 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 114.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.82 examples/s]:00<00:00, 1298.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.41 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.69 examples/s]00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.91 examples/s]:00<00:00, 647.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.41 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 135.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 133.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.45 examples/s]00<00:00, 418.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 125.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.17 examples/s]:00<00:00, 363.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 159.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.13 examples/s]:00<00:00, 325.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38063 ...Processing shard 38064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 175.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 359.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]:00<00:00, 340.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 358.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 272.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 143.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 24.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.19 examples/s]:00<00:00, 477.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.89 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.42 examples/s]:00<00:00, 446.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 185.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.10 examples/s]:00<00:00, 388.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.93 examples/s]00<00:00, 490.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 287.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.40 examples/s]:00<00:00, 370.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 204.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.34 examples/s]:00<00:00, 365.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.34 examples/s]:00<00:00, 433.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 249.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 138.05 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 41.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 118.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 171.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 164.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.11 examples/s]:00<00:00, 157.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.56 examples/s]:00<00:00, 231.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 116.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 844.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 129.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 334.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 297.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 238.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 280.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.36 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 178.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.02 examples/s]:00<00:00, 660.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 167.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.70 examples/s]:00<00:00, 526.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 296.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.30 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.21 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.52 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.49 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.80 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.21 examples/s]:00<00:00, 2541.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.51 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.93 examples/s]:00<00:00, 1344.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.64 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.36 examples/s]:00<00:00, 707.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2132.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1709.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2032.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.67 examples/s]:00<00:00, 2493.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.74 examples/s]:00<00:00, 2041.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.91 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1144.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 998.25 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.93 examples/s]:00<00:00, 789.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.57 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.15 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.67 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1513.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 668.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.69 examples/s]:00<00:00, 1729.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.43 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.29 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.54 examples/s]:00<00:00, 760.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.28 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.47 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.14 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 35.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.49 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 912.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.83 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.85 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.24 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.09 examples/s]:00<00:00, 874.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 393.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.59 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 484.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.09 examples/s]:00<00:00, 762.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1709.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]:00<00:00, 2512.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2094.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.68 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 871.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.60 examples/s]:00<00:00, 1836.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.95 examples/s]:00<00:00, 1583.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1087.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.14 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38216 ...Processing shard 38217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.63 examples/s]:00<00:00, 1035.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 674.51 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 73.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.82 examples/s]:00<00:00, 1269.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 517.01 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.30 examples/s]:00<00:00, 964.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 680.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.44 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1101.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.77 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]:00<00:00, 887.73 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.73 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.09 examples/s]:00<00:00, 1525.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 988.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 63.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 932.23 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.04 examples/s]:00<00:00, 2238.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1404.29 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 61.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.52 examples/s]:00<00:00, 1303.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.56 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 59.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.56 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.48 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.75 examples/s]:00<00:00, 843.42 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.23 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.66 examples/s]:00<00:00, 922.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.04 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.94 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.18 examples/s]:00<00:00, 653.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 252.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38254 ...Processing shard 38255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.98 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.16 examples/s]:00<00:00, 369.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 514.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 218.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.79 examples/s]:00<00:00, 502.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 228.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38261 ...Processing shard 38262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 468.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 43.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 62.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.85 examples/s]:00<00:00, 2271.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1145.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38281 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.49 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.35 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2326.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1314.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.65 examples/s]:00<00:00, 1859.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1083.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 917.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.35 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.30 examples/s]:00<00:00, 712.90 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 378.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.67 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.61 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.08 examples/s]:00<00:00, 594.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.95 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 227.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 246.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.24 examples/s]:00<00:00, 376.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 281.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 120.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 182.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 191.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 271.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 978.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 154.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 139.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 78.13 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 168.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 245.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 97.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 142.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 79.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.47 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 970.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38390 ...Processing shard 38391 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]:00<00:00, 2222.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.86 examples/s]:00<00:00, 1425.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.80 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.35 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.93 examples/s]:00<00:00, 1227.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.73 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.52 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.04 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.09 examples/s]:00<00:00, 609.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 435.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.75 examples/s]:00<00:00, 648.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 397.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.48 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 58.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.07 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 596.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.55 examples/s]:00<00:00, 730.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.63 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38413 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.52 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 961.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.81 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 59.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 60.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.32 examples/s]:00<00:00, 446.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 376.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.70 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.84 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.73 examples/s]:00<00:00, 1667.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.82 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1158.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.96 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.88 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1041.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2528.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 123.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.28 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.75 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.34 examples/s]:00<00:00, 1733.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 931.08 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 117.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1134.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.39 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 49.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.11 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 863.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 51.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.95 examples/s]00<00:00, 725.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 110.19 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]:00<00:00, 1708.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.02 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 963.69 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.51 examples/s]:00<00:00, 1309.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 628.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.92 examples/s]:00<00:00, 803.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 278.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.53 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 222.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 293.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.26 examples/s]:00<00:00, 1020.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.91 examples/s]:00<00:00, 628.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 328.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 122.66 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.52 examples/s]:00<00:00, 348.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 225.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.55 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.71 examples/s]:00<00:00, 544.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 200.05 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 27.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 430.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 259.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38501 ...Processing shard 38502 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.32 examples/s]:00<00:00, 222.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 198.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 150.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.28 examples/s]00<00:00, 858.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.48 examples/s]:00<00:00, 794.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.15 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 352.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 903.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.33 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 48.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 65.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.11 examples/s]:00<00:00, 1869.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.54 examples/s]:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.61 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1268.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1373.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.79 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2058.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2117.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1343.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38528 ...Processing shard 38527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.83 examples/s]:00<00:00, 2527.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1553.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]:00<00:00, 909.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1646.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.95 examples/s]:00<00:00, 1573.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.23 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.57 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 70.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.16 examples/s]:00<00:00, 916.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.24 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.02 examples/s]:00<00:00, 813.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38543 ...\n",
      "Processing shard 38544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 401.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.10 examples/s]:00<00:00, 938.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.47 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 63.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38550 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.95 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38556 ...Processing shard 38557 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2070.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1408.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.46 examples/s]:00<00:00, 2137.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]:00<00:00, 1258.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.70 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.70 examples/s]:00<00:00, 1240.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 581.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.48 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.74 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38573 ...Processing shard 38574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 565.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 433.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.83 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.96 examples/s]:00<00:00, 751.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.74 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2436.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1620.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 71.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 54.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.58 examples/s]:00<00:00, 2224.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.97 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1650.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.47 examples/s]:00<00:00, 2079.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1089.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.55 examples/s] \n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.37 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 68.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 69.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.98 examples/s]:00<00:00, 1813.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.55 examples/s]:00<00:00, 2031.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.38 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]:00<00:00, 1238.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.90 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.90 examples/s]:00<00:00, 575.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.44 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.11 examples/s]:00<00:00, 680.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 385.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]:00<00:00, 424.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.87 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 180.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 467.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.70 examples/s]:00<00:00, 517.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.86 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 66.28 examples/s]:00<00:00, 621.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 64.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 305.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 66.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.47 examples/s]:00<00:00, 512.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 295.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 520.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.28 examples/s]:00<00:00, 488.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.78 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.84 examples/s]:00<00:00, 1109.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 341.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 221.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 448.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.25 examples/s]:00<00:00, 1557.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 601.19 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1135.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38631 ...\n",
      "Processing shard 38632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.30 examples/s]:00<00:00, 889.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 675.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.92 examples/s]:00<00:00, 1981.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.14 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 578.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 47.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.13 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 67.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.17 examples/s]:00<00:00, 1301.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.99 examples/s]:00<00:00, 1139.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 859.84 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.93 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 620.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]:00<00:00, 444.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.50 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.92 examples/s]:00<00:00, 558.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 232.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]:00<00:00, 1076.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.36 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.30 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.10 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 587.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.12 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 62.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.80 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.42 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 878.16 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 647.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.96 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.83 examples/s]:00<00:00, 1397.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 957.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 57.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.71 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.70 examples/s]:00<00:00, 1906.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.59 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 56.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2480.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.77 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 64.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1450.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1749.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2569.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 889.48 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.73 examples/s]:00<00:00, 851.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.58 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1364.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 586.42 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1565.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1734.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.06 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.86 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1787.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2463.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.23 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.40 examples/s]:00<00:00, 1202.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 934.88 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1322.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38811 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.21 examples/s]:00<00:00, 1155.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 850.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1659.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1341.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1042.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1892.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.87 examples/s]:00<00:00, 853.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:04,  1.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.07 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.31 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 544.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38835 ...Processing shard 38836 ...\n",
      "\n",
      "Processing shard 38837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38844 ...\n",
      "Processing shard 38845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 101.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 122.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1260.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1719.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<00:00, 2458.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.92 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.06 examples/s]:00<00:00, 1496.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1139.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2063.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1717.02 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1608.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2462.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 145.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38869 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2542.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2103.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1726.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.30 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.86 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.25 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1031.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 914.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.32 examples/s]:00<00:00, 1461.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1131.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 612.39 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 645.35 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1274.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.81 examples/s]:00<00:00, 979.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 768.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2477.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 29.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.32 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2117.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.22 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1578.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38930 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1647.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2426.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1426.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38936 ...\n",
      "Processing shard 38937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.99 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.25 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.26 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.48 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1763.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2399.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.08 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1765.03 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1846.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.12 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 38974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2111.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.12 examples/s]:00<00:00, 904.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.74 examples/s]:00<00:00, 2272.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.47 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:03<00:01,  2.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.80 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.52 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1358.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 38999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2138.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1583.69 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.08 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1390.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1495.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.73 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1047.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39011 ...\n",
      "Processing shard 39012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1800.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1776.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.16 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.92 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1636.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.95 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 17.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.01 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1830.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 25.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1472.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 27.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1443.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39051 ...\n",
      "Processing shard 39052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1474.73 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39054 ...\n",
      "Processing shard 39055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 842.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.42 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.92 examples/s]:00<00:00, 1605.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.66 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2137.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39062 ...Processing shard 39063 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1656.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 22.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 741.04 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 532.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 14.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1208.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2064.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1309.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.63 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.27 examples/s]:00<00:00, 2317.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.53 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.43 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1668.45 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.19 examples/s]:00<00:00, 770.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 591.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 57.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.63 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  7.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1585.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1454.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.62 examples/s]:00<00:00, 2104.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1058.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1665.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1490.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.42 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.46 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2142.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]:00<00:00, 1483.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1036.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1346.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.23 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.17 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39120 ...Processing shard 39121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.45 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.06 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 535.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1345.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.69 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.02 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 670.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.45 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.41 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.28 examples/s]:00<00:00, 891.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2035.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2038.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1517.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]:00<00:00, 1892.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.27 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.06 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 860.17 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]:00<00:00, 2525.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1501.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 607.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.06 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 624.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.01 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.46 examples/s]:00<00:00, 734.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 349.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 570.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.12 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 314.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 333.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 394.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]:00<00:00, 453.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 294.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 253.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 477.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.26 examples/s]:00<00:00, 540.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 402.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 479.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39174 ...\n",
      "Processing shard 39175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39177 ...Processing shard 39176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.94 examples/s]:00<00:00, 1449.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.20 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]:00<00:00, 1752.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.16 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.49 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1119.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1403.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.96 examples/s]:00<00:00, 1870.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]:00<00:00, 949.49 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 665.19 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 598.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39197 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 801.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.02 examples/s]:00<00:00, 1842.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.07 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 971.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 949.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 631.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.42 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1127.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2005.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 869.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39219 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1173.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.97 examples/s]:00<00:00, 1232.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 562.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 56.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.83 examples/s]:00<00:00, 1136.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.90 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1180.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1016.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 732.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 473.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2492.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.18 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1161.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1567.51 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 33.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 909.89 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.59 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1461.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.05 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.95 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39247 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.09 examples/s]:00<00:00, 2455.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1441.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1122.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1053.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1716.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39254 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1747.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.25 examples/s]:00<00:00, 2456.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.90 examples/s]:00<00:00, 2388.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 993.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1020.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 576.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.38 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.05 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 516.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 344.40 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 331.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.48 examples/s]:00<00:00, 689.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1105.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.98 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.58 examples/s]:00<00:00, 634.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 469.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 332.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.63 examples/s]:00<00:00, 797.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 390.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 403.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 608.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.24 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 984.73 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39283 ...Processing shard 39284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1655.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2148.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1510.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1617.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.84 examples/s]:00<00:00, 1547.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.99 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1486.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1788.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.72 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.26 examples/s]:00<00:00, 1341.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 696.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.21 examples/s]:00<00:00, 895.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.96 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 504.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 499.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 55.65 examples/s]:00<00:00, 508.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 343.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 365.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 261.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 260.40 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.55 examples/s]:00<00:00, 443.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 299.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39322 ...Processing shard 39323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 823.45 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 2192.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2071.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2061.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1043.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2087.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39335 ...\n",
      "Processing shard 39336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2080.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.43 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 483.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1644.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 786.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 884.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.46 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 792.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.48 examples/s]:00<00:00, 1007.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.47 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.79 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.89 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1140.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.21 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.53 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.80 examples/s]:00<00:00, 961.38 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 633.51 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 415.17 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.78 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.59 examples/s]:00<00:00, 2121.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1015.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 445.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1724.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1531.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2264.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.43 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]:00<00:00, 1522.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 968.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.66 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 940.76 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.23 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 751.07 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 500.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 511.08 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1141.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1056.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 933.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 604.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 41.83 examples/s]:00<00:00, 1382.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.18 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 699.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1838.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.70 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 492.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 31.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39496 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 567.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 193.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.92 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.78 examples/s]:00<00:00, 875.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 644.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1128.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2195.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 958.60 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2479.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 999.25 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1035.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 318.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 669.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 954.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.83 examples/s]:00<00:00, 1829.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1026.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 943.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.97 examples/s]:00<00:00, 2395.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39526 ...Processing shard 39527 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1887.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.75 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2276.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1084.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.44 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 32.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39534 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.19 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.83 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 43.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.70 examples/s]:00<00:00, 1845.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.78 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.54 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1189.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39546 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2023.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]:00<00:00, 1603.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]:00<00:00, 1315.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.65 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.63 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 34.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1132.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]:00<00:00, 1525.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2047.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2067.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.41 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2065.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1388.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.97 examples/s]:00<00:00, 2540.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.82 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]:00<00:00, 853.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 594.23 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.03 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.76 examples/s]:00<00:00, 791.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 538.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.48 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 371.12 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.67 examples/s]:00<00:00, 599.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 249.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39574 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 274.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.01 examples/s]:00<00:00, 476.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.24 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1539.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 858.20 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 453.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 306.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.08 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 417.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.48 examples/s]:00<00:00, 432.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 223.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.99 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 543.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1834.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1610.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.68 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 12.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39596 ...Processing shard 39597 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1029.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 930.37 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 950.92 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 413.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 692.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.11 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.42 examples/s]:00<00:00, 1770.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]:00<00:00, 798.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.50 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.11 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.82 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.77 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.44 examples/s]:00<00:00, 1155.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.11 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.64 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.91 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.66 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 677.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.84 examples/s]:00<00:00, 896.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.98 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.90 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.25 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 791.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.07 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.66 examples/s]:00<00:00, 1532.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 837.43 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.34 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 960.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 478.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.32 examples/s]:00<00:00, 1473.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.05 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1160.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1366.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 42.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 945.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1360.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.50 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.24 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1447.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1156.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 882.60 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1143.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.78 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.01 examples/s]:00<00:00, 997.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.94 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1619.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2083.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]:00<00:00, 1168.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 461.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1560.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1010.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.82 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 868.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 790.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 778.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 494.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.62 examples/s]:00<00:00, 1370.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.91 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.92 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.41 examples/s]:00<00:00, 604.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.22 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.95 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 439.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 304.16 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.30 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 637.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 444.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.00 examples/s]:00<00:00, 609.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 881.24 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]:00<00:00, 1169.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.66 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 666.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 575.12 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 465.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.13 examples/s] \n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.65 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.95 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1368.65 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 29.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39686 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.62 examples/s]:00<00:00, 1695.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1181.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1473.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.20 examples/s]:00<00:00, 1772.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 891.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 935.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 830.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.06 examples/s]:00<00:00, 1356.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 817.62 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 537.26 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 486.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 503.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.76 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2007.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1414.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.54 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00, 19.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]:00<00:00, 1622.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1228.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.45 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.67 examples/s]:00<00:00, 993.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 683.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 877.51 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 969.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 369.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.22 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]:00<00:00, 631.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 832.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.39 examples/s]]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 35.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]:00<00:00, 1510.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.68 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.40 examples/s]:00<00:00, 1057.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 738.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.76 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 411.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 988.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.48 examples/s]]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 466.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 556.85 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39725 ...Processing shard 39726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1313.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 979.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 752.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.93 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.42 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.50 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.46 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.58 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.28 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.44 examples/s]:00<00:00, 732.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.00 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1054.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1730.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1449.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2357.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1183.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39743 ...\n",
      "Processing shard 39744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.74 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1663.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.25 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.36 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 40.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.37 examples/s]:00<00:00, 1896.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.32 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 828.68 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.75 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.33 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 588.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.57 examples/s]:00<00:00, 922.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 610.24 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.70 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.47 examples/s]:00<00:00, 1079.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.69 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.77 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.12 examples/s]:00<00:00, 1233.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.87 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1051.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.49 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39769 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.28 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 766.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.25 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.68 examples/s]:00<00:00, 2144.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.51 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.33 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 44.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1000.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.42 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.83 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1117.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.35 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.95 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.75 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.39 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1296.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.38 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.20 examples/s]:00<00:00, 2449.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 986.12 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.62 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1080.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.83 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 460.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]:00<00:00, 583.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.72 examples/s]:00<00:00, 461.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 522.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 243.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 242.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 220.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.28 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39889 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 690.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.57 examples/s]:00<00:00, 837.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 481.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 405.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39896 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 351.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 395.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 320.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.51 examples/s]:00<00:00, 790.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2474.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1675.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1223.66 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1817.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2051.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1325.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39909 ...Processing shard 39910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1206.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 707.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.83 examples/s]:00<00:00, 2510.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.79 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 475.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 480.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 39922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.28 examples/s]:00<00:00, 533.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.34 examples/s]:00<00:00, 609.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 258.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 255.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.90 examples/s]:00<00:00, 734.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 407.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.31 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.70 examples/s]:00<00:00, 379.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.51 examples/s]:00<00:00, 463.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 420.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 241.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 166.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 205.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.37 examples/s]:00<00:00, 418.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 307.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39937 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 510.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 214.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 515.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 449.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 354.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 524.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 653.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.90 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.64 examples/s]:00<00:00, 2311.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.98 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 655.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1577.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.28 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1316.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 662.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1286.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1044.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1038.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.39 examples/s]:00<00:00, 931.79 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 617.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 485.58 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 501.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.71 examples/s]:00<00:00, 928.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 652.28 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.22 examples/s]:00<00:00, 522.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.40 examples/s]:00<00:00, 1031.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 599.40 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 572.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 279.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 40.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 558.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 288.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.63 examples/s]:00<00:00, 411.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.26 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 292.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.99 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 276.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 646.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.67 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.64 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 34.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 462.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39988 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1324.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.37 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.77 examples/s]:00<00:00, 2416.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.64 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.31 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39995 ...Processing shard 39996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2016.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1467.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 39999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2318.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1217.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2450.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1712.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1434.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1045.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.37 examples/s]:00<00:00, 2522.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.79 examples/s]:00<00:00, 1143.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.66 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.46 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.25 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 427.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 423.94 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.49 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.40 examples/s]:00<00:00, 426.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 300.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 194.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 199.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 363.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 547.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 233.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 250.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 207.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 321.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.56 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.63 examples/s]:00<00:00, 541.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.77 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 432.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.82 examples/s]:00<00:00, 508.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 350.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 446.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 290.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 440.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 523.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 36.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 329.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.28 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.80 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.94 examples/s]:00<00:00, 1486.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 870.83 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.63 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.17 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 437.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 384.19 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 324.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.54 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.60 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1028.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 443.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 472.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 528.99 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 796.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 289.75 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.21 examples/s]:00<00:00, 1182.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.39 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.80 examples/s]:00<00:00, 557.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.75 examples/s]:00<00:00, 585.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 347.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 490.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 399.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 30.70 examples/s]:00<00:00, 948.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 706.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.01 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 464.82 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 456.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 348.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 330.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 357.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.18 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 32.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.71 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.60 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1088.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.86 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 31.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.26 examples/s]:00<00:00, 2171.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.75 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.13 examples/s]:00<00:00, 768.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 910.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 566.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]:00<00:00, 973.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.44 examples/s]:00<00:00, 852.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.50 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 927.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 509.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 603.92 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.95 examples/s]:00<00:00, 935.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 519.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.55 examples/s]:00<00:00, 1099.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.02 examples/s]:00<00:00, 1115.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.08 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 650.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 574.27 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 400.03 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 848.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 526.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 941.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 391.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 426.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 797.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2408.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.22 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.42 examples/s]:00<00:00, 1639.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 924.15 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1478.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.46 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1431.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1219.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.77 examples/s]:00<00:00, 1030.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 784.81 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.19 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1212.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.35 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1006.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.15 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 606.68 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1138.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 780.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 613.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 54.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 641.55 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40129 ...Processing shard 40130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1673.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.04 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.77 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 956.68 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 507.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.52 examples/s]:00<00:00, 1034.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 564.37 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 551.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 866.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 808.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40140 ...\n",
      "Processing shard 40141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.76 examples/s]:00<00:00, 2118.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 491.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1499.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1021.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1055.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.23 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.73 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.86 examples/s]:00<00:00, 727.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 529.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 398.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 530.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.33 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 322.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 626.74 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40150 ...Processing shard 40151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 619.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 346.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.92 examples/s]:00<00:00, 605.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 463.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 627.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 356.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 389.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 374.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 482.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 257.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.98 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.05 examples/s]:00<00:00, 517.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.17 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 285.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 254.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 523.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 618.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 327.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 310.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 229.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 303.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 216.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.77 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 284.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 315.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 323.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 422.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 195.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 495.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 173.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 488.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 316.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 734.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 251.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.88 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1166.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 660.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 46.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.06 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 988.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1572.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.60 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1677.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.25 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1352.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 938.67 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1880.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.26 examples/s]:00<00:00, 2442.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.66 examples/s]:00<00:00, 829.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 590.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.25 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1807.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2076.85 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1192.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.33 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1704.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 759.15 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 609.52 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.63 examples/s]:00<00:00, 1253.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 623.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 539.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 361.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 362.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.49 examples/s]:00<00:00, 635.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 336.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 312.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 476.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 339.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 552.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 498.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 353.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 418.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 593.18 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 585.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 377.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.89 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1003.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1661.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1115.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40308 ...Processing shard 40307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1493.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.53 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 885.83 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.04 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 42.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.28 examples/s]:00<00:00, 1724.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.41 examples/s]:00<00:00, 2485.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1432.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.10 examples/s]:00<00:00, 1277.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1335.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.78 examples/s]:00<00:00, 2111.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.26 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 52.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.52 examples/s]:00<00:00, 2185.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.67 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1542.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.93 examples/s]:00<00:00, 1401.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.13 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.63 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.27 examples/s]:00<00:00, 2166.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1174.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1069.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.36 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 487.61 examples/s]]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 629.80 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.34 examples/s]:00<00:00, 1114.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1007.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.23 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1286.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 753.03 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 51.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.15 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2062.10 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1075.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 960.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 918.37 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40350 ...Processing shard 40351 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.16 examples/s]:00<00:00, 2014.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.00 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 788.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1489.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 975.97 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.86 examples/s]:00<00:00, 1053.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.63 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 764.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.38 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.54 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.46 examples/s]:00<00:00, 2504.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1062.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.32 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.82 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 442.60 examples/s]]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 50.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 419.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 340.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 760.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1411.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2068.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.45 examples/s]:00<00:00, 2427.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 710.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.09 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 602.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.84 examples/s]:00<00:00, 2185.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2220.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 770.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 876.59 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.29 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 45.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.64 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 946.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.40 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.57 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1509.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 987.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2098.43 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2050.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 928.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 913.00 examples/s] \n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 605.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.14 examples/s]:00<00:00, 1263.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 632.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 45.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 555.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 455.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 493.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 404.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 48.19 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.41 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.02 examples/s]:00<00:00, 903.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1167.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.57 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.59 examples/s]:00<00:00, 865.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 531.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 518.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1063.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.02 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.70 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1861.65 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1187.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]:00<00:00, 1485.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 864.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.65 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 829.08 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 547.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 33.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1152.70 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.87 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 49.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.29 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.54 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.12 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 651.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.28 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.18 examples/s]:00<00:00, 1234.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.13 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1708.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1781.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.59 examples/s]:00<00:00, 1490.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1017.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.21 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 811.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 127.38 examples/s]00<00:00, 944.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 48.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.34 examples/s]:00<00:00, 818.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 405.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 47.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 937.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 573.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.21 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.42 examples/s]:00<00:00, 970.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 268.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 737.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.55 examples/s]:00<00:00, 896.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 776.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 806.08 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 803.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 622.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 549.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.53 examples/s]:00<00:00, 1128.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 642.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 525.40 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 474.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 851.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 421.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 450.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 277.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 286.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 270.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 213.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 234.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.27 examples/s]:00<00:00, 634.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.49 examples/s]:00<00:00, 777.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 367.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 375.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 313.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 359.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 366.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 669.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 383.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.09 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 41.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40461 ...Processing shard 40462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 373.72 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1255.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.38 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.26 examples/s]:00<00:00, 850.79 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.20 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 414.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 541.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40468 ...Processing shard 40469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 126.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1671.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1603.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.49 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 793.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1024.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 83.04 examples/s]:00<00:00, 1090.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.04 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 133.08 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 611.93 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 560.31 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 922.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 406.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 634.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 368.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 379.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 311.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 132.81 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1046.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.60 examples/s]:00<00:00, 724.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 360.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.88 examples/s]00<00:00, 581.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 47.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 392.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 388.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 412.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 115.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.57 examples/s]:00<00:00, 359.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 231.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 240.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 219.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 294.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 186.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 508.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 211.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 364.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 237.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 266.21 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 96.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.02 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.87 examples/s]:00<00:00, 527.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.50 examples/s]00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 239.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 184.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 236.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 338.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 188.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 141.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 126.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.59 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 58.72 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 58.14 examples/s]:00<00:00, 448.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 434.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 117.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.73 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 210.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.96 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 386.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 441.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.58 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 291.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 203.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 409.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.28 examples/s]:00<00:00, 365.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 179.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 73.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 170.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 458.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 196.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 155.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 192.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 43.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 202.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 160.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 447.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 457.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 533.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 387.88 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 46.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 273.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 536.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.45 examples/s]:00<00:00, 671.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 118.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 128.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40525 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 906.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1529.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1194.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 554.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1257.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 887.02 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.62 examples/s]:00<00:00, 1316.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.83 examples/s] IOPub message rate exceeded.\n",
      "The Jupyter server will temporarily stop sending output\n",
      "to the client in order to avoid crashing it.\n",
      "To change this limit, set the config variable\n",
      "`--ServerApp.iopub_msg_rate_limit`.\n",
      "\n",
      "Current values:\n",
      "ServerApp.iopub_msg_rate_limit=1000.0 (msgs/sec)\n",
      "ServerApp.rate_limit_window=3.0 (secs)\n",
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 748.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.28 examples/s]:00<00:00, 2165.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1397.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.33 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.04 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1720.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1114.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2321.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2191.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2235.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.90 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 36.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1327.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 25.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1086.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 897.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 14.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.04 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  3.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2423.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1469.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 95.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.80 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2046.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2224.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]:00<00:00, 2445.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1613.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.04 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 129.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1151.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 111.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1311.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 24.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2551.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1573.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 820.18 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1123.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.37 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 21.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1108.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 694.33 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1112.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 886.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2538.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]:00<00:00, 2094.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1294.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 804.02 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.88 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 816.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.80 examples/s]:00<00:00, 2367.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1428.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1731.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2375.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 615.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2308.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1246.20 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  5.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.05 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.19 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1211.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1543.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.41 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 799.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.00 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 654.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 853.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2396.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1534.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  4.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40713 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 29.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 902.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2041.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:04<00:00,  1.97 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.15 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1810.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.93 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:01<00:11,  1.49s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40730 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2053.24 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1847.71 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2208.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.49 examples/s]:00<00:00, 2473.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 18.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.19 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.69 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1330.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1818.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1905.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1468.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1823.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:12,  1.58s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1412.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.26 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 836.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.79 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1597.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 995.69 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.26 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2203.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1383.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40787 ...\n",
      "Processing shard 40788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1797.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 687.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1657.68 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.30 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1790.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  4.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1748.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.06 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.44 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.67 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1215.00 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.05 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2043.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1639.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.27 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.84 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2330.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.68 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.29 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 774.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 23.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  3.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 838.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1796.45 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1624.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1912.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.77 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1737.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.81 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1096.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.65 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.49 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40853 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1963.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1037.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 964.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]:00<00:00, 1446.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.38 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1319.47 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1645.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.74 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.62 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 19.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 807.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.60 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1899.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.31 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1452.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 60.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.16 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.14 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.35 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1094.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40886 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.04 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2027.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 985.32 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 557.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 923.95 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.64 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1137.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40898 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1535.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40907 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 676.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1512.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1398.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1163.07 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.54 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40917 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2481.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1154.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1299.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1526.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1439.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 835.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1175.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2442.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1118.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 894.39 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.44 examples/s]:00<00:00, 825.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 580.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.65 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.73 examples/s]:00<00:00, 1500.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1034.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1052.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 920.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1019.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1448.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.19 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.78 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1240.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.69 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.89 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1591.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1629.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.32 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.96 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 715.93 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.14 examples/s]:00<00:00, 2391.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1407.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 162.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1945.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1835.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  3.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1679.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 153.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1633.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 171.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2057.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 139.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1437.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 688.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 40988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 595.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40991 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1520.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.97 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.97 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1377.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.14 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 40999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1230.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41003 ...Processing shard 41002 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41004 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2360.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.70 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.06 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1476.12 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1065.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 818.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1146.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 992.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00, 10.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 561.98 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 997.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41014 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 892.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 640.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 506.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1351.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 813.99 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1110.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 16.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1018.78 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1191.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1185.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 794.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1200.62 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.59 examples/s]:00<00:00, 897.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.57 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41035 ...\n",
      "Processing shard 41036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 901.72 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1098.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1290.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1525.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1481.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]:00<00:00, 828.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41048 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.99 examples/s]:00<00:00, 1889.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.38 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1649.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1462.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41050 ...\n",
      "Processing shard 41051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1858.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.92 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1222.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1097.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 996.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1721.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 18.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 735.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1598.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 703.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1326.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1184.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2255.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 855.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.78 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 797.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 740.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 643.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.45 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.04 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.64 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.41 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 28.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1703.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.77 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1727.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.79 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1164.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.99 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1637.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.05 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 849.22 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1732.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.03 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.50 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 12.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.98 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.03 examples/s]:00<?, ? examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:04<00:03,  1.00s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1939.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2405.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1906.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1715.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.89 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.55 examples/s]:00<00:00, 2296.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1433.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2395.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1695.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2022.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.92 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1500.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1347.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1682.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1148.43 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41147 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 721.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1606.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2116.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1259.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1793.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 630.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 582.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.45 examples/s]:00<00:00, 1454.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1027.43 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1250.75 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 13.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1333.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.53 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41162 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1365.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  8.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1841.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1736.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1813.10 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.48 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 9/9 [00:00<00:00, 1299.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 967.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:02<00:00,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.19 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.93 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 787.89 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2424.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1350.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.06 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.45 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.20 examples/s]:00<00:00, 1688.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.80 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1427.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2072.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1340.46 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1477.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.97 examples/s]:00<00:00, 2439.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1465.74 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2403.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.29 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.95 examples/s] \n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1376.74 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 19.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1077.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1081.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41194 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1965.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2030.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.81 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 717.94 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 16.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1168.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1149.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 18.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1209.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1973.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1104.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1907.27 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 921.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 742.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1371.78 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1392.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1516.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.27 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.52 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2415.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1207.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1623.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1676.01 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1983.44 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1714.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.72 examples/s]:00<00:00, 2418.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1391.76 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1759.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.73 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  9.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1789.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1867.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1611.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 730.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1901.99 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.01 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2361.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1497.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1059.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 962.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2049.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1952.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.28 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1707.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 704.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.85 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 18.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.53 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1308.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2509.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1757.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1237.62 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.39 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1236.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1221.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.69 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 17.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]:00<00:00, 2040.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1267.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1514.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 785.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1643.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.91 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.08 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.53 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.02 examples/s]:00<00:00, 1522.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1429.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41320 ...\n",
      "Processing shard 41321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.18 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2307.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1815.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 705.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.91 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1320.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 974.99 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.36 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 68.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2503.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.64 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1827.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 21.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.75 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1566.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.42 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2514.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:05,  1.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1829.35 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2002.90 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 739.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.76 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2540.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2454.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.38 examples/s]:00<00:00, 2341.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1568.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.79 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 20.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.84 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.85 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.83 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1851.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1142.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1417.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41370 ...Processing shard 41371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.93 examples/s]:00<00:00, 840.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 659.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1463.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1129.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1627.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2403.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1197.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 844.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.68 examples/s]:00<00:00, 2492.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1362.43 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.93 examples/s]:00<00:00, 1406.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1109.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1014.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 755.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41388 ...Processing shard 41389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1095.60 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 61.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 39.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.00 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 29.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2345.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1040.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1738.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2052.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41403 ...\n",
      "Processing shard 41404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2013.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.83 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1648.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2158.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2019.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1505.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1413.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2004.93 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 21.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]:00<00:00, 2416.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.85 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1798.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41426 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.50 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1306.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1202.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41428 ...\n",
      "Processing shard 41429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.73 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.11 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 15.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1635.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41434 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2096.57 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]:00<00:00, 2440.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.03 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 30.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 684.25 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1855.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1722.74 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  7.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1931.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1332.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1231.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41450 ...\n",
      "Processing shard 41451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1540.01 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  4.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.73 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 973.31 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 10.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1745.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]:00<00:00, 2370.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1760.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1226.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]:00<00:00, 2292.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1369.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1282.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 757.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 26.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2113.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1072.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 942.59 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.23 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  4.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1193.79 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1609.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1342.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1874.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 648.29 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.49 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 42.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1769.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1733.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1275.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1589.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1276.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 789.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.81 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1188.11 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1896.92 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  3.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:03<00:00,  2.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:03,  1.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1750.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1653.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1455.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41511 ...\n",
      "Processing shard 41512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 56.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1508.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:06<00:00,  1.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1670.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1594.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1947.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2059.85 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 152.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 879.19 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2094.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 18.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.99 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1251.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.15 examples/s]:00<00:00, 1679.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1155.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]:00<00:00, 2414.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1257.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 19.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 61.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1744.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.77 examples/s]:00<00:00, 2408.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.24 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.77 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 11.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2026.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.86 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]:00<?, ? examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2093.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1159.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1498.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41545 ...\n",
      "Processing shard 41546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1774.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1533.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.17 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2066.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 731.64 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.95 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 19.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.03 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 23.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1386.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41558 ...\n",
      "Processing shard 41559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1224.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.84 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 26.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 691.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 20.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:08<00:00,  1.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2012.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2006.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1824.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2514.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2045.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 767.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.96 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.16 examples/s]:00<?, ? examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1595.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1618.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1885.27 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1586.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1844.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 636.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]:00<00:00, 1472.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.72 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1570.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 926.96 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1256.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:03<00:07,  1.33s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 12.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1713.59 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1602.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1162.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 548.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1678.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1444.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 39.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1754.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1241.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1819.39 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1196.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 71.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2017.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.17 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 616.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1739.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  2.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 727.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1349.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 43.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.21 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1283.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 947.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1492.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1338.56 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:00,  5.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2192.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1791.08 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 625.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1005.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1767.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1812.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 711.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00, 11.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 939.40 examples/s] \n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 12.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 890.01 examples/s] \n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.79 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2384.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1920.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  8.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.15 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1261.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2465.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1612.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41651 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1615.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41652 ...\n",
      "Processing shard 41653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1574.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 720.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 638.13 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.44 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1884.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1768.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1863.22 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1938.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 722.91 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 14.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 11.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1354.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1852.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1933.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1903.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1336.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 989.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41685 ...\n",
      "Processing shard 41686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1975.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1232.61 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1243.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:06,  1.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.20 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1587.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1387.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1915.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1873.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1805.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1882.73 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1752.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  7.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.82 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:07<00:00,  1.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1686.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1705.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1295.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1928.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1729.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1482.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1971.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.44 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1245.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 826.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1590.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1464.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41722 ...\n",
      "Processing shard 41723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:04<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1837.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1416.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 15.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1957.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 736.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.13 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1911.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.08 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  3.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.90 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1488.57 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:01<00:01,  2.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 732.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]:00<00:00, 1511.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1172.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  3.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1348.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1085.70 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1960.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 553.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2225.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1854.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:02<00:02,  1.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1626.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1278.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1755.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1872.36 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 725.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 658.75 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1786.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 679.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1438.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.17 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1106.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1303.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1710.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1458.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1265.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1301.01 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.28 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 12.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:01<00:03,  1.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1384.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 700.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1125.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1890.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1287.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.27 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:07<00:00,  1.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2307.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 709.10 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1669.04 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.66 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1284.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.35 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1902.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1258.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.69 examples/s]:00<00:00, 2465.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1375.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1785.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 758.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1182.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1518.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1485.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1487.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1254.94 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 724.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1263.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.97 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.90 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1780.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1981.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1886.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:03,  1.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.51 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1321.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1374.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1067.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 972.15 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1843.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2387.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.78 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1929.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1136.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1425.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1877.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1558.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1943.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1527.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1706.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1410.01 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:02<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2140.56 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1494.82 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:01,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1658.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41849 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1329.74 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1868.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1605.37 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1723.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.54 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.69 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1060.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1066.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 822.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 661.21 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1893.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1281.40 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 729.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.76 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:01,  4.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1925.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  8.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1853.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1564.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1821.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1857.26 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1919.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:01<00:02,  2.10 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 53.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 810.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1910.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1664.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2003.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 698.07 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 919.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41889 ...\n",
      "Processing shard 41890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 812.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 977.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1909.20 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 779.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1269.63 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 955.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1300.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 686.24 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 11.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1339.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1951.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1914.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1942.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 728.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.93 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1742.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1456.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 15.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 821.21 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:03,  2.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 177.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 712.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1976.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1380.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1681.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.68 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.91 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1291.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1950.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1900.65 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 777.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1692.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1859.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1898.93 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1936.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1177.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1700.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2528.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1538.19 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1799.53 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:01,  1.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1968.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]:00<00:00, 2207.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41942 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1576.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 944.40 examples/s] \n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41944 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1894.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  3.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.48 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  9.11 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1061.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.13 examples/s]:00<00:00, 884.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 678.91 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  6.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1616.51 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 16.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1701.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.78 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 35.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2060.07 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.63 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:01,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.16 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.59 examples/s]:00<00:00, 1555.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 953.20 examples/s] \n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1666.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 22.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  2.06 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1962.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1926.94 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 16.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 38.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1580.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 925.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1921.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1876.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:01,  2.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1264.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.17 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1935.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1150.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1220.30 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1389.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1930.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]:00<00:00, 1476.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1022.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1176.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1334.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 635.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1990.34 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 16.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 66.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1758.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.93 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 795.61 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 55.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1090.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1743.83 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:01<00:10,  1.36s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 861.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 664.56 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2326.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1828.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2293.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1904.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 41998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1203.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 41999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 131.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1809.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2405.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1941.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.94 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 59.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 181.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1199.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1883.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.85 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.68 examples/s]:00<00:00, 2453.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1419.07 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 10.31 examples/s]:00<00:00, 1196.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 905.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1875.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1562.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 697.69 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1507.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.61 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.44 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1279.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 862.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1922.03 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 58.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1318.55 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 64.80 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 84.50 examples/s]:00<00:00, 811.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 592.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.03 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.76 examples/s]:00<00:00, 1414.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1001.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1394.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1683.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 48.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2031.14 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 53.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  4.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1480.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1511.58 examples/s]\n",
      "Map:  11%|█         | 1/9 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1186.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1634.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1353.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 16.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2039.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1475.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1238.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.48 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00,  8.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1970.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1917.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 673.32 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1862.39 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.94 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1698.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2001.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 809.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  9.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1964.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  8.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1972.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1728.18 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:01<00:00,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1825.11 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 672.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1337.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 19.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.22 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  8.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1312.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1107.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 982.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 718.89 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1891.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.42 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 34.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.02 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 32.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2028.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.64 examples/s]:00<00:00, 2511.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1457.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  22%|██▏       | 2/9 [00:00<00:02,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 756.93 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 13.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2025.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1881.42 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1361.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2111.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1779.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42085 ...\n",
      "Processing shard 42086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 771.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 783.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1288.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  2.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 701.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 13.65 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2024.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.40 examples/s]:00<00:00, 2463.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1435.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1165.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 22.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1597.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 614.57 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1009.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 571.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42099 ...Processing shard 42100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 42101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1641.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 875.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 781.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1984.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2018.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  6.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.60 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1395.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 746.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1561.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1977.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1816.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1532.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 733.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1213.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1956.81 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:01<00:01,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 52.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 693.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1401.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2088.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.27 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:01<00:01,  2.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 17.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1764.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.00 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.92 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1584.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1985.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1662.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1978.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1559.16 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1856.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1503.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1784.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 545.46 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1298.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 991.07 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42133 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 708.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1537.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1470.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1842.84 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 16.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2034.86 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  5.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 745.43 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.18 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1684.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1099.81 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1252.90 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1820.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1802.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1937.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1262.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.63 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1865.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2056.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1711.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1814.84 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1918.42 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1888.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1949.53 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.15 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.22 examples/s]:00<00:00, 2357.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1446.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.75 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.49 examples/s]:00<00:00, 1657.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.62 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 25.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 10.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1091.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1120.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1551.15 examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1932.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 714.51 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1982.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1292.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 888.46 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1170.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42166 ...Processing shard 42167 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2009.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1654.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1870.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1969.16 examples/s]\n",
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1548.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1225.69 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 14.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1833.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1974.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.36 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.60 examples/s]:00<00:00, 2404.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1442.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1889.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00,  7.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 716.70 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.22 examples/s]:00<00:00, 2457.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1685.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2021.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1913.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1924.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1305.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00,  8.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1771.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1966.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2010.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1980.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.22 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1822.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2492.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1569.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1234.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1989.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.71 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1845.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1247.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 865.38 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 856.78 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 13.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:01,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1071.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1831.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1778.34 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 951.21 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1396.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1289.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42207 ...\n",
      "Processing shard 42208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1126.19 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 15.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1399.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2466.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.02 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 814.08 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:01,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1694.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1302.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 34.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1607.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2040.47 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1866.81 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 28.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 21.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2037.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.97 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.17 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 34.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1923.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 743.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 663.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.76 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1979.28 examples/s]\n",
      "Map:  22%|██▏       | 2/9 [00:00<00:00, 10.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2092.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.45 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1379.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2538.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2011.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  7.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1995.07 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:02<00:00,  3.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1996.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1808.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1999.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 28.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1986.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 681.88 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.04 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2081.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1331.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1133.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1344.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1420.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1121.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 42.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1328.99 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 42.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.95 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2015.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2180.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1804.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.12 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.28 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1546.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1422.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1860.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1552.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 36.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1625.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.52 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 621.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1549.30 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:01<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 40.40 examples/s]:00<?, ? examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:01<00:00,  6.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 762.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 649.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 76.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.23 examples/s]:00<00:00, 837.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 657.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1082.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1277.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 577.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.23 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1642.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 747.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.25 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1581.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1459.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1235.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.58 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 31.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 834.58 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 41.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 763.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 682.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.09 examples/s]:00<00:00, 750.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 839.57 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 454.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  44%|████▍     | 4/9 [00:00<00:00, 26.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 726.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1506.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.40 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1385.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1244.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.65 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1400.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1466.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 75.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.98 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 35.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2522.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1993.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 49.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1801.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 37.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1944.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1592.24 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.82 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 754.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1991.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1652.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 600.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1273.57 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:02<00:00,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.42 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2008.66 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1946.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 57.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 47.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1575.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1270.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1600.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1370.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2042.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1233.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1772.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 44.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1992.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 44.05 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.16 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 55.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1124.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 568.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42291 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 513.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1157.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1848.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 27.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2000.36 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 51.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.90 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 46.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 51.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1871.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1280.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1178.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1032.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42298 ...\n",
      "Processing shard 42299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 85.62 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 34.42 examples/s]:00<00:00, 2545.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1484.18 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s] 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1153.73 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 702.12 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 40.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 41.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2078.67 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 38.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 36.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1895.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 45.09 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.09 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 33.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1504.17 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 37.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1169.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1460.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42306 ...\n",
      "Processing shard 42307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 105.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1363.41 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 28.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.56 examples/s]00<00:00, 2551.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1555.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2148.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1954.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.42 examples/s]:00<00:00, 2274.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1987.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1953.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1571.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1100.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 24.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1204.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1111.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2406.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2029.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:00<00:00, 37.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 23.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 92.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1554.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 584.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 11.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 72.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.46 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2075.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1879.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1253.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 20.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1850.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.12 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 109.07 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2033.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 30.53 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 107.44 examples/s]00<00:00, 2417.47 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 103.03 examples/s]00<00:00, 1676.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 713.84 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 25.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 695.01 examples/s] \n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 583.30 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 802.33 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 589.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 438.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 452.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 831.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42331 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 436.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 416.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 521.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 65.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1423.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1317.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.54 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1471.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1310.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 81.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 75.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1916.57 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 60.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1297.07 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 77.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 22.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1836.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1382.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 94.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 90.41 examples/s]:00<00:00, 2576.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1479.30 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 69.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2044.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1839.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 17.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1216.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 89.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1557.48 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.06 examples/s]:00<00:00, 1876.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1266.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1496.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1355.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 113.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1640.32 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 102.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1614.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1293.87 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 91.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1697.03 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 100.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1596.88 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.11 examples/s]:00<00:00, 1405.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42354 ...\n",
      "Processing shard 42355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 86.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 62.08 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 854.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1405.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 723.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 815.85 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 719.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 82.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 80.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 54.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1746.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 67.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1214.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 106.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1718.04 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 104.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1249.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1897.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 98.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1550.26 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 74.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 63.70 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 99.74 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 70.72 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 87.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 72.49 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 88.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 93.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 847.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 512.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 497.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 671.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 431.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 298.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 319.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1522.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1285.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 843.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 50.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1959.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:04<00:00,  1.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:02<00:00,  3.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1958.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1934.34 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:05<00:03,  1.20s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1803.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  11%|█         | 1/9 [00:00<00:02,  2.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1651.59 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 23.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 26.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1079.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 39.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1761.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1878.61 examples/s]\n",
      "Map:  44%|████▍     | 4/9 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 29.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1927.14 examples/s]\n",
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1948.02 examples/s]\n",
      "Map:  78%|███████▊  | 7/9 [00:00<00:00, 20.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1967.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 12.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2014.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1940.41 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.33 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1519.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1393.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  33%|███▎      | 3/9 [00:00<00:00, 19.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42390 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.14 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 14.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1524.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 18.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1997.71 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.31 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1687.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1530.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  67%|██████▋   | 6/9 [00:00<00:00, 11.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.73 examples/s]:00<?, ? examples/s]\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1782.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1547.02 examples/s]\n",
      "Map:  89%|████████▉ | 8/9 [00:00<00:00, 22.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1272.80 examples/s]\n",
      "Map:  67%|██████▋   | 6/9 [00:00<00:00,  6.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2020.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.61 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 15.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1961.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1751.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1430.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  56%|█████▌    | 5/9 [00:00<00:00,  6.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1998.77 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 20.56 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 21.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1806.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2451.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1955.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  78%|███████▊  | 7/9 [00:00<00:00,  7.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1811.27 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 11.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.55 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:00<00:00, 12.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1271.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2468.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42407 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1994.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1438.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1988.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1029.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 794.51 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 600.99 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  7.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1317.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1078.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1869.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 19.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 2036.73 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1762.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:00<00:00, 13.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1140.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 919.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42419 ...\n",
      "Processing shard 42420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.80 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:01<00:00,  6.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/9 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1205.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1547.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 555.74 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 506.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 833.53 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1295.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1234.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1849.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 927.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42434 ...\n",
      "Processing shard 42435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1573.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1539.90 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 629.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 992.50 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.28 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:05<00:00,  1.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1735.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1580.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1157.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1415.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.45 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 20.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1236.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1838.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.16 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.83 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1406.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 594.16 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 930.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  56%|█████▌    | 5/9 [00:03<00:02,  1.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1008.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1004.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 865.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 386.37 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 758.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 674.11 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 608.60 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 644.16 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 42.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.56 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 780.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.40 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 20.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2107.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  3.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1908.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.46 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:01<00:12,  1.80s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1488.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.38 examples/s]\n",
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 9/9 [00:03<00:00,  2.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 9/9 [00:00<00:00, 1323.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1536.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42497 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.37 examples/s]:00<00:00, 2205.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1301.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2166.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.09 examples/s]:00<?, ? examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:01<00:04,  1.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1917.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1316.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 923.88 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.52 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.66 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.15 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2194.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.28 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]:00<00:00, 604.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 464.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1245.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1008.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 91.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]:00<00:00, 800.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 624.88 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.28 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1501.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]:00<00:00, 1640.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1103.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1062.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 986.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.74 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.67 examples/s]:00<00:00, 977.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 760.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.40 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.56 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:02<00:02,  1.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1494.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.85 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 610.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 676.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1313.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 743.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1656.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.97 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 118.10 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1565.77 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 34.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 113.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1365.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.25 examples/s]:00<00:00, 2193.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.68 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 52.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1649.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 983.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.21 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.23 examples/s]:00<00:00, 1198.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 826.89 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1328.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1065.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1464.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 586.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1341.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.16 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.39 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1393.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.61 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 790.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1538.28 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 721.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1129.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1595.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]:00<00:00, 1163.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 829.20 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1521.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1253.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.58 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.80 examples/s]:00<00:00, 1344.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 796.68 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.82 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 56.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.27 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 29.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.11 examples/s]:00<00:00, 1533.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1002.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1855.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.10 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 47.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1071.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1189.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.84 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 700.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 534.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 804.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 94.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 605.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2235.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 27.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1536.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 121.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1144.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.67 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1330.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 42.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 110.94 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1852.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 614.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.90 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:02<00:02,  1.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1371.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.63 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 648.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1509.83 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1261.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1626.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 690.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1073.54 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 805.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.63 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 19.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 874.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.84 examples/s]:00<00:00, 1645.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.77 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1171.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.26 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1518.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1363.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1261.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42680 ...\n",
      "Processing shard 42681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1074.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1047.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.22 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  5.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42692 ...\n",
      "Processing shard 42693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1061.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42694 ...\n",
      "Processing shard 42695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.10 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1848.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 988.73 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1516.65 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.44 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:02<00:07,  1.31s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 716.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.61 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1492.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.05 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1455.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1239.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1091.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42723 ...\n",
      "Processing shard 42724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1348.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1402.78 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.65 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 88.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 92.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.48 examples/s]:00<00:00, 2124.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1231.58 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1012.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42733 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1394.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 630.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 436.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1990.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1286.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.28 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1588.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1401.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1603.94 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 562.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42755 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1266.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.52 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.91 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2090.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.22 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1080.73 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.17 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]:00<00:00, 1142.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 843.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1165.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1832.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.36 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  2.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1238.13 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  3.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1030.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 747.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  3.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1361.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1402.02 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1183.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 998.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1216.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42814 ...\n",
      "Processing shard 42815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.72 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 924.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.01 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1531.47 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2077.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1558.13 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.52 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1048.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1108.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1058.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1124.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 832.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.62 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 990.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 746.45 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 836.23 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42847 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1425.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.85 examples/s]:00<00:00, 709.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 502.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]:00<00:00, 1685.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 598.36 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.01 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.53 examples/s]:00<00:00, 2169.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1122.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1043.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 937.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.80 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2186.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.50 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 701.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.13 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1417.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.30 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 677.16 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 553.34 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.70 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1306.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1568.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42881 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1048.38 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 721.37 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 26.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1185.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 691.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1324.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1099.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 761.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.61 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1391.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 644.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42896 ...\n",
      "Processing shard 42897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1595.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.60 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1522.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.29 examples/s]:00<00:00, 1444.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 993.18 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.50 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1541.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.43 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.60 examples/s]:00<00:00, 2043.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.94 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1096.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1227.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.10 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 24.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 614.13 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.71 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.41 examples/s]:00<00:00, 717.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 554.41 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1353.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 736.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 42937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 704.14 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.00 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.88 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.91 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1594.26 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1184.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42953 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1225.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1561.11 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1564.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2224.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.11 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.25 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1527.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 955.53 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 42962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1541.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.75 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.87 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1313.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1493.10 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 19.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 835.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 928.84 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1501.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 910.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 811.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.76 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.36 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  5.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.86 examples/s]:00<00:00, 2093.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.69 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 877.74 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  5.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 42999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.16 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1263.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 589.89 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 853.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43003 ...\n",
      "Processing shard 43004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.28 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 19.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 887.19 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 566.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43010 ...\n",
      "Processing shard 43011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1328.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 890.27 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 944.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 676.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43016 ...\n",
      "Processing shard 43017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 880.16 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1066.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43022 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43024 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]:00<00:00, 1124.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 809.57 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 859.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 726.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.59 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 560.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1340.41 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 866.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 977.84 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1237.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.53 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 24.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1330.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43040 ...\n",
      "Processing shard 43041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.80 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1538.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.65 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.98 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.06 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.55 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.59 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1246.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1066.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]:00<00:00, 2144.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1104.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1361.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.70 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.95 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1594.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2105.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 597.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43074 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 577.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1444.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.39 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 152.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.76 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:03<00:04,  1.17s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1375.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.39 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:03,  1.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 728.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43085 ...\n",
      "Processing shard 43086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 709.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2136.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.40 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1495.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.09 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]:00<00:00, 2082.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.69 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:03<00:02,  1.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1540.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.63 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1050.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.29 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 29.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1502.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2151.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1351.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 897.56 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 767.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1343.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1100.25 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.09 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1215.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 885.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 513.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43142 ...\n",
      "Processing shard 43143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]:00<00:00, 1430.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1023.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1229.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.86 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  5.43 examples/s]:00<00:00, 627.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 462.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1378.68 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 627.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.68 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.89 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.09 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.80 examples/s]:00<00:00, 2100.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1238.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1291.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43170 ...\n",
      "\n",
      "Processing shard 43171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 117.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1397.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 148.35 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2263.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1864.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1486.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1313.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43178 ...\n",
      "Processing shard 43179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 932.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.68 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1272.01 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 23.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1498.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1526.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 644.71 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.17 examples/s]:00<00:00, 1732.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1132.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 850.88 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43202 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1427.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1180.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.56 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 952.22 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  3.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 981.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.03 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 911.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 878.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 943.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.94 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 615.16 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 797.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 734.01 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1001.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.19 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43231 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.30 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.36 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:06<00:00,  1.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1524.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.28 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1456.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 917.04 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43244 ...Processing shard 43243 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1064.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 796.75 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1621.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.53 examples/s]:00<00:00, 2234.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2227.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.31 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1305.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 613.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1614.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 649.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 963.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1649.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:01<00:03,  1.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1348.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1192.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1616.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1621.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1596.61 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:00,  3.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1454.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.68 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1595.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.49 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 727.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.74 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.06 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1588.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1540.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.08 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 539.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.48 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1593.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 974.63 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1479.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  3.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.31 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1656.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1037.71 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1160.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.06 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.79 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 594.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 676.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.66 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1554.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.54 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:04<00:01,  1.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1641.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.04 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 986.05 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 808.62 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1399.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2173.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.54 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1255.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1373.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]:00<00:00, 857.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 690.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 824.78 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]:00<00:00, 814.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 596.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1146.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 634.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1155.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.16 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  1.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1160.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 712.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1226.72 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2191.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.19 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.27 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.06 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 850.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1607.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 147.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1620.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 947.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1180.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1158.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 909.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1848.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 605.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.07 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43383 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.15 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 976.41 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1547.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1291.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1104.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.59 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 734.43 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 580.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.68 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 598.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1868.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 977.47 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 763.28 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1027.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1321.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 959.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 136.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1854.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2208.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2156.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.31 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 142.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.19 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 146.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1486.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2128.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1088.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1105.80 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.19 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.87 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.86 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 782.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 803.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43425 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.21 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1853.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 554.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.21 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43442 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.68 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.86 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  5.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.50 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.98 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1239.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1074.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 23.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 819.80 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.66 examples/s]:00<00:00, 812.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 584.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.67 examples/s]:00<00:00, 1872.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1184.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1143.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.79 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 873.29 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1341.59 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.60 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 618.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.66 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 18.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 708.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 624.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 616.08 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 18.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.32 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.88 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1070.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43501 ...Processing shard 43500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.08 examples/s]:00<00:00, 2168.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1423.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2173.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.03 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.89 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 32.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.34 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.45 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1131.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1610.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 94.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 133.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1628.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1930.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1232.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.65 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 35.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.59 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1606.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2247.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1327.68 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 733.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1419.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.07 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1056.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1563.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1313.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1228.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1444.88 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1429.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43541 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1070.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 721.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 650.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 786.52 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1177.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 86.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.44 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 18.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1339.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43552 ...Processing shard 43553 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1533.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 988.03 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 973.52 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1542.95 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1061.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1108.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2053.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1263.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1581.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1649.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1316.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1199.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.72 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1002.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1014.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1556.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43579 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 738.86 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 996.33 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43581 ...\n",
      "Processing shard 43582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.21 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 753.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1012.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 96.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1457.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1286.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 696.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1090.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 572.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1362.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43597 ...Processing shard 43598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 945.57 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 784.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1308.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1388.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1223.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43604 ...Processing shard 43605 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.41 examples/s]:00<00:00, 2091.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1257.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1917.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1329.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2153.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43609 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1258.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1130.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1066.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1527.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 673.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 729.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 111.38 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.78 examples/s]:00<00:00, 1771.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1283.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 955.91 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 105.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.79 examples/s]:00<00:00, 1357.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 798.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1040.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 972.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 851.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1177.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 613.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 801.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 703.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.34 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 922.56 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 100.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 894.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 634.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 568.76 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.17 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 98.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 93.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 97.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1399.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43643 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 97.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 991.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 801.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1604.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 93.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 88.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1229.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1100.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1000.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.22 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1251.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.00 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 23.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1036.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1047.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 931.81 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 18.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.69 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1309.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 964.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 792.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1037.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.70 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 43.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.40 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.42 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2269.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1407.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 374.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 363.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1842.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.95 examples/s]:00<00:00, 1455.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 853.13 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43689 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]:00<00:00, 2132.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 293.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2275.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.67 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1506.91 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1864.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43700 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1575.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2149.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1362.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]:00<?, ? examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.49 examples/s]:00<00:00, 2059.94 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1375.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 733.40 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 17.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 90.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1497.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 87.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1317.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 90.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 910.54 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43720 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1517.41 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1805.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1301.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1864.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1519.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.61 examples/s]:00<00:00, 1082.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 735.12 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1365.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 939.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 584.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]:00<?, ? examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1560.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.03 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 996.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 742.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.84 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43749 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 808.85 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.47 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 623.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43754 ...\n",
      "Processing shard 43755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1029.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.86 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 625.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 897.71 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1480.78 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.85 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 32.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1127.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 704.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1515.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.55 examples/s]:00<00:00, 712.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 556.66 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1009.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 757.25 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2010.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1088.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 949.93 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1007.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43778 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1502.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43782 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.34 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 811.22 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 580.04 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 872.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 17.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:01,  2.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1606.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1599.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 692.82 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 30.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 149.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.49 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.14 examples/s]:00<00:00, 729.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 559.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.77 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1174.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1457.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1129.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1163.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1281.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43804 ...\n",
      "Processing shard 43805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 26.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.77 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 682.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 692.96 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 823.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 644.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1113.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.24 examples/s]:00<?, ? examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1084.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.69 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.94 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1096.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43842 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.46 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.11 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.57 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1554.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43854 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.05 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1614.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.95 examples/s]:00<00:00, 1491.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 962.71 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 29.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.69 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43867 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.95 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1377.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.53 examples/s]:00<00:00, 2070.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 735.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.48 examples/s]:00<00:00, 2056.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.48 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1595.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1088.51 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.41 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 778.76 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1523.47 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 640.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1283.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.07 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:01,  2.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.30 examples/s]:00<?, ? examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 41.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1855.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1199.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.75 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1322.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1656.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 726.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 593.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 696.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1351.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1276.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.85 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1327.73 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 610.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2015.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:02,  2.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1924.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1536.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 745.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 582.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.70 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.61 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.52 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1849.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1104.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 640.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.36 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.16 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1399.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43947 ...\n",
      "Processing shard 43948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1571.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.34 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1553.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1082.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 677.58 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 695.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.82 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1323.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 587.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 491.34 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.26 examples/s]:00<00:00, 1666.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.94 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1004.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2037.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 43980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2199.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1253.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1044.33 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.16 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 43999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 981.30 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1087.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1612.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 648.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]:00<00:00, 2068.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.77 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 821.97 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44014 ...Processing shard 44015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:03<00:05,  1.04s/ examples]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2089.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.86 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 535.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 952.82 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.74 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.69 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  3.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1375.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 913.02 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44030 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.63 examples/s]:00<00:00, 2102.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.06 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44033 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1857.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1214.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1058.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1488.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 547.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44037 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1157.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 618.22 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 513.97 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 536.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.55 examples/s]:00<00:00, 1569.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.12 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1563.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 894.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2139.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44052 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.82 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.26 examples/s]:00<00:00, 1477.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 911.21 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.84 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44057 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 898.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 901.61 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44058 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 713.65 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 56.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.26 examples/s]:00<00:00, 1182.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 759.03 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 257.79 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.48 examples/s]:00<00:00, 510.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 367.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 312.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 461.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44065 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44066 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 328.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 402.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44067 ...\n",
      "Processing shard 44068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 260.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.31 examples/s]:00<00:00, 649.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 483.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 808.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.06 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.50 examples/s]:00<00:00, 1160.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 839.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1295.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 524.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.54 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.71 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44075 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1545.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.82 examples/s]:00<00:00, 1257.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 577.44 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 912.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 835.48 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1035.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 608.45 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.12 examples/s]:00<00:00, 1357.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1018.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 977.66 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 795.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1533.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 720.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 548.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.14 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 50.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 608.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 763.29 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 565.67 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 943.89 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 925.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44098 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 482.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.47 examples/s]:00<00:00, 1139.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 812.81 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 608.54 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1592.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 866.35 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44102 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 462.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 460.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44103 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 281.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 833.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 632.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 51.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1069.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 919.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1841.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.34 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1873.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 913.05 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.89 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 861.94 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 739.67 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 447.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 506.57 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 324.57 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 545.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.35 examples/s]:00<00:00, 591.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 468.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 745.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 558.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 522.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 416.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.49 examples/s]:00<00:00, 684.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 494.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44125 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 724.22 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 793.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  3.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44127 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 412.44 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.51 examples/s]:00<00:00, 682.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 371.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 497.54 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 321.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 393.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 52.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 223.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.50 examples/s]:00<00:00, 440.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 272.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 400.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.23 examples/s]:00<00:00, 438.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 214.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 260.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 176.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.22 examples/s]:00<00:00, 443.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 185.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 248.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 183.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 159.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 308.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 501.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44142 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 307.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 195.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 173.23 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 137.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 354.23 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.51 examples/s]:00<00:00, 335.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 143.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 109.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44149 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 170.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.73 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.16 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.09 examples/s]:00<00:00, 272.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 370.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 225.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 343.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 180.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 173.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:01<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 127.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 158.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 159.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 275.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 108.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 334.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 174.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 405.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 190.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 160.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44162 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 302.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 213.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.90 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 176.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 318.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 207.67 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 398.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 470.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 261.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.59 examples/s]:00<00:00, 251.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 177.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 148.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 274.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 163.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 205.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 134.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 140.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 64.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 111.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.99 examples/s]:00<00:00, 363.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 250.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44175 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 297.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 186.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 172.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 137.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44177 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 124.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 370.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 341.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.99 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.85 examples/s]:00<00:00, 786.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 315.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 302.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 323.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 131.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 273.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 255.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 190.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 147.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 250.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 157.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 74.15 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.69 examples/s]:00<00:00, 156.48 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 64.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 179.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 152.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44189 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 424.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 397.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 105.33 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.00 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.74 examples/s]:00<00:00, 318.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 172.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 362.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 202.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 236.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44195 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 151.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44196 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 85.70 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 161.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 312.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 157.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 311.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 290.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.16 examples/s]:00<00:00, 274.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.34 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 96.71 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.28 examples/s]:00<00:00, 321.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 139.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 314.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 343.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 173.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44204 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 169.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 68.60 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 159.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 114.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 215.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 118.28 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 100.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 132.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 384.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.10 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 215.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 98.54 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 352.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 358.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 191.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 163.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 116.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44216 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 752.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 140.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 359.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 175.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44218 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.35 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.06 examples/s]:00<00:00, 231.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 346.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 134.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 140.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44222 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.19 examples/s]:00<00:00, 384.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 250.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 223.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.25 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 472.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 177.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 360.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 263.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 210.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44228 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.88 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 234.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.61 examples/s]:00<00:00, 290.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 380.79 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 56.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 138.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 169.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.30 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 425.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 246.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 218.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.05 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.21 examples/s]:00<00:00, 390.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.36 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 117.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 239.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44236 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 144.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 268.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 113.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 158.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 120.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.65 examples/s]:00<00:00, 291.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 126.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 133.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 327.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 136.20 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 161.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.74 examples/s]:00<00:00, 467.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 259.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 328.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 208.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 176.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 168.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 136.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 134.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 147.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 220.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.05 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 152.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 429.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.99 examples/s]:00<00:00, 502.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 259.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 323.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 251.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 284.68 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.94 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 503.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 388.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 293.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.40 examples/s]:00<00:00, 568.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 32.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 381.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 554.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 484.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1039.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 568.30 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.41 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1169.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1884.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.83 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.46 examples/s]:00<00:00, 609.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 431.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.54 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 611.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 882.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 389.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.73 examples/s]:00<00:00, 683.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 485.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.32 examples/s]:00<00:00, 921.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 451.53 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 864.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.77 examples/s]:00<00:00, 1293.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 332.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 351.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 353.27 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.86 examples/s]:00<00:00, 591.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 218.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.32 examples/s]:00<00:00, 395.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 307.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 228.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 357.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 282.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 172.37 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 67.27 examples/s]:00<00:00, 361.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 477.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 204.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 243.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 323.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.73 examples/s]:00<00:00, 272.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 205.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 188.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 249.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 254.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 302.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 499.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.84 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.03 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 454.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 236.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 464.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 347.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 139.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 274.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 161.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 190.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 230.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 157.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 148.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 408.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 296.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 239.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 191.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 124.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 186.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44306 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 422.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.70 examples/s]:00<00:00, 686.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 206.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 325.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 207.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.41 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 246.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 278.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 394.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 228.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.20 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 232.20 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 256.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.75 examples/s]:00<00:00, 453.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 64.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 210.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 511.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 287.32 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 44.28 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 47.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 302.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 948.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 779.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 544.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 21.55 examples/s]:00<00:00, 954.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44321 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44322 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 63.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 948.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 920.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 642.09 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 54.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 679.76 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.02 examples/s]:00<00:00, 1041.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 427.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 951.87 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.96 examples/s]:00<00:00, 1208.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 828.18 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 589.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 447.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.83 examples/s]:00<00:00, 625.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 479.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 834.81 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 486.59 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1221.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 507.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.03 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.40 examples/s]:00<00:00, 851.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 470.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44337 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.85 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 544.68 examples/s]]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 579.39 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1005.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 469.05 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 65.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 518.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 478.92 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 282.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 335.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.63 examples/s]:00<00:00, 566.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.97 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 309.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44344 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 285.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.98 examples/s]:00<00:00, 432.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 283.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 201.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 222.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 268.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 285.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 230.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 530.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44351 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 398.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 558.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 147.72 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 293.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 473.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44355 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 320.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 50.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44357 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 265.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 958.75 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 978.43 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 905.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 805.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 58.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.06 examples/s]:00<?, ? examples/s]xamples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 815.50 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 687.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 510.97 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 27.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 425.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 570.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 843.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 483.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 447.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.47 examples/s]:00<00:00, 746.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 415.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 353.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.98 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44371 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 704.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 628.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 596.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 313.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 309.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 367.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.50 examples/s]:00<00:00, 539.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 422.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 246.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 299.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.48 examples/s]:00<00:00, 981.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.28 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 63.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.09 examples/s]:00<00:00, 535.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 287.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 285.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.66 examples/s]:00<00:00, 753.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 432.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 218.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44382 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 347.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 374.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 222.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.27 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44384 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 170.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 398.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.88 examples/s]:00<00:00, 564.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 176.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 236.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 244.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1077.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 518.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 514.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 463.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 337.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44390 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 563.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44392 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 647.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.73 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1519.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 826.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.44 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1165.33 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.63 examples/s]:00<00:00, 1161.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 907.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.43 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 20.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.21 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 34.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44408 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1826.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 546.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1143.29 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 499.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 21.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.05 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.49 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1841.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1056.30 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.09 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1525.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.07 examples/s]:00<00:00, 1443.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 912.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 615.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1931.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1536.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 875.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 782.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1443.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1131.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.33 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 27.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1031.78 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 914.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 810.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.05 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 777.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.17 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2228.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1869.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]:00<00:00, 763.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 594.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1311.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 890.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 674.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.80 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1357.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.67 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.08 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2228.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.76 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 25.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44474 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1291.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1438.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2115.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1245.02 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1247.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1280.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.06 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.55 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1049.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.94 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  3.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.04 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 20.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 604.81 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.07 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44495 ...Processing shard 44496 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1076.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44497 ...\n",
      "Processing shard 44498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.64 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 941.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44501 ...\n",
      "Processing shard 44502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 727.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44503 ...\n",
      "Processing shard 44504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]:00<00:00, 2069.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1072.51 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1018.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44512 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1072.40 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.91 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 510.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1027.07 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44523 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.01 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1397.81 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1495.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44528 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.64 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1581.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1376.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  3.92 examples/s]:00<00:00, 1195.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 907.47 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1894.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44533 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1533.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1146.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1042.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 739.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1047.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1160.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.45 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1213.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:02<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:02<?, ? examples/s] 8/8 [00:00<00:00, 1960.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1236.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1246.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1050.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 21.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.59 examples/s]:00<00:00, 1677.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 841.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1067.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 747.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.08 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1066.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1294.19 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 23.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.04 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.00 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 20.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.07 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.46 examples/s]:00<00:00, 1445.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 903.31 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.36 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.91 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.33 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 963.93 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44578 ...\n",
      "Processing shard 44579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1007.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44582 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.16 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 977.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 394.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1479.86 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44592 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1246.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.44 examples/s]:00<00:00, 1566.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 922.71 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.60 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 891.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1870.16 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 25.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 839.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1336.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 968.33 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 29.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44603 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1343.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 828.89 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.27 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1202.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1968.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 582.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]:00<00:00, 1759.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.29 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 43.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.71 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1580.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.03 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.49 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 22.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 641.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 771.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44632 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.33 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 697.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44634 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.16 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 725.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 845.54 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.98 examples/s]:00<00:00, 1198.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 783.07 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1323.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.26 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.17 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1401.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2214.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.97 examples/s]:00<00:00, 762.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 548.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 607.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44667 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1225.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44668 ...\n",
      "Processing shard 44669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]:00<00:00, 2078.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1261.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1504.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1029.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.50 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 891.17 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  4.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44684 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1476.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.22 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.88 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1580.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1302.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1017.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.72 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1539.97 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44704 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.37 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1438.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.76 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  2.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1187.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1848.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44716 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2143.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.71 examples/s]:00<00:00, 707.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 520.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44728 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44736 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 641.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.25 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44743 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1316.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 602.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.89 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 634.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1373.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1312.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.07 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]:00<?, ? examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.17 examples/s]:00<00:00, 1809.06 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 873.22 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.64 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1455.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.57 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.74 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44758 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2210.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.04 examples/s]:00<00:00, 2002.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1205.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  1.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1597.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.57 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]:00<00:00, 1807.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1182.91 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1252.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 676.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 525.53 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1502.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1105.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1009.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1215.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.36 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.57 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1604.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44792 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1405.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1277.34 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:05,  1.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.70 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44796 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.02 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1493.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44806 ...\n",
      "Processing shard 44807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.41 examples/s]:00<00:00, 1533.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1047.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1294.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2046.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1318.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44816 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 23.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 682.67 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 879.59 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1218.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1155.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1419.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.22 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1544.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.21 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1390.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.44 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.44 examples/s]:00<00:00, 1910.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 972.28 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1222.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1233.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 925.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 751.58 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44842 ...Processing shard 44843 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1558.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44847 ...\n",
      "Processing shard 44848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.88 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.73 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1169.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1065.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1612.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1230.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 677.83 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.67 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44863 ...\n",
      "Processing shard 44864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  4.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.34 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1000.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1504.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1070.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.89 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 678.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1238.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 705.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1009.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 753.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1386.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.76 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1286.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 535.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1376.71 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.79 examples/s]:00<00:00, 2137.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1596.16 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.10 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1005.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.65 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.58 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.25 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1214.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.82 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 920.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 768.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1248.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44931 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44932 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 868.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1381.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.93 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1373.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 542.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1456.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.41 examples/s]:00<00:00, 1672.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1090.14 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 42.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1574.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.33 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44957 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:02<00:04,  1.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1822.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2259.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44965 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1402.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 736.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2232.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.57 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 638.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1329.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:06,  1.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1532.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]:00<00:00, 1640.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 814.43 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.21 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 44978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]:00<00:00, 2169.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 844.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.02 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 642.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 19.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.09 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1191.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2240.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2209.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1260.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 568.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 44999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1388.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1561.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45001 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45003 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1879.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 997.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45004 ...\n",
      "Processing shard 45005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 732.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1853.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1570.02 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.12 examples/s]:00<00:00, 2178.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1284.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.10 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.80 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1641.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2286.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1868.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.22 examples/s]:00<00:00, 1381.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 945.33 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.26 examples/s]:00<00:00, 2175.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1306.48 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45027 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1464.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1857.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45029 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 891.39 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 907.98 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 781.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 23.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]:00<00:00, 1690.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 947.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 954.47 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45038 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 848.98 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 794.32 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2022.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1568.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45043 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1189.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 598.02 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.68 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1487.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1171.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1031.14 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:02,  2.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1531.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45055 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1115.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]:00<00:00, 1891.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1548.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 17.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45062 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1323.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.95 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.09 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.62 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1129.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1523.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1232.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2185.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1415.98 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1822.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]:00<00:00, 1190.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 859.07 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1611.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1171.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1012.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.66 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1016.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 929.46 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45087 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2170.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1472.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1585.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1213.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.58 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1429.67 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.54 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1406.42 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 741.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.81 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1502.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 666.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 859.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:06,  1.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1309.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.96 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45121 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 990.68 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 981.15 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45126 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 933.34 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45127 ...\n",
      "Processing shard 45128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.67 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1323.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 930.34 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2277.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.43 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1392.82 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 31.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1278.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45136 ...\n",
      "Processing shard 45137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45138 ...\n",
      "Processing shard 45139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.12 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1326.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1544.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45145 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 971.66 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1495.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1451.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1200.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.85 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2245.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1604.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1504.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1269.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45158 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 886.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.44 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45165 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1639.84 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1851.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 624.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1407.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45168 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45169 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 862.40 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.25 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 616.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1243.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 766.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.58 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 558.99 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 794.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.75 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1300.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.20 examples/s]:00<00:00, 777.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 600.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.51 examples/s]:00<00:00, 2183.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1300.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.10 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2183.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1443.45 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1248.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45203 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1006.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.58 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1607.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.83 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1213.02 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.74 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2161.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45212 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.66 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 622.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1218.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.76 examples/s]:00<00:00, 1637.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.22 examples/s]:00<00:00, 1365.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 947.14 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1571.93 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.72 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 100.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45226 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1481.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.23 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45230 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1405.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]:00<00:00, 1749.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1206.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1526.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1409.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1318.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45237 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1317.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 938.32 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45239 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45240 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1115.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1527.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2175.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1834.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1406.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.35 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.76 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1518.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1260.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 886.63 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.75 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.20 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1287.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45273 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1599.05 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1218.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 844.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.91 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.60 examples/s]:00<00:00, 2127.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]:00<00:00, 1198.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 854.56 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1306.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2178.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 639.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45294 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 841.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.71 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 20.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 727.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 527.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 871.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1279.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.67 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 20.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45310 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1572.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 867.69 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45314 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1223.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2182.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 986.17 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 824.62 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 816.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1100.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.52 examples/s]:00<00:00, 1746.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1515.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 781.61 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 831.67 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45333 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.47 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1230.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.67 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 957.30 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.53 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:01,  3.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45342 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.27 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 715.00 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2268.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.77 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 474.73 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.33 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]:00<00:00, 1539.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1034.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 955.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 17.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2164.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.77 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1610.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1479.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]:00<00:00, 2221.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.39 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.85 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.59 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 751.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 571.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45380 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 941.35 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.02 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.15 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45398 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 735.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1514.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45402 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45403 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.31 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1379.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1072.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1180.58 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.58 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.94 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 42.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45412 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.86 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.87 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1282.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.66 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 588.92 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 747.53 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45418 ...Processing shard 45419 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1549.00 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.08 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.31 examples/s]:00<00:00, 2030.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.01 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.19 examples/s]:00<00:00, 2050.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1279.39 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.25 examples/s]:00<00:00, 2067.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.21 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1544.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1200.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 965.96 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1367.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 23.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.60 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1243.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1826.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1387.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1522.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45448 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45449 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.58 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45450 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 940.98 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.00 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45456 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.57 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.72 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45460 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2120.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1098.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1131.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45464 ...\n",
      "Processing shard 45465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1425.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1522.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1572.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1050.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45470 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  5.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45473 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 672.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 726.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.90 examples/s]:00<00:00, 2074.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1100.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1209.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1628.38 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2006.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1565.84 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:02,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1607.09 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1269.75 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1390.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1277.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45508 ...\n",
      "Processing shard 45509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1381.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45511 ...\n",
      "Processing shard 45512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 960.04 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1343.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1272.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.81 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  2.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1548.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1517.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1575.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.82 examples/s]:00<00:00, 1670.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1090.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.36 examples/s]:00<00:00, 691.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 503.96 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1590.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 534.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1529.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1394.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  1.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1056.20 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:02<00:02,  1.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 611.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1057.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1514.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 781.92 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1076.08 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1042.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1588.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.61 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:01,  2.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 706.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1599.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45564 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 935.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45566 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1122.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1252.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1043.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45572 ...\n",
      "Processing shard 45573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.03 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1472.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1377.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 703.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1620.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.65 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.89 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:01,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1065.76 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:01,  2.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1113.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.39 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:00,  2.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.97 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.01 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:02,  2.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.82 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 582.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1387.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45601 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1049.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1641.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1090.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1508.13 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.60 examples/s]:00<00:00, 814.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 793.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 697.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1253.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1444.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1326.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.28 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 582.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.76 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.23 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45617 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 963.71 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.69 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1548.21 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1444.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.66 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.25 examples/s]:00<00:00, 735.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 481.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 795.22 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.04 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1077.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.74 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.21 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1639.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 621.50 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.91 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1215.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.87 examples/s]:00<00:00, 1143.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 791.34 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 866.70 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.51 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.62 examples/s]:00<00:00, 1888.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1071.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 623.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45644 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 540.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45646 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1158.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1393.46 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 592.87 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45653 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.50 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.97 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1656.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1382.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.17 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 42.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45666 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.51 examples/s]:00<00:00, 2039.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1243.40 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1458.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1649.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  4.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 717.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.33 examples/s]:00<00:00, 1778.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.55 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45682 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2188.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 697.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2109.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45688 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1390.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]:00<00:00, 1708.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.42 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 647.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.36 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  2.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1332.64 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45702 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.54 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.60 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 22.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.55 examples/s]:00<00:00, 710.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 521.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45711 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 898.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1494.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 604.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 963.88 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.91 examples/s]:00<00:00, 2075.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1250.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1301.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]:00<00:00, 2075.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1282.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.95 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.82 examples/s]:00<00:00, 1165.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.46 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1488.33 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1169.71 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  3.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.11 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.01 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1044.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45737 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1071.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 701.34 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 598.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1554.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1575.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1057.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 974.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45746 ...\n",
      "Processing shard 45747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2038.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1842.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 146.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.75 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.52 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.28 examples/s]:00<00:00, 1884.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 590.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.35 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]:00<00:00, 1977.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1258.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 905.04 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45765 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.04 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1464.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45768 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1425.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1340.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2193.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 913.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1304.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45775 ...\n",
      "Processing shard 45776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 709.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.19 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.63 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 863.67 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1841.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1059.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 965.12 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45793 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.04 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45795 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45798 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.15 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1234.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1907.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1127.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45804 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.94 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]:00<00:00, 1702.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 948.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 868.21 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45807 ...\n",
      "Processing shard 45808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 730.05 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1379.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45813 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.57 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2199.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.12 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45819 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.79 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.29 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.94 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 778.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 990.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45834 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 614.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.81 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.38 examples/s]:00<00:00, 1059.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 777.44 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1304.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45838 ...\n",
      "Processing shard 45839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.72 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1249.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1556.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1296.79 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1146.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1348.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 977.21 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1068.58 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.48 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45862 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.05 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.33 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.26 examples/s]:00<00:00, 1362.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 929.02 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.32 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.49 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1237.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45869 ...\n",
      "Processing shard 45870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45871 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1870.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1365.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.00 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.49 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.61 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 21.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45890 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.59 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1323.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 33.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 752.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45896 ...\n",
      "Processing shard 45897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45899 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.88 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45902 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 29.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 45904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.87 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.23 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45912 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1199.92 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1596.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45916 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 586.69 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.26 examples/s]:00<00:00, 1517.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45919 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 929.10 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.00 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45922 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1182.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1382.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45926 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 755.32 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 17.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.74 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 32.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1197.43 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 627.56 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1048.51 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  6.14 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 617.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 677.57 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.55 examples/s]:00<00:00, 1667.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 992.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 928.77 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 35.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1222.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 894.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 904.80 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45942 ...\n",
      "Processing shard 45943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1327.31 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45954 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2149.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:03<00:01,  1.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.41 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.14 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 54.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45961 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.08 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1493.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45963 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.05 examples/s]:00<00:00, 2301.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1361.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1564.02 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1427.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45971 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.85 examples/s]:00<00:00, 1626.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1219.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45972 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 22.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1202.11 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.24 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.88 examples/s]:00<00:00, 1508.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.58 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1283.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.32 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.29 examples/s]:00<00:00, 763.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 567.47 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1321.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.34 examples/s]:00<00:00, 2199.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1229.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.25 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45987 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.90 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.64 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1997.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1028.55 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1308.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 45999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.34 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46000 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46002 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 696.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1146.18 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.89 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46007 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1577.18 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.56 examples/s]:00<00:00, 1932.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 934.53 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 695.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.40 examples/s]:00<00:00, 1480.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1027.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.93 examples/s]:00<00:00, 706.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 557.55 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.39 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1848.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46016 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 624.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.21 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1570.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n",
      "Processing shard 46026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 583.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.05 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 949.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]:00<00:00, 1341.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 926.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46034 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.57 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46036 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1049.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 954.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 545.72 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.99 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1012.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.19 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.60 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1084.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1008.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 741.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 584.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 931.52 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46053 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.66 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.20 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1518.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.82 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1030.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1541.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1374.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.65 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 701.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 526.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46066 ...\n",
      "Processing shard 46067 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46068 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1068.61 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1578.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1282.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46073 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46076 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1523.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46078 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 800.67 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46080 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 749.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46084 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.21 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.24 examples/s]:00<00:00, 1337.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 922.89 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46088 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1191.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1897.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.18 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46093 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 21.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 975.79 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1043.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1321.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.28 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1092.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:03,  1.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.12 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 35.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 648.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1570.31 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 606.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 587.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1455.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46112 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1438.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 858.83 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46114 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 714.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.87 examples/s]:00<00:00, 1813.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1163.27 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.77 examples/s]:00<00:00, 2102.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1258.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 629.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1080.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.47 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46122 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]:00<00:00, 1979.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1198.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1050.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.46 examples/s]:00<00:00, 818.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.18 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1122.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1340.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46129 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 706.81 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.82 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1024.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46135 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1626.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]:00<00:00, 1687.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 972.73 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.62 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46141 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.49 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 23.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46144 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46146 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46148 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1099.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46152 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.02 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.14 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1576.07 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.37 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1515.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 16.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1103.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 966.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46172 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.80 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 690.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1341.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 929.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 915.49 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.90 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 914.34 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46179 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.18 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46180 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1846.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1203.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46184 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.17 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1558.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46193 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1838.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1876.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1038.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1587.55 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  1.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46205 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1007.40 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 736.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46208 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 740.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1479.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46211 ...\n",
      "Processing shard 46212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1362.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.81 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1451.00 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46217 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.70 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46220 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1363.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.07 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.29 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1484.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 552.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1024.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 825.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46232 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 734.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1009.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1330.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.47 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1858.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2223.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.15 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.06 examples/s]:00<00:00, 776.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 620.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.23 examples/s]:00<00:00, 1538.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1097.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 518.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 824.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46247 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46248 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 716.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 468.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 820.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.40 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 847.57 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.50 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.90 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46255 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 978.86 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46256 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.62 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 29.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 22.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1611.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1105.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46261 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.41 examples/s]:00<00:00, 2192.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1087.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1519.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1312.16 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.75 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]:00<00:00, 2117.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2008.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1402.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46268 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1326.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.82 examples/s]:00<00:00, 2086.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1115.58 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.94 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.92 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 732.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 29.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1243.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 745.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.70 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.60 examples/s]:00<?, ? examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1130.62 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.89 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1096.12 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 879.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.26 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.38 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1163.63 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.63 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.19 examples/s]:00<00:00, 2030.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1245.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 983.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 586.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.24 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46297 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.82 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1492.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46300 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46302 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.55 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1231.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1972.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1575.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46305 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46308 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 25.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1837.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 964.90 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 746.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46312 ...\n",
      "Processing shard 46313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46315 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.05 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1458.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  7.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 935.26 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46323 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 494.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1224.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 929.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2287.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1865.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 959.60 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1283.94 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.88 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1515.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 23.08 examples/s]:00<?, ? examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 27.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1472.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 939.29 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 883.55 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46340 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1266.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 990.71 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 20.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 974.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1353.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46348 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46350 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.52 examples/s]:00<00:00, 1614.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 959.47 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1292.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.84 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46361 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1457.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46364 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 558.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2176.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.56 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1004.89 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46369 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 838.90 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 29.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46370 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1510.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.81 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 610.84 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 21.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:00,  4.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1571.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2130.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1229.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1420.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46394 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 949.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46396 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:06,  1.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1628.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1480.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46403 ...\n",
      "Processing shard 46404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1509.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1392.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.34 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 29.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1031.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1140.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.61 examples/s]:00<00:00, 1784.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.73 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.86 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.78 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1362.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46416 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1278.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1299.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 954.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 890.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46419 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 829.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 556.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 463.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46420 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1365.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.38 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 28.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.80 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 713.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.29 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.80 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1533.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46435 ...Processing shard 46436 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1155.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1292.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46441 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1130.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.78 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.56 examples/s]:00<00:00, 2224.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1844.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.82 examples/s]:00<00:00, 2099.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46452 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.99 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 24.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2085.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.47 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46456 ...Processing shard 46455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.74 examples/s]:00<00:00, 1110.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 804.59 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.50 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 36.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46459 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1508.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1377.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.40 examples/s]:00<00:00, 1383.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.46 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.51 examples/s]:00<00:00, 756.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1438.81 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.89 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1058.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1542.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 909.56 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46476 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1218.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 887.00 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46478 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.48 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.71 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 531.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 544.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 111.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 673.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 993.29 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1267.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.26 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46488 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 26.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 994.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]:00<00:00, 1954.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1233.26 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46498 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46499 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46500 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 650.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46502 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1282.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 554.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1602.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.08 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.46 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  2.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 24.42 examples/s]:00<00:00, 993.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1374.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 901.71 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.74 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1032.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46514 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.70 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 672.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1614.98 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:01<00:11,  1.68s/ examples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1407.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.16 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 673.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46522 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1382.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 970.26 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1584.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1590.48 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1540.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1650.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46531 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 27.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46532 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 471.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.18 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1405.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1117.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46545 ...Processing shard 46544 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 87.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.19 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 84.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.46 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.10 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46551 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1214.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 690.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1143.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 583.74 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.48 examples/s]:00<00:00, 1501.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 730.08 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.56 examples/s]:00<00:00, 1302.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 904.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1288.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1023.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 88.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46561 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 838.29 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 708.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 88.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1189.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46567 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46568 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1367.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46570 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 833.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46571 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46572 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 87.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46575 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 89.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1018.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1035.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 917.36 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 663.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 27.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46581 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.12 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46583 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1835.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 632.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.07 examples/s]:00<00:00, 1791.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 917.74 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46589 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 938.01 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.71 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46594 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.86 examples/s]:00<00:00, 2208.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46595 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.64 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1333.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.21 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.98 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 920.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1222.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1037.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46608 ...\n",
      "Processing shard 46609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.18 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.57 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 16.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 952.03 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1143.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46621 ...\n",
      "Processing shard 46622 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 17.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 877.93 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46623 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1227.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 828.22 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 795.86 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1538.28 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.90 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.86 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1397.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 773.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1420.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1006.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46636 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 793.89 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46637 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 999.60 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1219.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.18 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1387.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46640 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.81 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1139.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.73 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.67 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.25 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.19 examples/s]:00<00:00, 2070.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1227.35 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46652 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 19.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 721.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 556.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46655 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 893.74 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 450.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.09 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.70 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 773.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 589.93 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.11 examples/s]:00<00:00, 1447.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 673.62 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 638.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46662 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 457.78 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.46 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 801.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 882.69 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 982.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 619.23 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 29.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46666 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1406.30 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 760.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1459.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.97 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 59.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46675 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 91.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46676 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.13 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.83 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.14 examples/s]:00<00:00, 1655.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 813.26 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.52 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46677 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46678 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 684.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 449.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 500.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46679 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 351.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1072.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 715.80 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46683 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 40.74 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 691.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1565.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.16 examples/s]:00<00:00, 2227.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:02<00:01,  1.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 57.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1554.89 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 21.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 86.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46690 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2236.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.09 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1293.84 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1192.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 866.37 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 790.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.94 examples/s]:00<00:00, 1119.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 857.99 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.84 examples/s]:00<?, ? examples/s]amples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 310.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1041.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46697 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 610.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46699 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.25 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.76 examples/s]:00<00:00, 763.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.38 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.78 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1129.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46710 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.98 examples/s]:00<00:00, 2265.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1369.18 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46712 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1298.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1832.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 23.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46718 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.07 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.72 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 634.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 506.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 732.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46726 ...\n",
      "Processing shard 46727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.65 examples/s]:00<00:00, 1579.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1056.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46729 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1477.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 68.14 examples/s]:00<00:00, 767.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 584.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.44 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1502.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46735 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1523.26 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.45 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.37 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 23.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.41 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 620.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 563.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2234.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46748 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.11 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46751 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1230.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.14 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]:00<00:00, 2001.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2115.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46760 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1459.78 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1417.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1275.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1589.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1077.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.13 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.19 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 968.21 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 546.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 23.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1564.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.92 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1257.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 749.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 461.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1371.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1604.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1330.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1856.19 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 881.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1284.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.47 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.22 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1184.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1639.36 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1087.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.48 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 666.79 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1405.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 885.08 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1001.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.03 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.78 examples/s]:00<00:00, 673.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 513.54 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46808 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 701.84 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 718.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 999.03 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 577.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46815 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.96 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 594.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.39 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 17.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.11 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46824 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1051.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46825 ...\n",
      "Processing shard 46826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 856.85 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1585.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 21.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.89 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.31 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1280.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1219.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46837 ...Processing shard 46836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 698.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 536.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46838 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46839 ...Processing shard 46840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1835.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.04 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 791.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.63 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1122.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]:00<00:00, 1002.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.65 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 903.75 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46857 ...Processing shard 46856 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1241.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46859 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1459.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1062.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 743.95 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 108.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 109.17 examples/s]00<00:00, 1317.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 884.97 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 797.00 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46865 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1481.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46870 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.96 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46876 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2250.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1832.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1177.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 989.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1293.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1606.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.10 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1429.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.66 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1243.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.00 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.21 examples/s]:00<?, ? examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.74 examples/s]:00<00:00, 1283.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 884.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.67 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46898 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.92 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 669.08 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1630.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.38 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46908 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 57.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.87 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.79 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1945.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46911 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1032.13 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2156.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1380.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]:00<00:00, 2115.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.96 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1382.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1165.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.36 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1261.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46939 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]:00<00:00, 2193.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1324.43 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.01 examples/s]:00<00:00, 2180.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1292.79 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46945 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.73 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 19.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1064.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 46952 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.98 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.95 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.87 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 126.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 747.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 116.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46967 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 118.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.08 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46968 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 558.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46969 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2121.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1281.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 118.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.62 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46974 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 129.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.42 examples/s]:00<00:00, 716.87 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 515.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46975 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46976 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1189.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1361.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 742.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 593.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46982 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1112.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46985 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1371.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1343.25 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 32.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00, 24.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.31 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 958.59 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.19 examples/s]:00<00:00, 2204.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1455.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46993 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1041.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.01 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.17 examples/s]:00<?, ? examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46995 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2073.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46996 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1834.28 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 46999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.81 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.18 examples/s]:00<00:00, 2253.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.56 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1878.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 696.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47005 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1048.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47006 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1304.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1842.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 872.27 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47011 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.59 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 934.61 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 890.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47016 ...\n",
      "Processing shard 47017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1034.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 895.50 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.88 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1838.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 147.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.46 examples/s]:00<00:00, 2161.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1246.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1616.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 132.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1206.65 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47032 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1610.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47035 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1113.47 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 141.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.84 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1858.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 146.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 770.80 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 971.86 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47041 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47042 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 152.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1858.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 162.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1842.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47044 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 91.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47045 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 86.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 149.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 142.09 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.96 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 735.62 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 121.34 examples/s]00<00:00, 870.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 150.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 544.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 864.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 678.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47049 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 632.76 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 598.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.16 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47056 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1603.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 834.19 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47069 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1096.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2137.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]:00<00:00, 2153.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 809.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47082 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]:00<00:00, 1345.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 939.51 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 576.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47085 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 884.31 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1443.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47091 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1527.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47094 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47096 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 749.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.95 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1328.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47100 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 567.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1879.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1536.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1831.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 587.46 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 828.50 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47111 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1205.65 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.97 examples/s]:00<00:00, 1725.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1025.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 568.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47115 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 968.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1025.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 908.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47120 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.27 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 715.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.75 examples/s]:00<00:00, 2058.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1271.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1837.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1474.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1017.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.44 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47127 ...Processing shard 47128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.25 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47130 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1091.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 828.42 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47131 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47132 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.97 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.40 examples/s]:00<00:00, 1473.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 900.74 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47134 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 26.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.55 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.98 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  8.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1210.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1429.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.25 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1508.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1373.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47149 ...\n",
      "Processing shard 47150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1858.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1267.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]:00<00:00, 2194.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47153 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:09<00:00,  1.17s/ examples]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1534.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47154 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1257.99 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47156 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47157 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47160 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.47 examples/s]]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1001.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 19.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47171 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 725.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1614.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47174 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.16 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1017.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2156.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47178 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2165.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.96 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.69 examples/s]:00<00:00, 1871.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 946.64 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47184 ...Processing shard 47183 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 755.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47185 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 841.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47188 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 966.10 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 84.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1341.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1255.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47192 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 981.58 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 724.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 636.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 641.94 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1561.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 791.19 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47200 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47201 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1375.58 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 685.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 597.48 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47206 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.52 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 967.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 903.41 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47211 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47213 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 774.96 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 19.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1302.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.71 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1249.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47225 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 958.78 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 878.46 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1376.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47234 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47235 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 774.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.98 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 978.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47241 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.71 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47242 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47244 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47245 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.64 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1207.04 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 955.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 538.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47251 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47252 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.48 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1399.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47257 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.14 examples/s]:00<00:00, 2132.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1336.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47258 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.80 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47262 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 838.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47264 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1859.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1402.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47267 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.78 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.26 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.37 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 680.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1298.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47276 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1421.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47278 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 666.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.39 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47283 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.18 examples/s]:00<00:00, 2234.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1322.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47284 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47285 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2227.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47286 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1853.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47288 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1831.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1525.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47293 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1083.59 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.26 examples/s]:00<00:00, 1773.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 999.03 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47296 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.73 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 421.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1957.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47298 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1547.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2037.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1339.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 967.43 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47301 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]:00<00:00, 1732.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1115.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1695.95 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47311 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.34 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2189.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47314 ...\n",
      "Processing shard 47315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47316 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 638.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47318 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47320 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1577.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.86 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1480.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1905.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1988.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1525.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.16 examples/s]:00<00:00, 2213.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1306.89 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.58 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 717.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 644.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1639.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.36 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47346 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 931.68 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]:00<00:00, 1376.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 921.14 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47349 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1233.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47350 ...\n",
      "Processing shard 47351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.99 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 58.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]:00<00:00, 1539.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47353 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1540.96 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 20.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47356 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 44.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1199.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1198.42 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47358 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47359 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47362 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1389.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2128.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.82 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 41.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 700.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47365 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47367 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.64 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 64.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.54 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.60 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.20 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1452.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 700.32 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.66 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.56 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 45.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1239.96 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.79 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.93 examples/s]:00<00:00, 1567.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 759.13 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.06 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.82 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.83 examples/s]:00<00:00, 1170.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 765.21 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.52 examples/s]:00<00:00, 1260.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47393 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 426.06 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.07 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 849.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47395 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 500.47 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.32 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47396 ...Processing shard 47397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1648.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1014.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.76 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47399 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1233.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47404 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.21 examples/s]:00<00:00, 1599.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47405 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 985.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2168.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47406 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1329.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2132.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47410 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 23.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.07 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 25.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.17 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 20.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47417 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.46 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.09 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1424.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47421 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1386.32 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.35 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1336.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.57 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47428 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1484.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 17.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 942.28 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47431 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.99 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.09 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:03,  1.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1549.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2217.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47435 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1860.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47436 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1427.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1339.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47437 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 29.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47439 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1501.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47440 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1158.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1433.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1294.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47442 ...\n",
      "Processing shard 47443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.50 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47444 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.43 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1576.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47445 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]xamples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 937.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2092.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1552.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1299.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.61 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47453 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47455 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 504.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 555.35 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 973.92 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 23.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47461 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1539.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.84 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1222.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1497.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2185.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47466 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1451.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.88 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.45 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1874.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1277.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1369.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.49 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1124.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 654.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.49 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.72 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47482 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 881.87 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47484 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 705.56 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47485 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1038.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47486 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 793.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1256.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 927.30 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 535.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47488 ...Processing shard 47489 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 870.03 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.34 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47493 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47494 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1185.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 883.13 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.19 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 32.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.89 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 695.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47503 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47504 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1850.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 946.05 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47506 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1232.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47507 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 17.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.90 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47511 ...Processing shard 47512 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47513 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 21.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.09 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.31 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47515 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47516 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.11 examples/s]:00<00:00, 2242.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 960.87 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 795.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 593.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47521 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 964.87 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1178.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47526 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1191.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47529 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47530 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1160.29 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1003.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 628.61 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.56 examples/s]:00<00:00, 1163.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 893.57 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47535 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1844.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.03 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47539 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47540 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1487.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1455.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47543 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47544 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47545 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1907.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1533.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47547 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47549 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1369.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]:00<00:00, 2174.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.67 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]:00<00:00, 1909.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1187.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47554 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1302.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 593.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47556 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1032.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 793.81 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1497.03 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47559 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1423.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47560 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.86 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47562 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1553.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47563 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1374.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.10 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.09 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47569 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.24 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2169.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 28.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 990.30 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47573 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1510.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]:00<00:00, 1386.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 869.96 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47577 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1532.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47578 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 638.05 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 749.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47580 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47581 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 521.60 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 118.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1850.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 666.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2003.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47584 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.75 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1610.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1344.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2257.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1216.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1290.11 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47593 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1579.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47596 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1521.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47598 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 982.30 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.37 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47600 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47602 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.92 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47604 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47606 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.86 examples/s]:00<00:00, 2144.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47607 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1284.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]amples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 597.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1994.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1463.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.60 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1187.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47614 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.93 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47615 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1407.84 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1200.95 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47620 ...Processing shard 47619 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 23.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.37 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 25.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.21 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 54.99 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47626 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1564.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47627 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1427.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1460.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 978.38 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47633 ...\n",
      "Processing shard 47634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.40 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.49 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.53 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47641 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.80 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1184.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47644 ...Processing shard 47645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 19.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.11 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 720.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.21 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47650 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1155.97 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 992.09 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47652 ...\n",
      "Processing shard 47653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47656 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2222.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47657 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47659 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47660 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 744.48 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2238.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47663 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1621.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.63 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 629.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 794.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 970.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47668 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 707.62 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47669 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 483.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47671 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.28 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1324.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 984.32 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.55 examples/s]:00<00:00, 1913.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47673 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 942.86 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1357.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1197.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47676 ...\n",
      "Processing shard 47677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 691.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47681 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1221.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47682 ...\n",
      "Processing shard 47683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1437.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1305.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47685 ...\n",
      "Processing shard 47686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1561.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2269.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.81 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47691 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47692 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47693 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47694 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 996.01 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.72 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.56 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.85 examples/s]:00<00:00, 1953.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1054.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1594.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47701 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1357.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]:00<00:00, 1095.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 862.74 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47707 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 953.85 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1197.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 936.36 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1061.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1072.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 703.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1104.82 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47715 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47717 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1555.68 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47719 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 613.45 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1296.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47722 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 28.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1344.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1620.67 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47727 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2241.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1441.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47730 ...Processing shard 47731 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47732 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.90 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]:00<00:00, 1262.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 857.20 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47740 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 755.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.99 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1220.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47742 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1051.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.09 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 685.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 757.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1131.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47747 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47750 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1630.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47752 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1382.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47753 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1331.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1833.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]:00<00:00, 2082.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1236.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.76 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 22.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.95 examples/s]:00<00:00, 2170.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.08 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.89 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1160.49 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1027.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 791.25 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47767 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.57 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47770 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47771 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1556.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47774 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 35.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 70.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.74 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1344.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 928.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1327.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47776 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 877.58 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 963.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1255.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47781 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47783 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1097.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 772.06 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 762.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47784 ...\n",
      "Processing shard 47785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 684.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1292.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47789 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1276.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 48.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.91 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 79.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.95 examples/s]:00<00:00, 1249.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 894.47 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47794 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1495.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.53 examples/s]:00<00:00, 1316.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 819.28 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.34 examples/s]:00<00:00, 524.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 413.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47797 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.99 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.17 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.95 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 406.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 528.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 467.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]:00<00:00, 1001.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.84 examples/s]:00<00:00, 1242.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 481.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 616.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 559.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 448.13 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 995.09 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 937.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47807 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 728.81 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 880.21 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 75.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 511.34 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 71.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 73.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1285.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 908.69 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1592.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.12 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1417.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47821 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1831.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47822 ...Processing shard 47823 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1861.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47828 ...\n",
      "Processing shard 47829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.47 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1047.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47830 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1024.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47832 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47833 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1936.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1351.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1232.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47835 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2255.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1861.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1400.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 62.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 82.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 697.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 72.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47841 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 642.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1557.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47842 ...Processing shard 47843 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1477.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.64 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.88 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.29 examples/s]:00<00:00, 969.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 726.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1328.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47855 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47856 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47857 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.26 examples/s]:00<00:00, 2225.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47860 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.50 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.14 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47863 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47864 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1157.29 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.88 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47868 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.34 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 19.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1841.63 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1528.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47874 ...Processing shard 47875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  9.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.66 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 684.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1471.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 493.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47879 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.28 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47882 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.40 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 21.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 538.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47884 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.51 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47887 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1490.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 751.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47888 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 524.85 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1046.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  3.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.25 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47892 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.43 examples/s]:00<00:00, 1350.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.96 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47893 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47894 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1226.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1363.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47903 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 750.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]:00<00:00, 2139.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1063.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47905 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 935.16 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 620.13 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47909 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47910 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1839.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 976.75 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47914 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 576.76 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47915 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 843.03 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 576.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47919 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47920 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47921 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1366.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47923 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.38 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47924 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 21.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1409.55 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47925 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1015.88 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1614.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]:00<00:00, 2113.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1285.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.35 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 26.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47934 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2150.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.42 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47935 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47936 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1277.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47937 ...\n",
      "Processing shard 47938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.83 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.17 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.25 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1256.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 933.99 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.66 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1017.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47944 ...Processing shard 47945 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1432.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.21 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47947 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.51 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1030.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47948 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47950 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 790.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.99 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1476.41 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 20.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1639.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47962 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1997.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 579.65 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 899.94 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47964 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47970 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 772.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.26 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 36.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 948.72 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47977 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1847.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.02 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.71 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47981 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2243.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1260.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47983 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.20 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 651.86 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.39 examples/s]:00<00:00, 1531.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47984 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1996.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 928.07 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1130.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1493.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.66 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47989 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1279.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47990 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 47991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.19 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2135.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1241.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1290.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]xamples]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 47999 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.72 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48002 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1367.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1136.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1378.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 863.03 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.15 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1284.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48008 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 841.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1826.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48009 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48010 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  2.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48012 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48013 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 22.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1225.96 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48015 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1844.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48017 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1423.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48018 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48019 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48020 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1722.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48021 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.46 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48023 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.17 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1852.81 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48025 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1121.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48026 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]:00<00:00, 2172.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1313.23 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48028 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1440.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1478.23 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.35 examples/s]:00<00:00, 2214.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1308.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48031 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2231.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1654.56 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1108.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1405.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48037 ...\n",
      "Processing shard 48038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1464.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48039 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48040 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.23 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48041 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.81 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1010.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48046 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 520.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48047 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 708.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48048 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 30.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.24 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48050 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1005.77 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48051 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.60 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 810.34 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48054 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1848.73 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1059.60 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 20.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1183.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]:00<00:00, 2181.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48059 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48060 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 638.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48061 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1346.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48063 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48064 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.37 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  4.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48066 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1631.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1115.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48070 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.21 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48071 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 18.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48072 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.76 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 28.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.60 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48074 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.94 examples/s]:00<00:00, 1795.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1122.00 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48077 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1818.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48079 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1094.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.55 examples/s]:00<00:00, 1867.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 941.64 examples/s] \n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48081 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48082 ...\n",
      "Processing shard 48083 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2134.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1584.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48086 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1355.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1157.93 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48089 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.41 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48090 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.67 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.84 examples/s]:00<00:00, 1807.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48092 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48093 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.17 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48094 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1860.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48095 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.24 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48097 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1626.41 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48099 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48101 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1492.37 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 628.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1033.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48104 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48105 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.42 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48106 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.07 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.11 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48107 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48108 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 768.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48109 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 774.55 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48110 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1230.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48113 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1441.59 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 24.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1572.45 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48116 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1596.99 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48117 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48118 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2248.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48119 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1859.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1531.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48123 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 998.44 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48124 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1293.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1557.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1592.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48128 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2201.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1074.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2145.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]:00<00:00, 1971.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1223.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48136 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48137 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48138 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 21.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1052.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48139 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.47 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.74 examples/s]:00<00:00, 2198.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1286.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48140 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48141 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.18 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48143 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.15 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1512.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2221.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  9.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 627.73 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48150 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48151 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.93 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48155 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48158 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1626.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48159 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48161 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48163 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1610.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48164 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.43 examples/s]:00<00:00, 772.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 592.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48166 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.97 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1514.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48167 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2224.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.06 examples/s]:00<00:00, 1156.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 762.25 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 607.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48170 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1196.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48173 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48176 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1354.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 919.00 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 467.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48181 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 16.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 19.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48182 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 597.70 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48183 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1618.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.55 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1025.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48186 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1081.49 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48187 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.17 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48190 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48191 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1922.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1191.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48194 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1394.79 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]:00<00:00, 2194.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1324.64 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1674.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48198 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48199 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1428.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.08 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.34 examples/s]:00<00:00, 764.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1831.97 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1024.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 603.56 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48207 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1866.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48209 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48210 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48214 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1214.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 607.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48215 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1394.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48219 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1144.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.60 examples/s]:00<00:00, 2204.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1248.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48221 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 636.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48223 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48224 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1861.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48227 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1562.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1571.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48229 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  5.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 901.23 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 569.70 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1004.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1638.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48233 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:06<00:00,  1.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.56 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48238 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.41 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48241 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.53 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48242 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.41 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 615.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.52 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48246 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1255.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1091.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48247 ...\n",
      "Processing shard 48248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2159.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48249 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48250 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.11 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48253 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48254 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 778.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 674.38 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1246.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 748.15 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48259 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48260 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1007.40 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 711.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 971.97 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48263 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 537.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48265 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.34 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.16 examples/s]:00<00:00, 1200.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 826.24 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48266 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1041.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 656.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 686.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 537.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 524.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48269 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48270 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.16 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48271 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  1.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1038.80 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48272 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.77 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48274 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1617.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48275 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.34 examples/s]:00<00:00, 1184.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 822.98 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48277 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48279 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48280 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1222.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48281 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1091.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48282 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1441.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2263.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1704.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48287 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48289 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48290 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 837.50 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.74 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.62 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48292 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.20 examples/s]:00<00:00, 2214.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1377.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48293 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48294 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48295 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1512.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1344.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48299 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 97.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 621.47 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.72 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.51 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48303 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48304 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.61 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48307 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48309 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.44 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 773.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48312 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 542.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48313 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1118.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1276.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48317 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1557.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48319 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2172.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 794.79 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1287.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.87 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48324 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1572.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48325 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48326 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48327 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1227.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48328 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48329 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48330 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1383.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1832.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48332 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 649.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48334 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1305.82 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48335 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.84 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 46.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48336 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48337 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2209.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48338 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1563.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48339 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.32 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48341 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1291.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48343 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.52 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48345 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1581.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48347 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1350.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 703.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  3.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  3.21 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.84 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48352 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.52 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1497.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2294.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48354 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1860.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1875.81 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1678.73 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:01<00:01,  2.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48359 ...\n",
      "Processing shard 48360 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 543.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2229.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.73 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48363 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 642.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1662.76 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1881.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 970.54 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48366 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 508.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48368 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.46 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2183.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48372 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48373 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1488.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48374 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.85 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.86 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48375 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1514.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.82 examples/s]:00<00:00, 1091.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 789.26 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48376 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 501.49 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48377 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.52 examples/s]:00<00:00, 1922.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1330.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48378 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48379 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48381 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1439.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1310.05 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48383 ...Processing shard 48384 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]:00<00:00, 2173.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48385 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 637.26 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1038.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48386 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48387 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.01 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48388 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 985.04 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48389 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1567.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.68 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48391 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2250.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1424.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1641.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1403.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48397 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1391.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1363.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48400 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1647.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48401 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2194.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1694.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48409 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48411 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1534.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2253.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48413 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48414 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48415 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.95 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48418 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1288.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48419 ...\n",
      "Processing shard 48420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.91 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 17.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1543.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1292.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48422 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1557.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48423 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48424 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1816.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.17 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48427 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.03 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48429 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1360.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48430 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48432 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.24 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48433 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1449.06 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1417.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.47 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]:00<00:00, 2072.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1250.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48438 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 672.99 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48443 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1275.06 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48446 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48447 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2150.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.00 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1432.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48451 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48453 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1468.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48454 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1271.53 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1020.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48457 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48458 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.59 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 16.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1670.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1481.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48462 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.53 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 18.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48463 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 829.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48464 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 733.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48465 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.74 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48467 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 85.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 868.90 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48468 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 799.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 692.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48469 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.56 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48470 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 107.20 examples/s]00<00:00, 1256.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 799.75 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48471 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 934.95 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 733.37 examples/s]]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48472 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48473 ...\n",
      "Processing shard 48474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48475 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1043.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48477 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 947.54 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48479 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48480 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1872.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48481 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48483 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1620.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1367.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1525.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1590.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48487 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1348.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1596.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 799.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48489 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 25.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48490 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48491 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 736.36 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 20.41 examples/s]:00<00:00, 1438.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48492 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 979.89 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.44 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48493 ...\n",
      "Processing shard 48494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 679.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48495 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 26.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1498.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48497 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 691.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1830.77 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48501 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 66.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1130.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 41.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48505 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1369.79 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 17.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1457.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48508 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.39 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48509 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1223.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48510 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 950.90 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48511 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 620.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1088.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 931.89 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48517 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.57 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 25.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48518 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 607.93 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48519 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48520 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 57.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1576.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 694.39 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48524 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.50 examples/s]:00<00:00, 2118.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1279.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.52 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1554.38 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48527 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1874.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1580.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 41.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1108.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 631.68 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1059.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48535 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48536 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.77 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.20 examples/s]:00<00:00, 1361.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48537 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.72 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48538 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1859.69 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.04 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48540 ...Processing shard 48541 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48542 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1742.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1089.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48544 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.47 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1501.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1118.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48548 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.05 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1103.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.80 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 625.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]:00<00:00, 2250.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48552 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1339.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48553 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 500.43 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48555 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1842.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.62 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 12.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48557 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48558 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1215.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1156.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48560 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1066.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 939.14 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 692.12 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1956.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48561 ...Processing shard 48562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 761.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 581.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1150.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48565 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.82 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1348.92 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1552.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1336.51 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 50.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1417.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.89 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48576 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48578 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1320.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48582 ...\n",
      "Processing shard 48583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.61 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1577.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48585 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1335.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48586 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1173.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1062.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48587 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.79 examples/s]:00<00:00, 1597.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48588 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1062.62 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48590 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.24 examples/s]:00<00:00, 1735.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1131.72 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48591 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.70 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48593 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48594 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.80 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48597 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.45 examples/s]:00<00:00, 2248.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48599 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1608.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1016.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 711.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1022.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.76 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 53.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 52.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48605 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1575.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1459.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1340.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48607 ...\n",
      "Processing shard 48608 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1624.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48609 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48610 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48611 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.95 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 17.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48612 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48613 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.20 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1777.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48616 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1155.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48617 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1367.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48618 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 877.06 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48619 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 604.55 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48620 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.22 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1487.34 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48621 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1432.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1824.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 760.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 678.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48624 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48625 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 560.29 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.96 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 891.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1328.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1128.60 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48628 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 621.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48629 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1372.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48630 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.98 examples/s]:00<00:00, 1456.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 869.65 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48631 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 673.43 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 732.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.54 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48633 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1539.83 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48635 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.71 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48638 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48639 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1826.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1849.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.92 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48642 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1583.28 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 128.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.09 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48645 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2063.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.21 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48647 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 138.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48648 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 650.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48649 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1272.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2203.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48651 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.79 examples/s]:00<00:00, 2211.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1321.93 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48654 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1601.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.82 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.36 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48658 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.06 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48661 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1424.70 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48664 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 860.02 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 464.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48665 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48667 ...\n",
      "Processing shard 48668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.32 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48670 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48672 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 670.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48674 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1457.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1310.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48675 ...\n",
      "Processing shard 48676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 899.99 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 824.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48680 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1000.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 76.81 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1293.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 642.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48685 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 975.56 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1110.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 842.57 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48687 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1856.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1329.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48692 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 44.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1801.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1521.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48695 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48696 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.39 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.21 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48698 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.38 examples/s]:00<00:00, 653.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 527.32 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1398.51 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1271.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48703 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48705 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.59 examples/s]:00<00:00, 734.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 574.68 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48706 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.72 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]:00<00:00, 1167.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 863.43 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48708 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1311.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48709 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 899.39 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.04 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1339.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48714 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.01 examples/s]:00<00:00, 773.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 625.00 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 26.35 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.86 examples/s]:00<00:00, 1903.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1177.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.38 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1209.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1530.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1168.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48721 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 125.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1476.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1317.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48722 ...\n",
      "Processing shard 48723 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1461.37 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48724 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1030.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48725 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 641.70 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 26.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48726 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1422.22 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 23.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48731 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1846.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1458.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1069.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48734 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 30.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1051.96 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1734.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.49 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1556.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48738 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1132.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48739 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 783.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48741 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1027.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48744 ...\n",
      "Processing shard 48745 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1845.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48746 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.62 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1390.05 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48754 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.62 examples/s]:00<00:00, 2176.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1270.14 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1599.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48756 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48757 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.96 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48759 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.24 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2166.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48761 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48762 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1481.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1334.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48763 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48764 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1465.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48766 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.55 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48772 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48773 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2169.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48775 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.90 examples/s]:00<00:00, 748.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 525.65 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.98 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48777 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.15 examples/s]:00<00:00, 2007.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1192.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48779 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1252.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 898.43 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48780 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.33 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1079.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1628.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48784 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48785 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1535.18 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48786 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48787 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 939.45 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 41.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48788 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.59 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 44.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48789 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 649.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48790 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48791 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1498.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1397.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.77 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48799 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 78.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48800 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.07 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48801 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.17 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48802 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48803 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.65 examples/s]:00<00:00, 2161.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1278.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1387.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1191.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48805 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48806 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 668.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 573.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.90 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48809 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1911.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48810 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.18 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1187.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1508.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48812 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1052.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48814 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 918.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48817 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 49.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.61 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1598.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48818 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1677.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 575.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1266.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48820 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 957.00 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 771.85 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48822 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1811.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1560.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48826 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 820.90 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48827 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1584.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48828 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48831 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 31.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 609.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.73 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 14.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1208.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.57 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48836 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.36 examples/s]:00<00:00, 2064.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1218.88 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48837 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.66 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.79 examples/s]:00<00:00, 1326.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 921.90 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48839 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1327.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48840 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 592.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1658.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48844 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1558.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48845 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1940.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48846 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1600.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1357.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48848 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.44 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1308.47 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48850 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.01 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 25.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48851 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 28.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1263.63 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48852 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 18.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.59 examples/s]:00<00:00, 2114.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1381.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1193.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1432.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48858 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48859 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2232.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.47 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48861 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 56.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1380.78 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 43.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.05 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2225.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1838.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48866 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.30 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.82 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48870 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1458.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48872 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48873 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1556.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48874 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.35 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48875 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48877 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48878 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 21.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1551.72 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.75 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48880 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.34 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.93 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1523.95 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48883 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 624.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.09 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48885 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2164.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1257.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1164.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48891 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.54 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1585.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 55.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.26 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.41 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.46 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1040.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 972.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48895 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1477.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48897 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.71 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 50.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48900 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.18 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48901 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1178.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 48902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48904 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.99 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1140.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48906 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.99 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 35.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1925.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.78 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1345.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.17 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48913 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2262.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1388.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.81 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.02 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 34.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48918 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1521.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1549.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1312.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 22.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.25 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1645.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1551.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.34 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48927 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1357.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48928 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48929 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1788.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  7.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.94 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48933 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1698.18 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:02<00:01,  1.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1304.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48935 ...\n",
      "Processing shard 48936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1519.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48938 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.63 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.00 examples/s]:00<?, ? examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48940 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48941 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1249.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48943 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 968.80 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48944 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 116.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.88 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1473.69 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48946 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1315.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 614.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.26 examples/s]:00<00:00, 2109.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1109.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48949 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1710.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48951 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  9.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.99 examples/s]:00<00:00, 2032.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1256.44 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.76 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48955 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1576.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48956 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1336.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1465.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48958 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48959 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48960 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.16 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1426.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1731.84 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48966 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.86 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.28 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2168.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48973 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1594.72 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1306.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48978 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.87 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48979 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1514.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2034.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48980 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1646.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.36 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48982 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1125.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.47 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.17 examples/s]:00<00:00, 2017.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1187.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48986 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1265.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48988 ...\n",
      "Processing shard 48989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.74 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.99 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.21 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48992 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.43 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 15.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48994 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 725.93 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1127.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1275.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48997 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 710.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48998 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.94 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 48999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49000 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1657.99 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 12.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49001 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.66 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1178.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49002 ...\n",
      "Processing shard 49003 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 41.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49004 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49005 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49006 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.92 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 15.95 examples/s]:00<00:00, 2227.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49007 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49008 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1791.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49009 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49010 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 684.64 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49011 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:01<00:01,  3.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1080.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49012 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2187.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49013 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49014 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]:00<00:00, 828.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 586.19 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49015 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49016 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1005.44 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49017 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1127.12 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49018 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1782.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49019 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49020 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1011.41 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 19.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49021 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.27 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49022 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.71 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1285.56 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49023 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1534.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49024 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49025 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.18 examples/s]:00<00:00, 2222.74 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1315.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49026 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1451.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49027 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49028 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1384.20 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49029 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 658.33 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49030 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.50 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 601.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 866.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49031 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 768.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49032 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49033 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49034 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1309.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49035 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1206.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49036 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.99 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49037 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1443.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49038 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.60 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49039 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  2.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1415.38 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49040 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 31.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1137.01 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49041 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1673.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49042 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]:00<00:00, 2166.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.79 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49043 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1108.91 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49044 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49045 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49046 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1506.98 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49047 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1304.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49048 ...\n",
      "Processing shard 49049 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.24 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 921.62 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.30 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49050 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1499.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2236.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49051 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49052 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1540.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49053 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49054 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49055 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1643.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49056 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49057 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.55 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1389.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49058 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49059 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1730.23 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49060 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49061 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49062 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1294.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49063 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49064 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.08 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49065 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49066 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 641.01 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.59 examples/s]:00<00:00, 1208.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49067 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.96 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 19.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49068 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49069 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49070 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49071 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49072 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1491.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1351.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49073 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49074 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49075 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.33 examples/s]:00<00:00, 2188.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1920.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49076 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1385.34 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 18.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49077 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 36.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.80 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49078 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49079 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1006.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49080 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49081 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.98 examples/s]:00<00:00, 2102.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.15 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49082 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49083 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49084 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 872.54 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49085 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.62 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49086 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.88 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49087 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1441.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49088 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49089 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1141.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 999.54 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49090 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 679.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49091 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.09 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  4.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49092 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1204.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.33 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 18.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49094 ...Processing shard 49093 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49095 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.24 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49096 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 980.29 examples/s] \n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49097 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49098 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1053.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49099 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49100 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1037.78 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49101 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:02<00:04,  1.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 31.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49102 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1560.82 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 22.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49103 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49104 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 941.88 examples/s] \n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49105 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1016.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49106 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1258.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49107 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.70 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.81 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49108 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2160.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49109 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1212.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49110 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1379.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49111 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49112 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49113 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49114 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 634.84 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:03<00:01,  1.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49115 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49116 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1445.25 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49117 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49118 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49119 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49120 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1180.70 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49121 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49122 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.13 examples/s]:00<00:00, 2224.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1238.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49123 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 663.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49124 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1106.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49125 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.28 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:01,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49126 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.26 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49127 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1706.82 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49128 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 630.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49129 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.30 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 957.74 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49130 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49131 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49132 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.60 examples/s]:00<00:00, 2203.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 973.50 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.41 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49133 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49134 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49135 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2115.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49136 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49137 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49138 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 622.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49139 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 993.62 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49140 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1064.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49141 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 629.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49142 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 596.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49143 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49144 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1144.15 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  5.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49145 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.10 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1498.37 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49146 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.16 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  9.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49147 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1194.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49148 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.97 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49149 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.33 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49150 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 655.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49151 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49152 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2240.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1812.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49153 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49154 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1616.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49155 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1359.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49156 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1045.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 966.76 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49157 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1052.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49158 ...\n",
      "Processing shard 49159 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 650.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49160 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49161 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49162 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 867.17 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49163 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49164 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49165 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.78 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.24 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49166 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.92 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49167 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.38 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49168 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49169 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 591.66 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 892.14 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49170 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1197.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49171 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 31.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 916.26 examples/s] \n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49172 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1201.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49173 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.31 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2204.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49174 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1603.48 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49175 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1055.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49176 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 998.85 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49177 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49178 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 576.79 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49179 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:06,  1.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49180 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49181 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1490.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49182 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1660.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49183 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49184 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1416.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49185 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49186 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1840.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49187 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49188 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.84 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49189 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49190 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 10.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1114.80 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49191 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.15 examples/s]:00<00:00, 1130.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 678.16 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 17.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49192 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49193 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 563.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1240.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49194 ...\n",
      "Processing shard 49195 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1849.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49196 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1480.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49197 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:06<00:00,  1.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1229.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49198 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.87 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49199 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 21.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49200 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49201 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.04 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:03<00:03,  1.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49202 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1633.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49203 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49204 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1743.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49205 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.50 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49206 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.63 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49207 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49208 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.09 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.30 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49209 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 708.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49210 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49211 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49212 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1687.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49213 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1337.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 956.95 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49214 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49215 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1244.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49216 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49217 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49218 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.27 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.88 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49219 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.14 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49220 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1522.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49221 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49222 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.27 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 30.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49223 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1589.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49224 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1366.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49225 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1312.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49226 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.13 examples/s]:00<00:00, 1671.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1068.54 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49227 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49228 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49229 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1483.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49230 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49231 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2299.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49232 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1846.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49233 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1619.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49234 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49235 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.17 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  4.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49236 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49237 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1713.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49238 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1506.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49239 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.84 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49240 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2115.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1628.38 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49242 ...Processing shard 49241 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49243 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.73 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 552.97 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 776.92 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49244 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49245 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1752.46 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49246 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1622.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49247 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49248 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1652.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49249 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49250 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49251 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:02<00:00,  2.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49252 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1846.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49253 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49254 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49255 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49256 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1343.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49257 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 912.25 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 689.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49258 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 520.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 917.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49259 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49260 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1851.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49261 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 633.84 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 15.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49262 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49263 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1747.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49264 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49265 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49266 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 11.09 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49267 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49268 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 896.48 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 817.24 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49269 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 743.47 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49270 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 19.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49271 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49272 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 13.62 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49273 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  8.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49274 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49275 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.65 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.23 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49276 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.11 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49277 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49278 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.04 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1152.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.57 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49279 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2196.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49280 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49281 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.02 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1850.77 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49282 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 983.65 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]:00<00:00, 1369.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49283 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 912.03 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49284 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1444.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49285 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49286 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1456.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49287 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49288 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.83 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49289 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1815.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49290 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49291 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 987.45 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 920.69 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49292 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 489.08 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49293 ...Processing shard 49294 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1806.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49295 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.18 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49296 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49297 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1611.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49298 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1621.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49299 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1920.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49300 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1591.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49301 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1411.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49302 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 657.98 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49303 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  3.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1664.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49304 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1851.59 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49305 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1096.51 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49306 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1149.09 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49307 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1179.17 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 21.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49308 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49309 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49310 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1252.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49311 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1625.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49312 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2091.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1603.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49313 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49314 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.85 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.96 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49315 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 699.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 727.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49316 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 592.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49317 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1061.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49318 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1716.16 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49319 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1551.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49320 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49321 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 67.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.61 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49322 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49323 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1750.73 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49324 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49325 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49326 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1688.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49327 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49328 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.33 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49329 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 11.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 943.07 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49330 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1135.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49331 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1480.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49332 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1861.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49333 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 827.18 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49334 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49335 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 941.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 820.02 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49336 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49337 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.09 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49338 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1512.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49339 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.62 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1725.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2170.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49340 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49341 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49342 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.90 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1642.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49343 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1176.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49344 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 640.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49345 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 11.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49346 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49347 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1721.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49348 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.18 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49349 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.75 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49350 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.62 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49351 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49352 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.76 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.37 examples/s]:00<00:00, 2178.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1247.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49353 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1462.13 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49354 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49355 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 522.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49356 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49357 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:00, 11.68 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:02,  2.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49358 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.53 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49359 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 723.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49360 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 626.30 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49361 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49362 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1386.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49363 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1797.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49364 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.75 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49365 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1697.07 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49366 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 952.11 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 886.18 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49367 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:01<00:03,  1.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49368 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 599.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49369 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49370 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.64 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1485.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49371 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1007.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49372 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  4.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49373 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1771.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49374 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 15.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49375 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49376 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 597.27 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49377 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1612.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49378 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1322.39 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  9.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49379 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1349.57 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49380 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 462.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49381 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.49 examples/s]:00<00:00, 2104.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1278.41 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49382 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 671.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.15 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49383 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1465.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49384 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1352.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49385 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 545.01 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49386 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.88 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 19.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49387 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49388 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49389 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49390 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1681.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49391 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49392 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49393 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1550.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49394 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1321.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49395 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.29 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49396 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1383.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49397 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1696.81 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49398 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49399 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1489.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49400 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49401 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.24 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49402 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49403 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1517.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1358.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49404 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49405 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1413.59 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49406 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49407 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1735.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49408 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.94 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49409 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1655.70 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49410 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 37.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 58.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.21 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.86 examples/s]:00<00:00, 1322.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 931.32 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 722.14 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49411 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49412 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1407.66 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  6.19 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49413 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1095.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 885.69 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1087.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49414 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49415 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49416 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.36 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1303.59 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49417 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1573.33 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49418 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.21 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2150.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49419 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1640.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49420 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.13 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 663.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1453.33 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49421 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1235.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 22.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49422 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 154.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49423 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 91.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.20 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49424 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49425 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 80.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 622.69 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49426 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1804.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49427 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49428 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 663.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1404.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49429 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  6.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49430 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.62 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  6.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49431 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1787.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1560.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49432 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1328.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49433 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1637.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49434 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49435 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1167.27 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49436 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.89 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49437 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49438 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1171.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49439 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49440 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1854.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49441 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.40 examples/s]:00<00:00, 2116.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1277.97 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49442 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.37 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49443 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49444 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.85 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49445 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49446 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1225.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49447 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 544.37 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 10.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49448 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1124.21 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49449 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49450 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49451 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49452 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1325.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49453 ...\n",
      "Processing shard 49454 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.68 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49455 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.24 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  6.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49456 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  7.25 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.93 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49457 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1396.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.69 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49458 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49459 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.95 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.23 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1712.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2111.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49460 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1703.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49461 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.95 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1459.78 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49462 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1792.05 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49463 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2192.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49464 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1124.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49465 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1634.65 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.56 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  7.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49466 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49467 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 791.10 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49468 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1635.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49469 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 29.00 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 973.72 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1242.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49470 ...\n",
      "Processing shard 49471 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 667.51 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  8.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49472 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.50 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1004.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49473 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1392.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49474 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.54 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 592.08 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 879.17 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49475 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 27.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49476 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.98 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1569.43 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  8.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49477 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1133.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49478 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 588.83 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49479 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49480 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1224.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49481 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49482 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.08 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 674.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49483 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1720.03 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  8.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49484 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.15 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49485 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.82 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00,  5.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49486 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49487 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1683.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49488 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1230.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49489 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1621.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49490 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 788.96 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49491 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1790.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1166.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49492 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 777.88 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49493 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1446.12 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.24 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49494 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 988.32 examples/s] \n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49495 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49496 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.93 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.42 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.83 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49497 ...\n",
      "Processing shard 49498 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 627.76 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49499 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.55 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1510.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.45 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49500 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1857.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49501 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1849.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49502 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.45 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49503 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 13.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1740.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49504 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49505 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]:00<00:00, 2174.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1098.60 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49506 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49507 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49508 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 53.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49509 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.36 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49510 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49511 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.83 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1686.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49512 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 616.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49513 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1846.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49514 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1181.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49515 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49516 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 653.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49517 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.06 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49518 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1715.20 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 15.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49519 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1211.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 803.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49520 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 717.88 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49521 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.99 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49522 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  2.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49523 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.71 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1546.57 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.99 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49524 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1178.59 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49525 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49526 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49527 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49528 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.49 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 698.13 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49529 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  7.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 734.75 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49530 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 945.20 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49531 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  7.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49532 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 16.02 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.92 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.05 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49533 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49534 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1470.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1225.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49535 ...\n",
      "Processing shard 49536 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1395.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49537 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49538 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 620.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49539 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 25.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1724.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49540 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.79 examples/s]:00<00:00, 2183.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1279.48 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49541 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1537.22 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49542 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2242.79 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49543 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  5.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1401.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1254.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49544 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 61.87 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49545 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 32.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 60.53 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.69 examples/s]:00<00:00, 1962.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1215.61 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49546 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1080.34 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49547 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 659.92 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49548 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1412.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49549 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1258.23 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49550 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 123.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49551 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 107.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.04 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49552 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1067.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 821.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49553 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49554 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49555 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2090.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1281.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 51.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49556 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1551.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1373.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49557 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 12.15 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 815.79 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49558 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 95.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.81 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.78 examples/s]:00<00:00, 1646.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1078.26 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49559 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1427.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1305.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49560 ...\n",
      "Processing shard 49561 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49562 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.06 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49563 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 112.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49564 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 132.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1821.14 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49565 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49566 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49567 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49568 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1356.78 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49569 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49570 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 102.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49571 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 110.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1057.87 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49572 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1341.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1101.26 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49573 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 13.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49574 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 128.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.39 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49575 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49576 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 90.85 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49577 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1013.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 611.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49578 ...\n",
      "Processing shard 49579 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 105.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49580 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1675.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49581 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.36 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49582 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1259.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49583 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49584 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.51 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.63 examples/s]:00<00:00, 1816.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1134.71 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49585 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.68 examples/s]:00<00:00, 2106.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1261.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.61 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49586 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1785.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1630.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49587 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.67 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49588 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 123.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1843.65 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49589 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.91 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49590 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.17 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49591 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.69 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 54.58 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.52 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49592 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 579.56 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49593 ...Processing shard 49594 ...\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 91.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.79 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49595 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 81.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1702.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49596 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.91 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49597 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49598 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 83.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 860.97 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49599 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 87.90 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  7.12 examples/s]:00<?, ? examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49600 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 767.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.28 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49601 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 143.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1274.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.43 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49602 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  9.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49603 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 135.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 157.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 789.59 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49604 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 619.11 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49605 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1511.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49606 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 680.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49607 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 74.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 92.46 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1906.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49608 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 922.33 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 846.18 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49609 ...\n",
      "Processing shard 49610 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1380.22 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49611 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  7.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 84.82 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1482.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 161.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49612 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1075.95 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49613 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1142.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49614 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 84.02 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 121.87 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.07 examples/s]:00<00:00, 1425.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 970.51 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 102.69 examples/s]00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49615 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 998.88 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 69.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49616 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.96 examples/s]:00<00:00, 1694.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 954.15 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 623.65 examples/s] \n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  5.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49617 ...Processing shard 49618 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 981.53 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 897.13 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49619 ...\n",
      "Processing shard 49620 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 138.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49621 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 139.17 examples/s]00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1111.96 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49622 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.78 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 54.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49623 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 56.07 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:06,  1.05 examples/s]:00<?, ? examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 25.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49624 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2044.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1605.32 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49625 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 155.03 examples/s]00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 109.91 examples/s]00<00:00, 1657.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 138.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 727.56 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 856.70 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49626 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49627 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 145.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 897.71 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1098.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49628 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 876.42 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49629 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1116.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 720.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49630 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 623.01 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 37.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49631 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:01<00:00,  5.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 153.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49632 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.51 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1030.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49633 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  3.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49634 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 165.86 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 145.12 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 95.37 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1077.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1001.62 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49635 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.53 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49636 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1188.82 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49637 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 84.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 646.84 examples/s]]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49638 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 134.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 779.05 examples/s] \n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49639 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 113.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1374.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1410.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49640 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1342.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1016.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 880.12 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49641 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 42.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49642 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 95.07 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1319.43 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49643 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.19 examples/s]:00<00:00, 1811.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49644 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1161.45 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49645 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 520.12 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49646 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1798.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49647 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 121.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 100.81 examples/s]00<00:00, 790.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 589.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49648 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 98.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.72 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 18.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49649 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 106.04 examples/s]00<00:00, 1593.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 865.36 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1836.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49650 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1252.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49651 ...\n",
      "Processing shard 49652 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1719.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49653 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 885.74 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49654 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.19 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.02 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1423.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49655 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.39 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49656 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 583.67 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49657 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.69 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1451.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49658 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2229.38 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49659 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 16.82 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2005.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49660 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.91 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.98 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49661 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1408.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49662 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.24 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 16.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49663 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1663.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49664 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1765.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49665 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.48 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 610.66 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49666 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:02,  3.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.40 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49667 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00, 17.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49668 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49669 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.79 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1365.39 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49670 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1507.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2176.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49671 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.29 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49672 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  50%|█████     | 4/8 [00:00<00:00,  6.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1262.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49673 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1684.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49674 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.90 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1522.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2134.51 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49675 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49676 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1700.51 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49677 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49678 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49679 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49680 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1607.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49681 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 17.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.37 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49682 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1472.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49683 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1756.59 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.90 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49684 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1814.34 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49685 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 77.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1783.77 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 24.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49686 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.36 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1295.14 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  5.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49687 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.94 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1515.69 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49688 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1154.74 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49689 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1718.27 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49690 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.34 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49691 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1448.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1307.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49692 ...\n",
      "Processing shard 49693 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  3.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1088.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49694 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1016.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49695 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:01<00:02,  2.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49696 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.41 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1559.87 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49697 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.45 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 13.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49698 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1386.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1038.32 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49699 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49700 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.66 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.90 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49701 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1659.55 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  6.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49702 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1776.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49703 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 38.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.74 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 39.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49704 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.82 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1714.85 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49705 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  6.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.17 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49706 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 12.72 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1690.40 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49707 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 35.76 examples/s]:00<00:00, 2208.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1344.49 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49708 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1809.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49709 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.86 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.58 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s] 8/8 [00:00<00:00, 1671.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49710 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1174.30 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49711 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1249.05 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49712 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1632.02 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49713 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49714 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.93 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49715 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.03 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1549.72 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49716 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1371.42 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1170.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49717 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 761.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 643.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49718 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1762.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49719 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49720 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.02 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.66 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.39 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49721 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 985.13 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1019.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49722 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 787.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49723 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:01,  4.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49724 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.69 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49725 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1093.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49726 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1767.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49727 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.20 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1679.57 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:04,  1.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49728 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.34 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  8.27 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49729 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.69 examples/s]:00<00:00, 2051.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1076.67 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49730 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49731 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1810.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49732 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.31 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1297.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49733 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 717.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49734 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1399.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49735 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 938.87 examples/s] \n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49736 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49737 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1784.34 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49738 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 48.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1425.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49739 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49740 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1769.00 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.28 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49741 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.09 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49742 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1763.42 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49743 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 713.38 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 19.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49744 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1799.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49745 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1180.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49746 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1649.76 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49747 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.97 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1744.36 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49748 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1609.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49749 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49750 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1665.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49751 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.67 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1456.99 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49752 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49753 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.90 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 10.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49754 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1680.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49755 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1742.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49756 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.37 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1672.29 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:01,  3.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49757 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49758 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1175.78 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49759 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.29 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49760 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1309.44 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49761 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.09 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49762 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1456.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1236.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49763 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.89 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1795.31 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49764 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1748.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49765 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1755.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.71 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49766 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.30 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49767 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49768 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:00<00:00,  9.03 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49769 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49770 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.91 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49771 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 662.15 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 19.21 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49772 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.82 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.41 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1466.09 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.58 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49773 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1148.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49774 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.30 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1500.91 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49775 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1819.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49776 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1723.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1545.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49777 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1295.74 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49778 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1496.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49779 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1693.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49780 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1676.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.37 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49781 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 40.19 examples/s]:00<00:00, 1315.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 871.72 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49782 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1505.63 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49783 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 50.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1353.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1926.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49784 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1582.68 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 11.80 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49785 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.81 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1793.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.45 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49786 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1431.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49787 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.03 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.96 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49788 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.88 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1314.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1217.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49789 ...\n",
      "Processing shard 49790 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1701.89 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49791 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49792 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 45.18 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.03 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49793 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1347.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49794 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1760.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49795 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.07 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.10 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49796 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1717.57 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49797 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  4.49 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 16.50 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49798 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 39.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1442.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49799 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 65.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.74 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 731.50 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  7.35 examples/s]:00<00:00, 1541.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49800 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1123.35 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49801 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.04 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.49 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49802 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49803 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.12 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 49.46 examples/s]:00<00:00, 1695.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1111.33 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.62 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49804 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.84 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 844.88 examples/s] \n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49805 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1171.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49806 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.26 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1629.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49807 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1682.35 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49808 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1024.47 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49809 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.08 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1430.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1238.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49810 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 15.54 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49811 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  75%|███████▌  | 6/8 [00:01<00:00,  5.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49812 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1467.05 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00,  6.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49813 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 664.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.19 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49814 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1435.67 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49815 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1800.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49816 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.60 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.72 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49817 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.18 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1508.00 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49818 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.10 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.01 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1504.75 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49819 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1541.60 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 13.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49820 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49821 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1774.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.16 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49822 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1779.23 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49823 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1501.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49824 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.79 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1768.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49825 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 933.05 examples/s] \n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.24 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49826 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1644.34 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49827 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  5.36 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1778.57 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49828 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.14 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1132.94 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49829 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1668.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49830 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1184.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49831 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.80 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49832 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.83 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49833 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1736.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49834 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.97 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49835 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.19 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  2.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49836 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49837 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 675.11 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49838 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.38 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1825.50 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49839 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1153.63 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49840 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1689.89 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49841 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1745.08 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 16.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49842 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.37 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 707.17 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]mples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49843 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1627.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49844 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.23 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1808.28 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49845 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1503.20 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49846 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1817.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49847 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1423.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49848 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.76 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49849 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1667.63 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 18.08 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49850 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 17.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49851 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49852 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1726.32 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49853 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1794.83 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49854 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1829.78 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.40 examples/s]:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49855 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.16 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1887.52 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 693.63 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49856 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.65 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 536.86 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49857 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.63 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.77 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49858 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00,  8.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.29 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 635.74 examples/s]]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1039.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49859 ...Processing shard 49860 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49861 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.44 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49862 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1429.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49863 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.34 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1268.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1159.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49864 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.47 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49865 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1709.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49866 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1766.21 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:01<00:00,  4.93 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49867 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 33.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1058.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49868 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1813.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49869 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.49 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.41 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 780.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1630.28 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49870 ...\n",
      "Processing shard 49871 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1107.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49872 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 958.86 examples/s] "
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49873 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1728.99 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49874 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1708.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49875 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49876 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.65 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1737.67 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49877 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1749.36 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49878 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.66 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1615.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49879 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.34 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1594.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49880 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2202.60 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1741.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49881 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 47.12 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.25 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49882 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 34.13 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1781.68 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49883 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1827.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49884 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1370.41 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49885 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1138.29 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49886 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1206.60 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49887 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.26 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.82 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.79 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49888 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 665.18 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49889 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 27.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1770.68 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 10.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49890 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 43.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1729.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 28.05 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49891 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.42 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 660.99 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1475.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49892 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49893 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.70 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1162.06 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.38 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49894 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.07 examples/s]:00<00:00, 2193.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1295.09 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49895 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.13 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49896 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1636.32 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49897 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.42 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 553.90 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49898 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.01 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49899 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49900 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49901 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.12 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49902 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.01 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.21 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1090.60 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49903 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 645.24 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  3.86 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49904 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.83 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1732.56 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49905 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1669.54 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49906 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.63 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1802.06 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  4.70 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49907 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1757.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49908 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.57 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 649.31 examples/s]\n",
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 12.32 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49909 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.10 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.48 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1711.52 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49910 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 11.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1707.95 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49911 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.39 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.61 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.04 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49912 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1727.92 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49913 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.29 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.75 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49914 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.45 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 650.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 767.92 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49915 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 692.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49916 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1772.93 examples/s]\n",
      "Map:  50%|█████     | 4/8 [00:00<00:00, 27.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49917 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 22.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.43 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49918 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1102.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49919 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1147.98 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49920 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 46.10 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1145.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49921 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.20 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1789.95 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1288.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49922 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1086.26 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49923 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1699.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49924 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 34.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 713.00 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:01<00:05,  1.18 examples/s]:00<00:00, 1701.11 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49925 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.49 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 948.32 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49926 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1754.20 examples/s]\n",
      "Map:  75%|███████▌  | 6/8 [00:00<00:00, 14.07 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49927 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 44.04 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1759.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49928 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49929 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1165.04 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49930 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1163.71 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  2.40 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49931 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.27 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.59 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49932 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.62 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 661.48 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49933 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:01,  5.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 24.64 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1758.43 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49934 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.90 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1172.74 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49935 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1738.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49936 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.87 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1472.33 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49937 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.12 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1418.43 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49938 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1692.96 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1368.34 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  6.31 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49939 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.61 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1805.94 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.95 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49940 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.88 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1351.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1195.17 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49941 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49942 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1823.31 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49943 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  12%|█▎        | 1/8 [00:00<00:01,  3.85 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.51 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1786.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49944 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 10.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.46 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1796.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49945 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.32 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1780.93 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49946 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 17.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1878.54 examples/s]\n",
      "Map:  62%|██████▎   | 5/8 [00:00<00:00,  7.81 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49947 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.33 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1436.65 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49948 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1691.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49949 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.74 examples/s]:00<00:00, 2157.01 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1326.68 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49950 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1120.61 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49951 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.11 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1764.54 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49952 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 23.35 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1838.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49953 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.11 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 32.08 examples/s]:00<00:00, 1989.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 924.06 examples/s] \n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49954 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1190.42 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.55 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49955 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1653.42 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49956 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 26.70 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.21 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1257.71 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49957 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:00<00:00, 11.18 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49958 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 773.89 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 688.62 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  8.00 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49959 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.44 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49960 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1671.45 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49961 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  62%|██████▎   | 5/8 [00:02<00:01,  1.55 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.73 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1375.86 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49962 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.06 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 16.24 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1186.76 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49963 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1264.30 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 719.64 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49964 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 623.07 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49965 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.72 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.89 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1803.81 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49966 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1602.64 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49967 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.50 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1607.47 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49968 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.90 examples/s]:00<00:00, 2143.78 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1294.29 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49969 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1414.66 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49970 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1807.60 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:03,  2.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49971 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 652.33 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.91 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49972 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.73 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.16 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 743.21 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49973 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1085.52 examples/s]\n",
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 14.23 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49974 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  25%|██▌       | 2/8 [00:00<00:00, 13.81 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49975 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.39 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1746.63 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49976 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.91 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:03<00:00,  2.31 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1487.14 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1067.97 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49977 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Processing shard 49978 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1126.48 examples/s]\n",
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49979 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.23 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.57 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1623.10 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49980 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.58 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.59 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1387.58 examples/s]\n",
      "Saving the dataset (0/1 shards):   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49981 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1041.16 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1151.73 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49982 ...\n",
      "Processing shard 49983 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.75 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1828.88 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49984 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 25.25 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1586.27 examples/s]\n",
      "Map:  12%|█▎        | 1/8 [00:00<00:00,  8.56 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49985 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.48 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.19 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1775.37 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49986 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2174.06 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1651.30 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49987 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 12.84 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1773.58 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49988 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 19.15 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1739.02 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49989 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.13 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 681.03 examples/s]\n",
      "Map:  38%|███▊      | 3/8 [00:00<00:00, 24.66 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49990 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1613.50 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49991 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.98 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.26 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1174.22 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 2129.22 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49992 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  38%|███▊      | 3/8 [00:00<00:00,  9.01 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1394.56 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49993 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 30.54 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1119.45 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 21.52 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49994 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1273.99 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49995 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 15.55 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1434.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  8.46 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49996 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.53 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1761.85 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1338.06 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49997 ..."
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:  88%|████████▊ | 7/8 [00:00<00:00, 14.46 examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49998 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map:   0%|          | 0/8 [00:00<?, ? examples/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.06 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1820.94 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Processing shard 49999 ...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.77 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1733.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.86 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1364.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1077.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 20.52 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.14 examples/s]:00<00:00, 2246.40 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 37.49 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1002.61 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 11.28 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1309.19 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1169.67 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 715.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 36.29 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1831.27 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 14.05 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1753.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1450.75 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  5.92 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1479.47 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.81 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1837.89 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 18.59 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.58 examples/s]:00<?, ? examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.63 examples/s]:00<00:00, 1397.17 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 789.55 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 868.77 examples/s] \n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1447.56 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.96 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1923.22 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.57 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  3.35 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1666.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1566.35 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.68 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1661.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 13.40 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1871.00 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:02<00:00,  2.87 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.28 examples/s]:00<?, ? examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1751.00 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1878.64 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00,  9.71 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1862.38 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:00<00:00, 10.43 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1913.79 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.83 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1877.07 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  7.80 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1513.44 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  6.53 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1910.74 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.56 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1924.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.45 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1705.17 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:01<00:00,  4.98 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1936.54 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:04<00:00,  1.72 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1844.77 examples/s]\n",
      "Map: 100%|██████████| 8/8 [00:05<00:00,  1.58 examples/s]\n",
      "Saving the dataset (1/1 shards): 100%|██████████| 8/8 [00:00<00:00, 1685.22 examples/s]\n"
     ]
    }
   ],
   "source": [
    "max_workers = 32 # change this to the number of CPU cores your machine has \n",
    "\n",
    "with ProcessPool(max_workers=max_workers) as pool:\n",
    "    pool.map(process_shard, range(num_shards), timeout=60)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "777d2294-1a60-47ec-b271-209accda8e3a",
   "metadata": {},
   "source": [
    "https://github.com/yl4579/PL-BERT/blob/main/preprocess.ipynb"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "0448d89b-580f-4f96-93e2-17f2720da9cf",
   "metadata": {},
   "source": [
    "Collect all shards to form the processed dataset"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "id": "7e515efb-cf09-4127-bc34-30cb0a6385eb",
   "metadata": {
    "collapsed": true,
    "jupyter": {
     "outputs_hidden": true
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "shard_45340 loaded\n",
      "shard_9673 loaded\n",
      "shard_7960 loaded\n",
      "shard_6664 loaded\n",
      "shard_20404 loaded\n",
      "shard_42330 loaded\n",
      "shard_15475 loaded\n",
      "shard_18142 loaded\n",
      "shard_34130 loaded\n",
      "shard_27100 loaded\n",
      "shard_28529 loaded\n",
      "shard_43543 loaded\n",
      "shard_39613 loaded\n",
      "shard_26693 loaded\n",
      "shard_47174 loaded\n",
      "shard_11097 loaded\n",
      "shard_35481 loaded\n",
      "shard_1302 loaded\n",
      "shard_20799 loaded\n",
      "shard_32089 loaded\n",
      "shard_11296 loaded\n",
      "shard_17975 loaded\n",
      "shard_40429 loaded\n",
      "shard_36479 loaded\n",
      "shard_32717 loaded\n",
      "shard_26665 loaded\n",
      "shard_32275 loaded\n",
      "shard_37105 loaded\n",
      "shard_26880 loaded\n",
      "shard_49813 loaded\n",
      "shard_21484 loaded\n",
      "shard_12763 loaded\n",
      "shard_19735 loaded\n",
      "shard_16468 loaded\n",
      "shard_23986 loaded\n",
      "shard_5837 loaded\n",
      "shard_47807 loaded\n",
      "shard_48765 loaded\n",
      "shard_511 loaded\n",
      "shard_250 loaded\n",
      "shard_6393 loaded\n",
      "shard_22500 loaded\n",
      "shard_17573 loaded\n",
      "shard_38625 loaded\n",
      "shard_24483 loaded\n",
      "shard_43406 loaded\n",
      "shard_32059 loaded\n",
      "shard_6127 loaded\n",
      "shard_11279 loaded\n",
      "shard_25609 loaded\n",
      "shard_9748 loaded\n",
      "shard_10314 loaded\n",
      "shard_34935 loaded\n",
      "shard_20096 loaded\n",
      "shard_13592 loaded\n",
      "shard_36375 loaded\n",
      "shard_14695 loaded\n",
      "shard_20387 loaded\n",
      "shard_31765 loaded\n",
      "shard_24801 loaded\n",
      "shard_42087 loaded\n",
      "shard_32665 loaded\n",
      "shard_40446 loaded\n",
      "shard_16753 loaded\n",
      "shard_41778 loaded\n",
      "shard_23417 loaded\n",
      "shard_42315 loaded\n",
      "shard_16709 loaded\n",
      "shard_42917 loaded\n",
      "shard_22717 loaded\n",
      "shard_20534 loaded\n",
      "shard_15898 loaded\n",
      "shard_26191 loaded\n",
      "shard_26830 loaded\n",
      "shard_33128 loaded\n",
      "shard_13551 loaded\n",
      "shard_48087 loaded\n",
      "shard_35110 loaded\n",
      "shard_45880 loaded\n",
      "shard_22674 loaded\n",
      "shard_20095 loaded\n",
      "shard_9704 loaded\n",
      "shard_5218 loaded\n",
      "shard_7248 loaded\n",
      "shard_13510 loaded\n",
      "shard_33241 loaded\n",
      "shard_29480 loaded\n",
      "shard_9983 loaded\n",
      "shard_14887 loaded\n",
      "shard_30048 loaded\n",
      "shard_14410 loaded\n",
      "shard_18669 loaded\n",
      "shard_25367 loaded\n",
      "shard_31691 loaded\n",
      "shard_4417 loaded\n",
      "shard_8842 loaded\n",
      "shard_40520 loaded\n",
      "shard_42101 loaded\n",
      "shard_16025 loaded\n",
      "shard_9993 loaded\n",
      "shard_29024 loaded\n",
      "shard_48736 loaded\n",
      "shard_45198 loaded\n",
      "shard_918 loaded\n",
      "shard_46747 loaded\n",
      "shard_36054 loaded\n",
      "shard_30038 loaded\n",
      "shard_22660 loaded\n",
      "shard_24752 loaded\n",
      "shard_29996 loaded\n",
      "shard_10808 loaded\n",
      "shard_12044 loaded\n",
      "shard_22711 loaded\n",
      "shard_1249 loaded\n",
      "shard_29602 loaded\n",
      "shard_33677 loaded\n",
      "shard_19115 loaded\n",
      "shard_17372 loaded\n",
      "shard_24956 loaded\n",
      "shard_33470 loaded\n",
      "shard_17009 loaded\n",
      "shard_17640 loaded\n",
      "shard_12880 loaded\n",
      "shard_44092 loaded\n",
      "shard_26237 loaded\n",
      "shard_11396 loaded\n",
      "shard_7523 loaded\n",
      "shard_27290 loaded\n",
      "shard_23236 loaded\n",
      "shard_24788 loaded\n",
      "shard_15509 loaded\n",
      "shard_31074 loaded\n",
      "shard_16102 loaded\n",
      "shard_6150 loaded\n",
      "shard_39032 loaded\n",
      "shard_24184 loaded\n",
      "shard_26907 loaded\n",
      "shard_24633 loaded\n",
      "shard_26622 loaded\n",
      "shard_39271 loaded\n",
      "shard_19065 loaded\n",
      "shard_45904 loaded\n",
      "shard_16934 loaded\n",
      "shard_48549 loaded\n",
      "shard_25921 loaded\n",
      "shard_39507 loaded\n",
      "shard_17032 loaded\n",
      "shard_3131 loaded\n",
      "shard_17470 loaded\n",
      "shard_37120 loaded\n",
      "shard_36876 loaded\n",
      "shard_39508 loaded\n",
      "shard_42521 loaded\n",
      "shard_23739 loaded\n",
      "shard_46623 loaded\n",
      "shard_20753 loaded\n",
      "shard_31296 loaded\n",
      "shard_19230 loaded\n",
      "shard_9173 loaded\n",
      "shard_26098 loaded\n",
      "shard_7072 loaded\n",
      "shard_1438 loaded\n",
      "shard_41620 loaded\n",
      "shard_12313 loaded\n",
      "shard_11910 loaded\n",
      "shard_674 loaded\n",
      "shard_8258 loaded\n",
      "shard_23066 loaded\n",
      "shard_8713 loaded\n",
      "shard_38574 loaded\n",
      "shard_24695 loaded\n",
      "shard_12661 loaded\n",
      "shard_29310 loaded\n",
      "shard_47578 loaded\n",
      "shard_17469 loaded\n",
      "shard_1718 loaded\n",
      "shard_39445 loaded\n",
      "shard_49800 loaded\n",
      "shard_34478 loaded\n",
      "shard_38588 loaded\n",
      "shard_23047 loaded\n",
      "shard_42570 loaded\n",
      "shard_23735 loaded\n",
      "shard_36243 loaded\n",
      "shard_17828 loaded\n",
      "shard_11723 loaded\n",
      "shard_19127 loaded\n",
      "shard_26363 loaded\n",
      "shard_671 loaded\n",
      "shard_5199 loaded\n",
      "shard_13066 loaded\n",
      "shard_14826 loaded\n",
      "shard_28767 loaded\n",
      "shard_37698 loaded\n",
      "shard_28790 loaded\n",
      "shard_19361 loaded\n",
      "shard_4698 loaded\n",
      "shard_46075 loaded\n",
      "shard_33642 loaded\n",
      "shard_34315 loaded\n",
      "shard_15477 loaded\n",
      "shard_7102 loaded\n",
      "shard_46966 loaded\n",
      "shard_22065 loaded\n",
      "shard_19029 loaded\n",
      "shard_41501 loaded\n",
      "shard_19732 loaded\n",
      "shard_18873 loaded\n",
      "shard_35131 loaded\n",
      "shard_7143 loaded\n",
      "shard_19779 loaded\n",
      "shard_23539 loaded\n",
      "shard_41587 loaded\n",
      "shard_37688 loaded\n",
      "shard_31940 loaded\n",
      "shard_33461 loaded\n",
      "shard_42209 loaded\n",
      "shard_9315 loaded\n",
      "shard_43209 loaded\n",
      "shard_43921 loaded\n",
      "shard_10147 loaded\n",
      "shard_32833 loaded\n",
      "shard_40148 loaded\n",
      "shard_10073 loaded\n",
      "shard_2509 loaded\n",
      "shard_35198 loaded\n",
      "shard_38124 loaded\n",
      "shard_7377 loaded\n",
      "shard_42798 loaded\n",
      "shard_42538 loaded\n",
      "shard_8455 loaded\n",
      "shard_44286 loaded\n",
      "shard_13141 loaded\n",
      "shard_26455 loaded\n",
      "shard_31076 loaded\n",
      "shard_40588 loaded\n",
      "shard_29227 loaded\n",
      "shard_33974 loaded\n",
      "shard_436 loaded\n",
      "shard_21340 loaded\n",
      "shard_35751 loaded\n",
      "shard_32451 loaded\n",
      "shard_13048 loaded\n",
      "shard_634 loaded\n",
      "shard_37903 loaded\n",
      "shard_22345 loaded\n",
      "shard_42073 loaded\n",
      "shard_36633 loaded\n",
      "shard_27315 loaded\n",
      "shard_32505 loaded\n",
      "shard_19381 loaded\n",
      "shard_15550 loaded\n",
      "shard_39215 loaded\n",
      "shard_39209 loaded\n",
      "shard_11569 loaded\n",
      "shard_46388 loaded\n",
      "shard_48283 loaded\n",
      "shard_993 loaded\n",
      "shard_7786 loaded\n",
      "shard_4802 loaded\n",
      "shard_48618 loaded\n",
      "shard_44437 loaded\n",
      "shard_29680 loaded\n",
      "shard_48182 loaded\n",
      "shard_47548 loaded\n",
      "shard_11912 loaded\n",
      "shard_37677 loaded\n",
      "shard_14950 loaded\n",
      "shard_4098 loaded\n",
      "shard_13207 loaded\n",
      "shard_4986 loaded\n",
      "shard_18036 loaded\n",
      "shard_35313 loaded\n",
      "shard_1907 loaded\n",
      "shard_28610 loaded\n",
      "shard_2073 loaded\n",
      "shard_48884 loaded\n",
      "shard_33037 loaded\n",
      "shard_47341 loaded\n",
      "shard_26430 loaded\n",
      "shard_8450 loaded\n",
      "shard_38086 loaded\n",
      "shard_30199 loaded\n",
      "shard_11683 loaded\n",
      "shard_44738 loaded\n",
      "shard_19554 loaded\n",
      "shard_1859 loaded\n",
      "shard_39257 loaded\n",
      "shard_4126 loaded\n",
      "shard_2973 loaded\n",
      "shard_2801 loaded\n",
      "shard_15368 loaded\n",
      "shard_4154 loaded\n",
      "shard_6964 loaded\n",
      "shard_199 loaded\n",
      "shard_18552 loaded\n",
      "shard_41616 loaded\n",
      "shard_43500 loaded\n",
      "shard_37975 loaded\n",
      "shard_5207 loaded\n",
      "shard_9836 loaded\n",
      "shard_18390 loaded\n",
      "shard_5674 loaded\n",
      "shard_42554 loaded\n",
      "shard_6861 loaded\n",
      "shard_20135 loaded\n",
      "shard_29404 loaded\n",
      "shard_30599 loaded\n",
      "shard_7517 loaded\n",
      "shard_30293 loaded\n",
      "shard_19995 loaded\n",
      "shard_38866 loaded\n",
      "shard_8743 loaded\n",
      "shard_26177 loaded\n",
      "shard_32994 loaded\n",
      "shard_12741 loaded\n",
      "shard_29394 loaded\n",
      "shard_37908 loaded\n",
      "shard_24807 loaded\n",
      "shard_20168 loaded\n",
      "shard_39392 loaded\n",
      "shard_13872 loaded\n",
      "shard_42481 loaded\n",
      "shard_26407 loaded\n",
      "shard_31668 loaded\n",
      "shard_45453 loaded\n",
      "shard_46816 loaded\n",
      "shard_36342 loaded\n",
      "shard_13334 loaded\n",
      "shard_43752 loaded\n",
      "shard_35219 loaded\n",
      "shard_44900 loaded\n",
      "shard_32746 loaded\n",
      "shard_36021 loaded\n",
      "shard_12914 loaded\n",
      "shard_38167 loaded\n",
      "shard_15838 loaded\n",
      "shard_10639 loaded\n",
      "shard_19366 loaded\n",
      "shard_32040 loaded\n",
      "shard_12280 loaded\n",
      "shard_19744 loaded\n",
      "shard_26912 loaded\n",
      "shard_36583 loaded\n",
      "shard_14906 loaded\n",
      "shard_39086 loaded\n",
      "shard_40226 loaded\n",
      "shard_18351 loaded\n",
      "shard_2472 loaded\n",
      "shard_12633 loaded\n",
      "shard_22062 loaded\n",
      "shard_32119 loaded\n",
      "shard_37121 loaded\n",
      "shard_23581 loaded\n",
      "shard_36405 loaded\n",
      "shard_35 loaded\n",
      "shard_21494 loaded\n",
      "shard_36799 loaded\n",
      "shard_38293 loaded\n",
      "shard_25187 loaded\n",
      "shard_41582 loaded\n",
      "shard_29611 loaded\n",
      "shard_47245 loaded\n",
      "shard_20604 loaded\n",
      "shard_16979 loaded\n",
      "shard_9449 loaded\n",
      "shard_5915 loaded\n",
      "shard_14537 loaded\n",
      "shard_15029 loaded\n",
      "shard_25852 loaded\n",
      "shard_37419 loaded\n",
      "shard_43961 loaded\n",
      "shard_22751 loaded\n",
      "shard_23238 loaded\n",
      "shard_46465 loaded\n",
      "shard_14526 loaded\n",
      "shard_16977 loaded\n",
      "shard_36262 loaded\n",
      "shard_15439 loaded\n",
      "shard_16054 loaded\n",
      "shard_24936 loaded\n",
      "shard_13880 loaded\n",
      "shard_35318 loaded\n",
      "shard_28772 loaded\n",
      "shard_47065 loaded\n",
      "shard_48615 loaded\n",
      "shard_37204 loaded\n",
      "shard_16126 loaded\n",
      "shard_33418 loaded\n",
      "shard_40298 loaded\n",
      "shard_41338 loaded\n",
      "shard_26608 loaded\n",
      "shard_28397 loaded\n",
      "shard_42187 loaded\n",
      "shard_7181 loaded\n",
      "shard_42548 loaded\n",
      "shard_47598 loaded\n",
      "shard_25553 loaded\n",
      "shard_2331 loaded\n",
      "shard_15312 loaded\n",
      "shard_15160 loaded\n",
      "shard_8473 loaded\n",
      "shard_26412 loaded\n",
      "shard_16445 loaded\n",
      "shard_37390 loaded\n",
      "shard_15553 loaded\n",
      "shard_41336 loaded\n",
      "shard_30228 loaded\n",
      "shard_49364 loaded\n",
      "shard_9774 loaded\n",
      "shard_34136 loaded\n",
      "shard_25778 loaded\n",
      "shard_20185 loaded\n",
      "shard_48810 loaded\n",
      "shard_29453 loaded\n",
      "shard_32153 loaded\n",
      "shard_20689 loaded\n",
      "shard_21343 loaded\n",
      "shard_22035 loaded\n",
      "shard_10732 loaded\n",
      "shard_12253 loaded\n",
      "shard_12005 loaded\n",
      "shard_6459 loaded\n",
      "shard_15831 loaded\n",
      "shard_42667 loaded\n",
      "shard_25987 loaded\n",
      "shard_26357 loaded\n",
      "shard_15225 loaded\n",
      "shard_963 loaded\n",
      "shard_7713 loaded\n",
      "shard_41487 loaded\n",
      "shard_28701 loaded\n",
      "shard_6534 loaded\n",
      "shard_5397 loaded\n",
      "shard_48929 loaded\n",
      "shard_44094 loaded\n",
      "shard_29260 loaded\n",
      "shard_1597 loaded\n",
      "shard_45495 loaded\n",
      "shard_49826 loaded\n",
      "shard_9515 loaded\n",
      "shard_29292 loaded\n",
      "shard_15053 loaded\n",
      "shard_4227 loaded\n",
      "shard_27460 loaded\n",
      "shard_33765 loaded\n",
      "shard_18869 loaded\n",
      "shard_25560 loaded\n",
      "shard_26265 loaded\n",
      "shard_11106 loaded\n",
      "shard_33931 loaded\n",
      "shard_45032 loaded\n",
      "shard_27405 loaded\n",
      "shard_14854 loaded\n",
      "shard_28849 loaded\n",
      "shard_22961 loaded\n",
      "shard_16169 loaded\n",
      "shard_5288 loaded\n",
      "shard_41182 loaded\n",
      "shard_3837 loaded\n",
      "shard_6717 loaded\n",
      "shard_39811 loaded\n",
      "shard_31785 loaded\n",
      "shard_48063 loaded\n",
      "shard_27098 loaded\n",
      "shard_5420 loaded\n",
      "shard_999 loaded\n",
      "shard_19123 loaded\n",
      "shard_41556 loaded\n",
      "shard_35441 loaded\n",
      "shard_32064 loaded\n",
      "shard_47478 loaded\n",
      "shard_8350 loaded\n",
      "shard_29474 loaded\n",
      "shard_36945 loaded\n",
      "shard_31918 loaded\n",
      "shard_18243 loaded\n",
      "shard_49511 loaded\n",
      "shard_28354 loaded\n",
      "shard_25736 loaded\n",
      "shard_41467 loaded\n",
      "shard_43848 loaded\n",
      "shard_42724 loaded\n",
      "shard_11193 loaded\n",
      "shard_29715 loaded\n",
      "shard_30908 loaded\n",
      "shard_22285 loaded\n",
      "shard_33055 loaded\n",
      "shard_30101 loaded\n",
      "shard_21645 loaded\n",
      "shard_39021 loaded\n",
      "shard_2557 loaded\n",
      "shard_13835 loaded\n",
      "shard_18488 loaded\n",
      "shard_23741 loaded\n",
      "shard_37914 loaded\n",
      "shard_25050 loaded\n",
      "shard_34766 loaded\n",
      "shard_29795 loaded\n",
      "shard_34790 loaded\n",
      "shard_18055 loaded\n",
      "shard_24012 loaded\n",
      "shard_48813 loaded\n",
      "shard_25452 loaded\n",
      "shard_32722 loaded\n",
      "shard_1909 loaded\n",
      "shard_21062 loaded\n",
      "shard_49255 loaded\n",
      "shard_13604 loaded\n",
      "shard_20538 loaded\n",
      "shard_44764 loaded\n",
      "shard_33687 loaded\n",
      "shard_42268 loaded\n",
      "shard_25583 loaded\n",
      "shard_38052 loaded\n",
      "shard_22640 loaded\n",
      "shard_40717 loaded\n",
      "shard_22803 loaded\n",
      "shard_34546 loaded\n",
      "shard_35381 loaded\n",
      "shard_2931 loaded\n",
      "shard_35496 loaded\n",
      "shard_21058 loaded\n",
      "shard_19623 loaded\n",
      "shard_25877 loaded\n",
      "shard_15937 loaded\n",
      "shard_31272 loaded\n",
      "shard_45600 loaded\n",
      "shard_46101 loaded\n",
      "shard_7530 loaded\n",
      "shard_21776 loaded\n",
      "shard_24470 loaded\n",
      "shard_9973 loaded\n",
      "shard_2130 loaded\n",
      "shard_688 loaded\n",
      "shard_3905 loaded\n",
      "shard_30765 loaded\n",
      "shard_17014 loaded\n",
      "shard_9746 loaded\n",
      "shard_23792 loaded\n",
      "shard_29062 loaded\n",
      "shard_6191 loaded\n",
      "shard_35181 loaded\n",
      "shard_20032 loaded\n",
      "shard_10333 loaded\n",
      "shard_1864 loaded\n",
      "shard_43563 loaded\n",
      "shard_43579 loaded\n",
      "shard_16856 loaded\n",
      "shard_42232 loaded\n",
      "shard_23996 loaded\n",
      "shard_14814 loaded\n",
      "shard_6977 loaded\n",
      "shard_7566 loaded\n",
      "shard_47969 loaded\n",
      "shard_21807 loaded\n",
      "shard_46398 loaded\n",
      "shard_45603 loaded\n",
      "shard_2091 loaded\n",
      "shard_41565 loaded\n",
      "shard_20669 loaded\n",
      "shard_23938 loaded\n",
      "shard_49706 loaded\n",
      "shard_44011 loaded\n",
      "shard_6959 loaded\n",
      "shard_40139 loaded\n",
      "shard_40500 loaded\n",
      "shard_11136 loaded\n",
      "shard_7115 loaded\n",
      "shard_40234 loaded\n",
      "shard_31769 loaded\n",
      "shard_28727 loaded\n",
      "shard_36710 loaded\n",
      "shard_33114 loaded\n",
      "shard_6203 loaded\n",
      "shard_1073 loaded\n",
      "shard_43774 loaded\n",
      "shard_9524 loaded\n",
      "shard_40872 loaded\n",
      "shard_27228 loaded\n",
      "shard_37011 loaded\n",
      "shard_27884 loaded\n",
      "shard_21503 loaded\n",
      "shard_45783 loaded\n",
      "shard_48643 loaded\n",
      "shard_47786 loaded\n",
      "shard_826 loaded\n",
      "shard_48866 loaded\n",
      "shard_32659 loaded\n",
      "shard_23113 loaded\n",
      "shard_9276 loaded\n",
      "shard_47875 loaded\n",
      "shard_22979 loaded\n",
      "shard_18031 loaded\n",
      "shard_46247 loaded\n",
      "shard_39450 loaded\n",
      "shard_18363 loaded\n",
      "shard_15721 loaded\n",
      "shard_23204 loaded\n",
      "shard_20489 loaded\n",
      "shard_10264 loaded\n",
      "shard_28759 loaded\n",
      "shard_40840 loaded\n",
      "shard_12693 loaded\n",
      "shard_16461 loaded\n",
      "shard_10217 loaded\n",
      "shard_24979 loaded\n",
      "shard_40367 loaded\n",
      "shard_34481 loaded\n",
      "shard_8074 loaded\n",
      "shard_10396 loaded\n",
      "shard_44029 loaded\n",
      "shard_2224 loaded\n",
      "shard_4429 loaded\n",
      "shard_7163 loaded\n",
      "shard_4194 loaded\n",
      "shard_21797 loaded\n",
      "shard_12949 loaded\n",
      "shard_28865 loaded\n",
      "shard_1231 loaded\n",
      "shard_23384 loaded\n",
      "shard_32412 loaded\n",
      "shard_38760 loaded\n",
      "shard_48848 loaded\n",
      "shard_30039 loaded\n",
      "shard_12347 loaded\n",
      "shard_541 loaded\n",
      "shard_2196 loaded\n",
      "shard_35075 loaded\n",
      "shard_43701 loaded\n",
      "shard_14944 loaded\n",
      "shard_32223 loaded\n",
      "shard_40142 loaded\n",
      "shard_7188 loaded\n",
      "shard_49761 loaded\n",
      "shard_44155 loaded\n",
      "shard_44842 loaded\n",
      "shard_36589 loaded\n",
      "shard_31263 loaded\n",
      "shard_13529 loaded\n",
      "shard_41148 loaded\n",
      "shard_40542 loaded\n",
      "shard_11835 loaded\n",
      "shard_6836 loaded\n",
      "shard_30319 loaded\n",
      "shard_23603 loaded\n",
      "shard_14915 loaded\n",
      "shard_18059 loaded\n",
      "shard_1599 loaded\n",
      "shard_17173 loaded\n",
      "shard_2176 loaded\n",
      "shard_37785 loaded\n",
      "shard_40828 loaded\n",
      "shard_32187 loaded\n",
      "shard_20358 loaded\n",
      "shard_3149 loaded\n",
      "shard_20846 loaded\n",
      "shard_14846 loaded\n",
      "shard_4035 loaded\n",
      "shard_23460 loaded\n",
      "shard_20915 loaded\n",
      "shard_4130 loaded\n",
      "shard_27618 loaded\n",
      "shard_17848 loaded\n",
      "shard_40614 loaded\n",
      "shard_16155 loaded\n",
      "shard_15481 loaded\n",
      "shard_40923 loaded\n",
      "shard_45867 loaded\n",
      "shard_5092 loaded\n",
      "shard_9793 loaded\n",
      "shard_39526 loaded\n",
      "shard_24753 loaded\n",
      "shard_11616 loaded\n",
      "shard_35657 loaded\n",
      "shard_15238 loaded\n",
      "shard_45536 loaded\n",
      "shard_42466 loaded\n",
      "shard_37293 loaded\n",
      "shard_31628 loaded\n",
      "shard_37512 loaded\n",
      "shard_41963 loaded\n",
      "shard_11013 loaded\n",
      "shard_19953 loaded\n",
      "shard_32128 loaded\n",
      "shard_40235 loaded\n",
      "shard_23462 loaded\n",
      "shard_13152 loaded\n",
      "shard_32567 loaded\n",
      "shard_17934 loaded\n",
      "shard_33536 loaded\n",
      "shard_11992 loaded\n",
      "shard_37815 loaded\n",
      "shard_41009 loaded\n",
      "shard_36525 loaded\n",
      "shard_17520 loaded\n",
      "shard_10019 loaded\n",
      "shard_11084 loaded\n",
      "shard_49687 loaded\n",
      "shard_16711 loaded\n",
      "shard_27598 loaded\n",
      "shard_16383 loaded\n",
      "shard_4133 loaded\n",
      "shard_9985 loaded\n",
      "shard_35064 loaded\n",
      "shard_49313 loaded\n",
      "shard_1359 loaded\n",
      "shard_21144 loaded\n",
      "shard_24242 loaded\n",
      "shard_196 loaded\n",
      "shard_5455 loaded\n",
      "shard_12177 loaded\n",
      "shard_47615 loaded\n",
      "shard_2105 loaded\n",
      "shard_29751 loaded\n",
      "shard_19239 loaded\n",
      "shard_5068 loaded\n",
      "shard_27533 loaded\n",
      "shard_1260 loaded\n",
      "shard_10010 loaded\n",
      "shard_34049 loaded\n",
      "shard_17273 loaded\n",
      "shard_37393 loaded\n",
      "shard_30190 loaded\n",
      "shard_8193 loaded\n",
      "shard_26924 loaded\n",
      "shard_17718 loaded\n",
      "shard_9745 loaded\n",
      "shard_7543 loaded\n",
      "shard_457 loaded\n",
      "shard_14429 loaded\n",
      "shard_2376 loaded\n",
      "shard_17168 loaded\n",
      "shard_494 loaded\n",
      "shard_11277 loaded\n",
      "shard_43767 loaded\n",
      "shard_16572 loaded\n",
      "shard_35528 loaded\n",
      "shard_27239 loaded\n",
      "shard_34746 loaded\n",
      "shard_47120 loaded\n",
      "shard_1730 loaded\n",
      "shard_38763 loaded\n",
      "shard_34133 loaded\n",
      "shard_4854 loaded\n",
      "shard_37972 loaded\n",
      "shard_34735 loaded\n",
      "shard_17074 loaded\n",
      "shard_45058 loaded\n",
      "shard_24892 loaded\n",
      "shard_49906 loaded\n",
      "shard_33670 loaded\n",
      "shard_24536 loaded\n",
      "shard_4390 loaded\n",
      "shard_8486 loaded\n",
      "shard_5970 loaded\n",
      "shard_35729 loaded\n",
      "shard_16221 loaded\n",
      "shard_41621 loaded\n",
      "shard_42988 loaded\n",
      "shard_32557 loaded\n",
      "shard_38256 loaded\n",
      "shard_14817 loaded\n",
      "shard_2150 loaded\n",
      "shard_17554 loaded\n",
      "shard_15914 loaded\n",
      "shard_4192 loaded\n",
      "shard_34007 loaded\n",
      "shard_21967 loaded\n",
      "shard_17881 loaded\n",
      "shard_7080 loaded\n",
      "shard_47408 loaded\n",
      "shard_21989 loaded\n",
      "shard_19411 loaded\n",
      "shard_12243 loaded\n",
      "shard_2840 loaded\n",
      "shard_1290 loaded\n",
      "shard_9420 loaded\n",
      "shard_42960 loaded\n",
      "shard_39068 loaded\n",
      "shard_36229 loaded\n",
      "shard_1023 loaded\n",
      "shard_39267 loaded\n",
      "shard_34659 loaded\n",
      "shard_47727 loaded\n",
      "shard_25462 loaded\n",
      "shard_45894 loaded\n",
      "shard_41187 loaded\n",
      "shard_29230 loaded\n",
      "shard_31515 loaded\n",
      "shard_352 loaded\n",
      "shard_48519 loaded\n",
      "shard_782 loaded\n",
      "shard_32190 loaded\n",
      "shard_18199 loaded\n",
      "shard_18795 loaded\n",
      "shard_4845 loaded\n",
      "shard_1355 loaded\n",
      "shard_22598 loaded\n",
      "shard_45779 loaded\n",
      "shard_37030 loaded\n",
      "shard_31661 loaded\n",
      "shard_44001 loaded\n",
      "shard_6152 loaded\n",
      "shard_14692 loaded\n",
      "shard_28583 loaded\n",
      "shard_33079 loaded\n",
      "shard_30770 loaded\n",
      "shard_30348 loaded\n",
      "shard_43974 loaded\n",
      "shard_36882 loaded\n",
      "shard_45568 loaded\n",
      "shard_2551 loaded\n",
      "shard_36230 loaded\n",
      "shard_43593 loaded\n",
      "shard_800 loaded\n",
      "shard_29118 loaded\n",
      "shard_19786 loaded\n",
      "shard_21487 loaded\n",
      "shard_36326 loaded\n",
      "shard_10267 loaded\n",
      "shard_27966 loaded\n",
      "shard_47535 loaded\n",
      "shard_37510 loaded\n",
      "shard_3910 loaded\n",
      "shard_13185 loaded\n",
      "shard_39630 loaded\n",
      "shard_14863 loaded\n",
      "shard_20987 loaded\n",
      "shard_15667 loaded\n",
      "shard_17586 loaded\n",
      "shard_16270 loaded\n",
      "shard_5896 loaded\n",
      "shard_44308 loaded\n",
      "shard_32369 loaded\n",
      "shard_16186 loaded\n",
      "shard_17890 loaded\n",
      "shard_834 loaded\n",
      "shard_19417 loaded\n",
      "shard_22643 loaded\n",
      "shard_1192 loaded\n",
      "shard_20170 loaded\n",
      "shard_11323 loaded\n",
      "shard_21195 loaded\n",
      "shard_19309 loaded\n",
      "shard_17159 loaded\n",
      "shard_42135 loaded\n",
      "shard_14183 loaded\n",
      "shard_34671 loaded\n",
      "shard_47123 loaded\n",
      "shard_34151 loaded\n",
      "shard_42976 loaded\n",
      "shard_20222 loaded\n",
      "shard_40260 loaded\n",
      "shard_32406 loaded\n",
      "shard_40539 loaded\n",
      "shard_30646 loaded\n",
      "shard_13990 loaded\n",
      "shard_14513 loaded\n",
      "shard_48854 loaded\n",
      "shard_21716 loaded\n",
      "shard_26113 loaded\n",
      "shard_18746 loaded\n",
      "shard_28109 loaded\n",
      "shard_48977 loaded\n",
      "shard_49029 loaded\n",
      "shard_17139 loaded\n",
      "shard_433 loaded\n",
      "shard_10303 loaded\n",
      "shard_45580 loaded\n",
      "shard_8175 loaded\n",
      "shard_18879 loaded\n",
      "shard_27264 loaded\n",
      "shard_24276 loaded\n",
      "shard_22127 loaded\n",
      "shard_26000 loaded\n",
      "shard_862 loaded\n",
      "shard_34178 loaded\n",
      "shard_44327 loaded\n",
      "shard_24039 loaded\n",
      "shard_82 loaded\n",
      "shard_17998 loaded\n",
      "shard_19752 loaded\n",
      "shard_42753 loaded\n",
      "shard_29469 loaded\n",
      "shard_45317 loaded\n",
      "shard_28971 loaded\n",
      "shard_21250 loaded\n",
      "shard_1710 loaded\n",
      "shard_26656 loaded\n",
      "shard_7685 loaded\n",
      "shard_33507 loaded\n",
      "shard_18753 loaded\n",
      "shard_8659 loaded\n",
      "shard_45384 loaded\n",
      "shard_33789 loaded\n",
      "shard_6726 loaded\n",
      "shard_25182 loaded\n",
      "shard_22742 loaded\n",
      "shard_28766 loaded\n",
      "shard_7411 loaded\n",
      "shard_37699 loaded\n",
      "shard_33800 loaded\n",
      "shard_8293 loaded\n",
      "shard_36833 loaded\n",
      "shard_28349 loaded\n",
      "shard_48314 loaded\n",
      "shard_33545 loaded\n",
      "shard_43824 loaded\n",
      "shard_38894 loaded\n",
      "shard_21210 loaded\n",
      "shard_2655 loaded\n",
      "shard_9585 loaded\n",
      "shard_7998 loaded\n",
      "shard_25845 loaded\n",
      "shard_36098 loaded\n",
      "shard_18009 loaded\n",
      "shard_37434 loaded\n",
      "shard_8774 loaded\n",
      "shard_46983 loaded\n",
      "shard_43550 loaded\n",
      "shard_11827 loaded\n",
      "shard_7355 loaded\n",
      "shard_3404 loaded\n",
      "shard_48426 loaded\n",
      "shard_33665 loaded\n",
      "shard_9243 loaded\n",
      "shard_25178 loaded\n",
      "shard_41273 loaded\n",
      "shard_21299 loaded\n",
      "shard_44696 loaded\n",
      "shard_13513 loaded\n",
      "shard_36029 loaded\n",
      "shard_853 loaded\n",
      "shard_10089 loaded\n",
      "shard_3778 loaded\n",
      "shard_14289 loaded\n",
      "shard_44903 loaded\n",
      "shard_2202 loaded\n",
      "shard_45507 loaded\n",
      "shard_28502 loaded\n",
      "shard_25887 loaded\n",
      "shard_46180 loaded\n",
      "shard_7201 loaded\n",
      "shard_49341 loaded\n",
      "shard_9925 loaded\n",
      "shard_21926 loaded\n",
      "shard_24303 loaded\n",
      "shard_44110 loaded\n",
      "shard_43010 loaded\n",
      "shard_23614 loaded\n",
      "shard_45917 loaded\n",
      "shard_39276 loaded\n",
      "shard_9076 loaded\n",
      "shard_30291 loaded\n",
      "shard_5007 loaded\n",
      "shard_28556 loaded\n",
      "shard_3481 loaded\n",
      "shard_30666 loaded\n",
      "shard_46864 loaded\n",
      "shard_23217 loaded\n",
      "shard_15774 loaded\n",
      "shard_14505 loaded\n",
      "shard_23143 loaded\n",
      "shard_49938 loaded\n",
      "shard_2128 loaded\n",
      "shard_5095 loaded\n",
      "shard_28144 loaded\n",
      "shard_36899 loaded\n",
      "shard_7364 loaded\n",
      "shard_14416 loaded\n",
      "shard_14487 loaded\n",
      "shard_4428 loaded\n",
      "shard_10512 loaded\n",
      "shard_22883 loaded\n",
      "shard_8562 loaded\n",
      "shard_12887 loaded\n",
      "shard_25763 loaded\n",
      "shard_34876 loaded\n",
      "shard_35766 loaded\n",
      "shard_23674 loaded\n",
      "shard_27652 loaded\n",
      "shard_33899 loaded\n",
      "shard_28853 loaded\n",
      "shard_41303 loaded\n",
      "shard_14932 loaded\n",
      "shard_27025 loaded\n",
      "shard_4600 loaded\n",
      "shard_10066 loaded\n",
      "shard_11033 loaded\n",
      "shard_40265 loaded\n",
      "shard_34491 loaded\n",
      "shard_48021 loaded\n",
      "shard_20621 loaded\n",
      "shard_6908 loaded\n",
      "shard_9845 loaded\n",
      "shard_13692 loaded\n",
      "shard_26236 loaded\n",
      "shard_13690 loaded\n",
      "shard_21219 loaded\n",
      "shard_28231 loaded\n",
      "shard_38762 loaded\n",
      "shard_43106 loaded\n",
      "shard_15743 loaded\n",
      "shard_28255 loaded\n",
      "shard_8595 loaded\n",
      "shard_1345 loaded\n",
      "shard_38535 loaded\n",
      "shard_15125 loaded\n",
      "shard_32085 loaded\n",
      "shard_25615 loaded\n",
      "shard_47499 loaded\n",
      "shard_40596 loaded\n",
      "shard_41221 loaded\n",
      "shard_586 loaded\n",
      "shard_13821 loaded\n",
      "shard_12994 loaded\n",
      "shard_38872 loaded\n",
      "shard_18383 loaded\n",
      "shard_2646 loaded\n",
      "shard_43407 loaded\n",
      "shard_36218 loaded\n",
      "shard_12653 loaded\n",
      "shard_48280 loaded\n",
      "shard_37853 loaded\n",
      "shard_46594 loaded\n",
      "shard_44603 loaded\n",
      "shard_43779 loaded\n",
      "shard_17130 loaded\n",
      "shard_39787 loaded\n",
      "shard_12581 loaded\n",
      "shard_31216 loaded\n",
      "shard_16510 loaded\n",
      "shard_40651 loaded\n",
      "shard_3985 loaded\n",
      "shard_42682 loaded\n",
      "shard_14744 loaded\n",
      "shard_28912 loaded\n",
      "shard_1764 loaded\n",
      "shard_39986 loaded\n",
      "shard_20214 loaded\n",
      "shard_34915 loaded\n",
      "shard_38747 loaded\n",
      "shard_43905 loaded\n",
      "shard_30477 loaded\n",
      "shard_32967 loaded\n",
      "shard_24473 loaded\n",
      "shard_35275 loaded\n",
      "shard_43868 loaded\n",
      "shard_7954 loaded\n",
      "shard_328 loaded\n",
      "shard_33250 loaded\n",
      "shard_21461 loaded\n",
      "shard_29127 loaded\n",
      "shard_26884 loaded\n",
      "shard_14732 loaded\n",
      "shard_15981 loaded\n",
      "shard_22513 loaded\n",
      "shard_43100 loaded\n",
      "shard_4838 loaded\n",
      "shard_6810 loaded\n",
      "shard_46162 loaded\n",
      "shard_26745 loaded\n",
      "shard_43349 loaded\n",
      "shard_32888 loaded\n",
      "shard_34821 loaded\n",
      "shard_22743 loaded\n",
      "shard_8279 loaded\n",
      "shard_36171 loaded\n",
      "shard_39304 loaded\n",
      "shard_27375 loaded\n",
      "shard_47357 loaded\n",
      "shard_31486 loaded\n",
      "shard_24270 loaded\n",
      "shard_15126 loaded\n",
      "shard_47014 loaded\n",
      "shard_31283 loaded\n",
      "shard_10746 loaded\n",
      "shard_20544 loaded\n",
      "shard_46912 loaded\n",
      "shard_35621 loaded\n",
      "shard_10312 loaded\n",
      "shard_13348 loaded\n",
      "shard_9668 loaded\n",
      "shard_27674 loaded\n",
      "shard_32081 loaded\n",
      "shard_38079 loaded\n",
      "shard_47125 loaded\n",
      "shard_29198 loaded\n",
      "shard_2521 loaded\n",
      "shard_9232 loaded\n",
      "shard_44912 loaded\n",
      "shard_35542 loaded\n",
      "shard_30826 loaded\n",
      "shard_48317 loaded\n",
      "shard_24195 loaded\n",
      "shard_32608 loaded\n",
      "shard_11285 loaded\n",
      "shard_15892 loaded\n",
      "shard_32600 loaded\n",
      "shard_8470 loaded\n",
      "shard_32299 loaded\n",
      "shard_16224 loaded\n",
      "shard_36556 loaded\n",
      "shard_964 loaded\n",
      "shard_3009 loaded\n",
      "shard_30756 loaded\n",
      "shard_2714 loaded\n",
      "shard_47461 loaded\n",
      "shard_35141 loaded\n",
      "shard_48640 loaded\n",
      "shard_30060 loaded\n",
      "shard_3230 loaded\n",
      "shard_3004 loaded\n",
      "shard_15074 loaded\n",
      "shard_41941 loaded\n",
      "shard_24192 loaded\n",
      "shard_4169 loaded\n",
      "shard_36 loaded\n",
      "shard_11452 loaded\n",
      "shard_15784 loaded\n",
      "shard_16376 loaded\n",
      "shard_35786 loaded\n",
      "shard_33077 loaded\n",
      "shard_10780 loaded\n",
      "shard_454 loaded\n",
      "shard_11492 loaded\n",
      "shard_3575 loaded\n",
      "shard_31913 loaded\n",
      "shard_43645 loaded\n",
      "shard_27596 loaded\n",
      "shard_28892 loaded\n",
      "shard_4616 loaded\n",
      "shard_10456 loaded\n",
      "shard_13925 loaded\n",
      "shard_15220 loaded\n",
      "shard_27717 loaded\n",
      "shard_6086 loaded\n",
      "shard_11374 loaded\n",
      "shard_49550 loaded\n",
      "shard_30525 loaded\n",
      "shard_48231 loaded\n",
      "shard_25659 loaded\n",
      "shard_39923 loaded\n",
      "shard_49597 loaded\n",
      "shard_43985 loaded\n",
      "shard_4241 loaded\n",
      "shard_41916 loaded\n",
      "shard_28845 loaded\n",
      "shard_656 loaded\n",
      "shard_13430 loaded\n",
      "shard_13816 loaded\n",
      "shard_13143 loaded\n",
      "shard_5910 loaded\n",
      "shard_10719 loaded\n",
      "shard_18706 loaded\n",
      "shard_43704 loaded\n",
      "shard_25298 loaded\n",
      "shard_35772 loaded\n",
      "shard_30684 loaded\n",
      "shard_7563 loaded\n",
      "shard_48190 loaded\n",
      "shard_22997 loaded\n",
      "shard_45357 loaded\n",
      "shard_48696 loaded\n",
      "shard_45480 loaded\n",
      "shard_4799 loaded\n",
      "shard_33141 loaded\n",
      "shard_33066 loaded\n",
      "shard_19416 loaded\n",
      "shard_8798 loaded\n",
      "shard_28203 loaded\n",
      "shard_43149 loaded\n",
      "shard_42879 loaded\n",
      "shard_41158 loaded\n",
      "shard_20598 loaded\n",
      "shard_26961 loaded\n",
      "shard_8970 loaded\n",
      "shard_670 loaded\n",
      "shard_6750 loaded\n",
      "shard_6488 loaded\n",
      "shard_45097 loaded\n",
      "shard_12406 loaded\n",
      "shard_2654 loaded\n",
      "shard_32386 loaded\n",
      "shard_26049 loaded\n",
      "shard_2115 loaded\n",
      "shard_7203 loaded\n",
      "shard_1867 loaded\n",
      "shard_40547 loaded\n",
      "shard_9826 loaded\n",
      "shard_38033 loaded\n",
      "shard_44825 loaded\n",
      "shard_18426 loaded\n",
      "shard_27748 loaded\n",
      "shard_44829 loaded\n",
      "shard_11933 loaded\n",
      "shard_41451 loaded\n",
      "shard_47936 loaded\n",
      "shard_35714 loaded\n",
      "shard_12552 loaded\n",
      "shard_36283 loaded\n",
      "shard_37766 loaded\n",
      "shard_9578 loaded\n",
      "shard_42447 loaded\n",
      "shard_48975 loaded\n",
      "shard_926 loaded\n",
      "shard_43059 loaded\n",
      "shard_34280 loaded\n",
      "shard_44746 loaded\n",
      "shard_25317 loaded\n",
      "shard_505 loaded\n",
      "shard_10242 loaded\n",
      "shard_39212 loaded\n",
      "shard_23689 loaded\n",
      "shard_29082 loaded\n",
      "shard_3658 loaded\n",
      "shard_4721 loaded\n",
      "shard_47371 loaded\n",
      "shard_21192 loaded\n",
      "shard_34818 loaded\n",
      "shard_46438 loaded\n",
      "shard_43776 loaded\n",
      "shard_10903 loaded\n",
      "shard_39295 loaded\n",
      "shard_5660 loaded\n",
      "shard_33295 loaded\n",
      "shard_7672 loaded\n",
      "shard_33751 loaded\n",
      "shard_2299 loaded\n",
      "shard_11411 loaded\n",
      "shard_14958 loaded\n",
      "shard_25273 loaded\n",
      "shard_41896 loaded\n",
      "shard_30584 loaded\n",
      "shard_34388 loaded\n",
      "shard_2711 loaded\n",
      "shard_2867 loaded\n",
      "shard_33732 loaded\n",
      "shard_4693 loaded\n",
      "shard_40932 loaded\n",
      "shard_31959 loaded\n",
      "shard_35025 loaded\n",
      "shard_36979 loaded\n",
      "shard_20959 loaded\n",
      "shard_28076 loaded\n",
      "shard_31167 loaded\n",
      "shard_7812 loaded\n",
      "shard_20211 loaded\n",
      "shard_23309 loaded\n",
      "shard_38799 loaded\n",
      "shard_44287 loaded\n",
      "shard_18858 loaded\n",
      "shard_6494 loaded\n",
      "shard_7017 loaded\n",
      "shard_38057 loaded\n",
      "shard_43318 loaded\n",
      "shard_44394 loaded\n",
      "shard_24816 loaded\n",
      "shard_6381 loaded\n",
      "shard_21662 loaded\n",
      "shard_980 loaded\n",
      "shard_28281 loaded\n",
      "shard_12669 loaded\n",
      "shard_23781 loaded\n",
      "shard_28230 loaded\n",
      "shard_9013 loaded\n",
      "shard_24183 loaded\n",
      "shard_47855 loaded\n",
      "shard_29952 loaded\n",
      "shard_3808 loaded\n",
      "shard_15822 loaded\n",
      "shard_31882 loaded\n",
      "shard_8889 loaded\n",
      "shard_20055 loaded\n",
      "shard_39146 loaded\n",
      "shard_2017 loaded\n",
      "shard_30126 loaded\n",
      "shard_29501 loaded\n",
      "shard_15290 loaded\n",
      "shard_43670 loaded\n",
      "shard_5054 loaded\n",
      "shard_15146 loaded\n",
      "shard_23316 loaded\n",
      "shard_3129 loaded\n",
      "shard_11499 loaded\n",
      "shard_7491 loaded\n",
      "shard_48711 loaded\n",
      "shard_22774 loaded\n",
      "shard_36837 loaded\n",
      "shard_5600 loaded\n",
      "shard_14580 loaded\n",
      "shard_25491 loaded\n",
      "shard_43845 loaded\n",
      "shard_43384 loaded\n",
      "shard_9010 loaded\n",
      "shard_12631 loaded\n",
      "shard_22535 loaded\n",
      "shard_18340 loaded\n",
      "shard_40471 loaded\n",
      "shard_14523 loaded\n",
      "shard_8117 loaded\n",
      "shard_22699 loaded\n",
      "shard_24604 loaded\n",
      "shard_2402 loaded\n",
      "shard_22985 loaded\n",
      "shard_30363 loaded\n",
      "shard_16754 loaded\n",
      "shard_49969 loaded\n",
      "shard_43717 loaded\n",
      "shard_19379 loaded\n",
      "shard_24049 loaded\n",
      "shard_14908 loaded\n",
      "shard_36980 loaded\n",
      "shard_21665 loaded\n",
      "shard_29579 loaded\n",
      "shard_27709 loaded\n",
      "shard_5527 loaded\n",
      "shard_34780 loaded\n",
      "shard_26270 loaded\n",
      "shard_3303 loaded\n",
      "shard_25573 loaded\n",
      "shard_40884 loaded\n",
      "shard_45115 loaded\n",
      "shard_11148 loaded\n",
      "shard_27922 loaded\n",
      "shard_1752 loaded\n",
      "shard_1759 loaded\n",
      "shard_11428 loaded\n",
      "shard_1694 loaded\n",
      "shard_35268 loaded\n",
      "shard_29405 loaded\n",
      "shard_12572 loaded\n",
      "shard_10087 loaded\n",
      "shard_22680 loaded\n",
      "shard_14439 loaded\n",
      "shard_39144 loaded\n",
      "shard_38116 loaded\n",
      "shard_43136 loaded\n",
      "shard_37683 loaded\n",
      "shard_42711 loaded\n",
      "shard_15616 loaded\n",
      "shard_8067 loaded\n",
      "shard_44423 loaded\n",
      "shard_40582 loaded\n",
      "shard_24519 loaded\n",
      "shard_22494 loaded\n",
      "shard_45631 loaded\n",
      "shard_9482 loaded\n",
      "shard_11810 loaded\n",
      "shard_28509 loaded\n",
      "shard_34096 loaded\n",
      "shard_32511 loaded\n",
      "shard_18690 loaded\n",
      "shard_29236 loaded\n",
      "shard_9344 loaded\n",
      "shard_28085 loaded\n",
      "shard_38609 loaded\n",
      "shard_17906 loaded\n",
      "shard_34938 loaded\n",
      "shard_26770 loaded\n",
      "shard_4929 loaded\n",
      "shard_29251 loaded\n",
      "shard_31894 loaded\n",
      "shard_23363 loaded\n",
      "shard_39824 loaded\n",
      "shard_42346 loaded\n",
      "shard_33590 loaded\n",
      "shard_16199 loaded\n",
      "shard_31706 loaded\n",
      "shard_25655 loaded\n",
      "shard_33007 loaded\n",
      "shard_43854 loaded\n",
      "shard_16805 loaded\n",
      "shard_7187 loaded\n",
      "shard_26962 loaded\n",
      "shard_5116 loaded\n",
      "shard_30999 loaded\n",
      "shard_31500 loaded\n",
      "shard_41985 loaded\n",
      "shard_18944 loaded\n",
      "shard_23681 loaded\n",
      "shard_23730 loaded\n",
      "shard_3722 loaded\n",
      "shard_27616 loaded\n",
      "shard_23583 loaded\n",
      "shard_41924 loaded\n",
      "shard_4066 loaded\n",
      "shard_7258 loaded\n",
      "shard_45621 loaded\n",
      "shard_27130 loaded\n",
      "shard_42573 loaded\n",
      "shard_1657 loaded\n",
      "shard_33905 loaded\n",
      "shard_33345 loaded\n",
      "shard_34571 loaded\n",
      "shard_44488 loaded\n",
      "shard_43213 loaded\n",
      "shard_15217 loaded\n",
      "shard_34749 loaded\n",
      "shard_25387 loaded\n",
      "shard_16492 loaded\n",
      "shard_21842 loaded\n",
      "shard_36579 loaded\n",
      "shard_38687 loaded\n",
      "shard_18859 loaded\n",
      "shard_44572 loaded\n",
      "shard_14028 loaded\n",
      "shard_44255 loaded\n",
      "shard_17016 loaded\n",
      "shard_8244 loaded\n",
      "shard_25890 loaded\n",
      "shard_46962 loaded\n",
      "shard_17525 loaded\n",
      "shard_46555 loaded\n",
      "shard_8556 loaded\n",
      "shard_21981 loaded\n",
      "shard_40540 loaded\n",
      "shard_27555 loaded\n",
      "shard_22022 loaded\n",
      "shard_32245 loaded\n",
      "shard_19826 loaded\n",
      "shard_36404 loaded\n",
      "shard_26416 loaded\n",
      "shard_11022 loaded\n",
      "shard_33948 loaded\n",
      "shard_12890 loaded\n",
      "shard_29698 loaded\n",
      "shard_28905 loaded\n",
      "shard_18141 loaded\n",
      "shard_24867 loaded\n",
      "shard_3100 loaded\n",
      "shard_25536 loaded\n",
      "shard_5049 loaded\n",
      "shard_548 loaded\n",
      "shard_26164 loaded\n",
      "shard_43594 loaded\n",
      "shard_23259 loaded\n",
      "shard_31186 loaded\n",
      "shard_41592 loaded\n",
      "shard_39826 loaded\n",
      "shard_6446 loaded\n",
      "shard_16548 loaded\n",
      "shard_48860 loaded\n",
      "shard_22959 loaded\n",
      "shard_5661 loaded\n",
      "shard_3782 loaded\n",
      "shard_49180 loaded\n",
      "shard_43935 loaded\n",
      "shard_17432 loaded\n",
      "shard_48139 loaded\n",
      "shard_15101 loaded\n",
      "shard_26349 loaded\n",
      "shard_15535 loaded\n",
      "shard_34655 loaded\n",
      "shard_19296 loaded\n",
      "shard_30089 loaded\n",
      "shard_30481 loaded\n",
      "shard_37986 loaded\n",
      "shard_7199 loaded\n",
      "shard_18524 loaded\n",
      "shard_41808 loaded\n",
      "shard_22352 loaded\n",
      "shard_16350 loaded\n",
      "shard_39994 loaded\n",
      "shard_45218 loaded\n",
      "shard_2748 loaded\n",
      "shard_35891 loaded\n",
      "shard_28887 loaded\n",
      "shard_37495 loaded\n",
      "shard_22007 loaded\n",
      "shard_44474 loaded\n",
      "shard_51 loaded\n",
      "shard_26475 loaded\n",
      "shard_12783 loaded\n",
      "shard_27473 loaded\n",
      "shard_29526 loaded\n",
      "shard_15634 loaded\n",
      "shard_31936 loaded\n",
      "shard_8203 loaded\n",
      "shard_47440 loaded\n",
      "shard_12802 loaded\n",
      "shard_13621 loaded\n",
      "shard_19263 loaded\n",
      "shard_2579 loaded\n",
      "shard_35748 loaded\n",
      "shard_11512 loaded\n",
      "shard_42872 loaded\n",
      "shard_31652 loaded\n",
      "shard_38644 loaded\n",
      "shard_18984 loaded\n",
      "shard_25472 loaded\n",
      "shard_32033 loaded\n",
      "shard_47637 loaded\n",
      "shard_2221 loaded\n",
      "shard_4153 loaded\n",
      "shard_22611 loaded\n",
      "shard_13801 loaded\n",
      "shard_33259 loaded\n",
      "shard_3451 loaded\n",
      "shard_21655 loaded\n",
      "shard_564 loaded\n",
      "shard_48840 loaded\n",
      "shard_27251 loaded\n",
      "shard_13770 loaded\n",
      "shard_31257 loaded\n",
      "shard_27971 loaded\n",
      "shard_7904 loaded\n",
      "shard_48500 loaded\n",
      "shard_44819 loaded\n",
      "shard_20633 loaded\n",
      "shard_49143 loaded\n",
      "shard_42230 loaded\n",
      "shard_9892 loaded\n",
      "shard_8925 loaded\n",
      "shard_20417 loaded\n",
      "shard_3248 loaded\n",
      "shard_36050 loaded\n",
      "shard_48468 loaded\n",
      "shard_48348 loaded\n",
      "shard_18134 loaded\n",
      "shard_8989 loaded\n",
      "shard_49186 loaded\n",
      "shard_17484 loaded\n",
      "shard_32324 loaded\n",
      "shard_41147 loaded\n",
      "shard_11176 loaded\n",
      "shard_33764 loaded\n",
      "shard_2113 loaded\n",
      "shard_45268 loaded\n",
      "shard_33880 loaded\n",
      "shard_5986 loaded\n",
      "shard_2051 loaded\n",
      "shard_38933 loaded\n",
      "shard_46363 loaded\n",
      "shard_2029 loaded\n",
      "shard_37236 loaded\n",
      "shard_38056 loaded\n",
      "shard_48206 loaded\n",
      "shard_27104 loaded\n",
      "shard_17750 loaded\n",
      "shard_46659 loaded\n",
      "shard_8771 loaded\n",
      "shard_8786 loaded\n",
      "shard_11527 loaded\n",
      "shard_28283 loaded\n",
      "shard_45059 loaded\n",
      "shard_29152 loaded\n",
      "shard_570 loaded\n",
      "shard_46152 loaded\n",
      "shard_11070 loaded\n",
      "shard_11922 loaded\n",
      "shard_13354 loaded\n",
      "shard_42340 loaded\n",
      "shard_11044 loaded\n",
      "shard_26651 loaded\n",
      "shard_776 loaded\n",
      "shard_26751 loaded\n",
      "shard_28599 loaded\n",
      "shard_41867 loaded\n",
      "shard_11617 loaded\n",
      "shard_36830 loaded\n",
      "shard_11520 loaded\n",
      "shard_4093 loaded\n",
      "shard_30479 loaded\n",
      "shard_41882 loaded\n",
      "shard_42005 loaded\n",
      "shard_41852 loaded\n",
      "shard_12586 loaded\n",
      "shard_34404 loaded\n",
      "shard_46523 loaded\n",
      "shard_4657 loaded\n",
      "shard_47519 loaded\n",
      "shard_32270 loaded\n",
      "shard_41744 loaded\n",
      "shard_48274 loaded\n",
      "shard_8264 loaded\n",
      "shard_39747 loaded\n",
      "shard_13766 loaded\n",
      "shard_17189 loaded\n",
      "shard_26025 loaded\n",
      "shard_45180 loaded\n",
      "shard_42348 loaded\n",
      "shard_39235 loaded\n",
      "shard_28630 loaded\n",
      "shard_29625 loaded\n",
      "shard_20009 loaded\n",
      "shard_27304 loaded\n",
      "shard_32073 loaded\n",
      "shard_19773 loaded\n",
      "shard_43152 loaded\n",
      "shard_31481 loaded\n",
      "shard_1019 loaded\n",
      "shard_13113 loaded\n",
      "shard_34087 loaded\n",
      "shard_28831 loaded\n",
      "shard_7776 loaded\n",
      "shard_46549 loaded\n",
      "shard_11903 loaded\n",
      "shard_46156 loaded\n",
      "shard_22422 loaded\n",
      "shard_19476 loaded\n",
      "shard_37656 loaded\n",
      "shard_39191 loaded\n",
      "shard_9337 loaded\n",
      "shard_1838 loaded\n",
      "shard_35187 loaded\n",
      "shard_8536 loaded\n",
      "shard_48392 loaded\n",
      "shard_46133 loaded\n",
      "shard_19246 loaded\n",
      "shard_11949 loaded\n",
      "shard_43652 loaded\n",
      "shard_24948 loaded\n",
      "shard_27034 loaded\n",
      "shard_45965 loaded\n",
      "shard_5451 loaded\n",
      "shard_44949 loaded\n",
      "shard_18696 loaded\n",
      "shard_22375 loaded\n",
      "shard_10884 loaded\n",
      "shard_31406 loaded\n",
      "shard_39153 loaded\n",
      "shard_22895 loaded\n",
      "shard_5305 loaded\n",
      "shard_30849 loaded\n",
      "shard_43555 loaded\n",
      "shard_36251 loaded\n",
      "shard_15228 loaded\n",
      "shard_45861 loaded\n",
      "shard_31677 loaded\n",
      "shard_12934 loaded\n",
      "shard_10421 loaded\n",
      "shard_365 loaded\n",
      "shard_2432 loaded\n",
      "shard_12600 loaded\n",
      "shard_27868 loaded\n",
      "shard_31064 loaded\n",
      "shard_17143 loaded\n",
      "shard_10195 loaded\n",
      "shard_14001 loaded\n",
      "shard_18106 loaded\n",
      "shard_40906 loaded\n",
      "shard_40402 loaded\n",
      "shard_393 loaded\n",
      "shard_47320 loaded\n",
      "shard_27990 loaded\n",
      "shard_22903 loaded\n",
      "shard_28979 loaded\n",
      "shard_40340 loaded\n",
      "shard_30023 loaded\n",
      "shard_44833 loaded\n",
      "shard_18803 loaded\n",
      "shard_35091 loaded\n",
      "shard_11672 loaded\n",
      "shard_1329 loaded\n",
      "shard_35254 loaded\n",
      "shard_7337 loaded\n",
      "shard_38981 loaded\n",
      "shard_41345 loaded\n",
      "shard_27585 loaded\n",
      "shard_17928 loaded\n",
      "shard_19077 loaded\n",
      "shard_48694 loaded\n",
      "shard_43686 loaded\n",
      "shard_8192 loaded\n",
      "shard_24342 loaded\n",
      "shard_38148 loaded\n",
      "shard_23307 loaded\n",
      "shard_5492 loaded\n",
      "shard_26288 loaded\n",
      "shard_38386 loaded\n",
      "shard_14131 loaded\n",
      "shard_1878 loaded\n",
      "shard_45668 loaded\n",
      "shard_20710 loaded\n",
      "shard_6468 loaded\n",
      "shard_29364 loaded\n",
      "shard_34256 loaded\n",
      "shard_1704 loaded\n",
      "shard_12386 loaded\n",
      "shard_41353 loaded\n",
      "shard_13996 loaded\n",
      "shard_24372 loaded\n",
      "shard_3934 loaded\n",
      "shard_25510 loaded\n",
      "shard_42901 loaded\n",
      "shard_19652 loaded\n",
      "shard_26957 loaded\n",
      "shard_46869 loaded\n",
      "shard_26134 loaded\n",
      "shard_45233 loaded\n",
      "shard_31414 loaded\n",
      "shard_28566 loaded\n",
      "shard_6549 loaded\n",
      "shard_24431 loaded\n",
      "shard_23140 loaded\n",
      "shard_31748 loaded\n",
      "shard_17666 loaded\n",
      "shard_10528 loaded\n",
      "shard_13953 loaded\n",
      "shard_13677 loaded\n",
      "shard_19955 loaded\n",
      "shard_20705 loaded\n",
      "shard_11762 loaded\n",
      "shard_651 loaded\n",
      "shard_37587 loaded\n",
      "shard_19460 loaded\n",
      "shard_35861 loaded\n",
      "shard_26183 loaded\n",
      "shard_36349 loaded\n",
      "shard_41335 loaded\n",
      "shard_2907 loaded\n",
      "shard_22802 loaded\n",
      "shard_36001 loaded\n",
      "shard_6254 loaded\n",
      "shard_35319 loaded\n",
      "shard_20158 loaded\n",
      "shard_13882 loaded\n",
      "shard_1720 loaded\n",
      "shard_32204 loaded\n",
      "shard_14563 loaded\n",
      "shard_23452 loaded\n",
      "shard_32356 loaded\n",
      "shard_17710 loaded\n",
      "shard_24277 loaded\n",
      "shard_216 loaded\n",
      "shard_41097 loaded\n",
      "shard_26391 loaded\n",
      "shard_21241 loaded\n",
      "shard_29316 loaded\n",
      "shard_35413 loaded\n",
      "shard_43470 loaded\n",
      "shard_5846 loaded\n",
      "shard_11815 loaded\n",
      "shard_38254 loaded\n",
      "shard_33937 loaded\n",
      "shard_13508 loaded\n",
      "shard_25550 loaded\n",
      "shard_30423 loaded\n",
      "shard_9532 loaded\n",
      "shard_5183 loaded\n",
      "shard_17577 loaded\n",
      "shard_39367 loaded\n",
      "shard_10418 loaded\n",
      "shard_27164 loaded\n",
      "shard_19742 loaded\n",
      "shard_12246 loaded\n",
      "shard_30142 loaded\n",
      "shard_47498 loaded\n",
      "shard_39157 loaded\n",
      "shard_4575 loaded\n",
      "shard_8515 loaded\n",
      "shard_43157 loaded\n",
      "shard_14770 loaded\n",
      "shard_9835 loaded\n",
      "shard_10402 loaded\n",
      "shard_38639 loaded\n",
      "shard_17904 loaded\n",
      "shard_12510 loaded\n",
      "shard_7428 loaded\n",
      "shard_18574 loaded\n",
      "shard_43597 loaded\n",
      "shard_30413 loaded\n",
      "shard_10274 loaded\n",
      "shard_39606 loaded\n",
      "shard_21700 loaded\n",
      "shard_35067 loaded\n",
      "shard_39866 loaded\n",
      "shard_49987 loaded\n",
      "shard_36911 loaded\n",
      "shard_18668 loaded\n",
      "shard_27469 loaded\n",
      "shard_2465 loaded\n",
      "shard_48482 loaded\n",
      "shard_35411 loaded\n",
      "shard_15116 loaded\n",
      "shard_1591 loaded\n",
      "shard_13867 loaded\n",
      "shard_22349 loaded\n",
      "shard_16703 loaded\n",
      "shard_49981 loaded\n",
      "shard_28367 loaded\n",
      "shard_43395 loaded\n",
      "shard_13163 loaded\n",
      "shard_21527 loaded\n",
      "shard_47732 loaded\n",
      "shard_43894 loaded\n",
      "shard_31825 loaded\n",
      "shard_20516 loaded\n",
      "shard_17619 loaded\n",
      "shard_24900 loaded\n",
      "shard_22284 loaded\n",
      "shard_41833 loaded\n",
      "shard_1342 loaded\n",
      "shard_26564 loaded\n",
      "shard_44486 loaded\n",
      "shard_33257 loaded\n",
      "shard_26398 loaded\n",
      "shard_23752 loaded\n",
      "shard_30732 loaded\n",
      "shard_8592 loaded\n",
      "shard_45983 loaded\n",
      "shard_9022 loaded\n",
      "shard_30574 loaded\n",
      "shard_36265 loaded\n",
      "shard_35284 loaded\n",
      "shard_2025 loaded\n",
      "shard_18272 loaded\n",
      "shard_9479 loaded\n",
      "shard_9866 loaded\n",
      "shard_13575 loaded\n",
      "shard_30025 loaded\n",
      "shard_40152 loaded\n",
      "shard_30704 loaded\n",
      "shard_33748 loaded\n",
      "shard_33889 loaded\n",
      "shard_45308 loaded\n",
      "shard_23991 loaded\n",
      "shard_35296 loaded\n",
      "shard_4930 loaded\n",
      "shard_32158 loaded\n",
      "shard_22951 loaded\n",
      "shard_45017 loaded\n",
      "shard_28334 loaded\n",
      "shard_9029 loaded\n",
      "shard_2102 loaded\n",
      "shard_10685 loaded\n",
      "shard_45105 loaded\n",
      "shard_23740 loaded\n",
      "shard_17124 loaded\n",
      "shard_29255 loaded\n",
      "shard_11141 loaded\n",
      "shard_36560 loaded\n",
      "shard_45181 loaded\n",
      "shard_1347 loaded\n",
      "shard_37805 loaded\n",
      "shard_16049 loaded\n",
      "shard_25086 loaded\n",
      "shard_19172 loaded\n",
      "shard_37247 loaded\n",
      "shard_17929 loaded\n",
      "shard_44391 loaded\n",
      "shard_7224 loaded\n",
      "shard_48582 loaded\n",
      "shard_24083 loaded\n",
      "shard_21996 loaded\n",
      "shard_21759 loaded\n",
      "shard_33625 loaded\n",
      "shard_47859 loaded\n",
      "shard_33964 loaded\n",
      "shard_7869 loaded\n",
      "shard_49690 loaded\n",
      "shard_12315 loaded\n",
      "shard_46065 loaded\n",
      "shard_16971 loaded\n",
      "shard_7666 loaded\n",
      "shard_26347 loaded\n",
      "shard_33477 loaded\n",
      "shard_32294 loaded\n",
      "shard_5585 loaded\n",
      "shard_26815 loaded\n",
      "shard_16649 loaded\n",
      "shard_25205 loaded\n",
      "shard_41699 loaded\n",
      "shard_20068 loaded\n",
      "shard_47911 loaded\n",
      "shard_36259 loaded\n",
      "shard_20363 loaded\n",
      "shard_34153 loaded\n",
      "shard_45411 loaded\n",
      "shard_23328 loaded\n",
      "shard_12857 loaded\n",
      "shard_1530 loaded\n",
      "shard_31828 loaded\n",
      "shard_1137 loaded\n",
      "shard_20502 loaded\n",
      "shard_45811 loaded\n",
      "shard_7205 loaded\n",
      "shard_30313 loaded\n",
      "shard_16428 loaded\n",
      "shard_24133 loaded\n",
      "shard_14146 loaded\n",
      "shard_17022 loaded\n",
      "shard_24448 loaded\n",
      "shard_9733 loaded\n",
      "shard_12587 loaded\n",
      "shard_22689 loaded\n",
      "shard_32017 loaded\n",
      "shard_40473 loaded\n",
      "shard_17796 loaded\n",
      "shard_15156 loaded\n",
      "shard_23529 loaded\n",
      "shard_34286 loaded\n",
      "shard_43348 loaded\n",
      "shard_23686 loaded\n",
      "shard_21147 loaded\n",
      "shard_33320 loaded\n",
      "shard_22981 loaded\n",
      "shard_31587 loaded\n",
      "shard_46903 loaded\n",
      "shard_43741 loaded\n",
      "shard_17771 loaded\n",
      "shard_49084 loaded\n",
      "shard_16397 loaded\n",
      "shard_18242 loaded\n",
      "shard_32436 loaded\n",
      "shard_37962 loaded\n",
      "shard_3693 loaded\n",
      "shard_47853 loaded\n",
      "shard_2270 loaded\n",
      "shard_44137 loaded\n",
      "shard_12623 loaded\n",
      "shard_35825 loaded\n",
      "shard_20808 loaded\n",
      "shard_46069 loaded\n",
      "shard_33371 loaded\n",
      "shard_42060 loaded\n",
      "shard_37218 loaded\n",
      "shard_16336 loaded\n",
      "shard_24955 loaded\n",
      "shard_7616 loaded\n",
      "shard_45997 loaded\n",
      "shard_29026 loaded\n",
      "shard_23958 loaded\n",
      "shard_42462 loaded\n",
      "shard_45225 loaded\n",
      "shard_6385 loaded\n",
      "shard_9189 loaded\n",
      "shard_36868 loaded\n",
      "shard_11936 loaded\n",
      "shard_42434 loaded\n",
      "shard_36223 loaded\n",
      "shard_4076 loaded\n",
      "shard_25168 loaded\n",
      "shard_29105 loaded\n",
      "shard_2380 loaded\n",
      "shard_9417 loaded\n",
      "shard_24344 loaded\n",
      "shard_45045 loaded\n",
      "shard_41598 loaded\n",
      "shard_47138 loaded\n",
      "shard_32131 loaded\n",
      "shard_180 loaded\n",
      "shard_296 loaded\n",
      "shard_33814 loaded\n",
      "shard_20140 loaded\n",
      "shard_11805 loaded\n",
      "shard_8223 loaded\n",
      "shard_25033 loaded\n",
      "shard_46790 loaded\n",
      "shard_17080 loaded\n",
      "shard_6937 loaded\n",
      "shard_39069 loaded\n",
      "shard_25779 loaded\n",
      "shard_15625 loaded\n",
      "shard_2375 loaded\n",
      "shard_32977 loaded\n",
      "shard_45899 loaded\n",
      "shard_10266 loaded\n",
      "shard_44242 loaded\n",
      "shard_37208 loaded\n",
      "shard_24046 loaded\n",
      "shard_25604 loaded\n",
      "shard_2708 loaded\n",
      "shard_44233 loaded\n",
      "shard_2782 loaded\n",
      "shard_6777 loaded\n",
      "shard_1222 loaded\n",
      "shard_4967 loaded\n",
      "shard_33097 loaded\n",
      "shard_40504 loaded\n",
      "shard_27983 loaded\n",
      "shard_49069 loaded\n",
      "shard_15950 loaded\n",
      "shard_39677 loaded\n",
      "shard_16470 loaded\n",
      "shard_11069 loaded\n",
      "shard_26571 loaded\n",
      "shard_36252 loaded\n",
      "shard_48390 loaded\n",
      "shard_17113 loaded\n",
      "shard_34080 loaded\n",
      "shard_9251 loaded\n",
      "shard_38688 loaded\n",
      "shard_9039 loaded\n",
      "shard_41637 loaded\n",
      "shard_5174 loaded\n",
      "shard_4920 loaded\n",
      "shard_24557 loaded\n",
      "shard_18439 loaded\n",
      "shard_46200 loaded\n",
      "shard_44446 loaded\n",
      "shard_17829 loaded\n",
      "shard_20451 loaded\n",
      "shard_24146 loaded\n",
      "shard_42502 loaded\n",
      "shard_829 loaded\n",
      "shard_45569 loaded\n",
      "shard_32921 loaded\n",
      "shard_2530 loaded\n",
      "shard_9089 loaded\n",
      "shard_3537 loaded\n",
      "shard_9116 loaded\n",
      "shard_43232 loaded\n",
      "shard_36140 loaded\n",
      "shard_19611 loaded\n",
      "shard_37234 loaded\n",
      "shard_32855 loaded\n",
      "shard_7736 loaded\n",
      "shard_17830 loaded\n",
      "shard_14402 loaded\n",
      "shard_10680 loaded\n",
      "shard_45194 loaded\n",
      "shard_20909 loaded\n",
      "shard_13140 loaded\n",
      "shard_43307 loaded\n",
      "shard_34164 loaded\n",
      "shard_9896 loaded\n",
      "shard_24205 loaded\n",
      "shard_42585 loaded\n",
      "shard_1177 loaded\n",
      "shard_41426 loaded\n",
      "shard_40217 loaded\n",
      "shard_6481 loaded\n",
      "shard_5037 loaded\n",
      "shard_18965 loaded\n",
      "shard_40739 loaded\n",
      "shard_80 loaded\n",
      "shard_19800 loaded\n",
      "shard_30966 loaded\n",
      "shard_2543 loaded\n",
      "shard_24359 loaded\n",
      "shard_25424 loaded\n",
      "shard_529 loaded\n",
      "shard_31567 loaded\n",
      "shard_8492 loaded\n",
      "shard_29271 loaded\n",
      "shard_10998 loaded\n",
      "shard_20851 loaded\n",
      "shard_24580 loaded\n",
      "shard_12827 loaded\n",
      "shard_26474 loaded\n",
      "shard_27888 loaded\n",
      "shard_13216 loaded\n",
      "shard_19755 loaded\n",
      "shard_25971 loaded\n",
      "shard_48903 loaded\n",
      "shard_43833 loaded\n",
      "shard_28147 loaded\n",
      "shard_11143 loaded\n",
      "shard_15251 loaded\n",
      "shard_48254 loaded\n",
      "shard_1109 loaded\n",
      "shard_36730 loaded\n",
      "shard_43166 loaded\n",
      "shard_125 loaded\n",
      "shard_45192 loaded\n",
      "shard_35826 loaded\n",
      "shard_29492 loaded\n",
      "shard_22991 loaded\n",
      "shard_41693 loaded\n",
      "shard_40845 loaded\n",
      "shard_16847 loaded\n",
      "shard_1675 loaded\n",
      "shard_3000 loaded\n",
      "shard_11575 loaded\n",
      "shard_36985 loaded\n",
      "shard_34590 loaded\n",
      "shard_9152 loaded\n",
      "shard_4530 loaded\n",
      "shard_6833 loaded\n",
      "shard_18466 loaded\n",
      "shard_9691 loaded\n",
      "shard_44275 loaded\n",
      "shard_49532 loaded\n",
      "shard_38647 loaded\n",
      "shard_36741 loaded\n",
      "shard_33623 loaded\n",
      "shard_28648 loaded\n",
      "shard_1100 loaded\n",
      "shard_7026 loaded\n",
      "shard_30635 loaded\n",
      "shard_6730 loaded\n",
      "shard_3275 loaded\n",
      "shard_37059 loaded\n",
      "shard_47608 loaded\n",
      "shard_5849 loaded\n",
      "shard_44197 loaded\n",
      "shard_37604 loaded\n",
      "shard_28662 loaded\n",
      "shard_11989 loaded\n",
      "shard_10246 loaded\n",
      "shard_660 loaded\n",
      "shard_46537 loaded\n",
      "shard_4655 loaded\n",
      "shard_21841 loaded\n",
      "shard_33740 loaded\n",
      "shard_42465 loaded\n",
      "shard_33744 loaded\n",
      "shard_30931 loaded\n",
      "shard_17327 loaded\n",
      "shard_45922 loaded\n",
      "shard_25429 loaded\n",
      "shard_5960 loaded\n",
      "shard_14652 loaded\n",
      "shard_49233 loaded\n",
      "shard_7623 loaded\n",
      "shard_29933 loaded\n",
      "shard_642 loaded\n",
      "shard_19912 loaded\n",
      "shard_20273 loaded\n",
      "shard_33577 loaded\n",
      "shard_38422 loaded\n",
      "shard_49127 loaded\n",
      "shard_44850 loaded\n",
      "shard_31108 loaded\n",
      "shard_3241 loaded\n",
      "shard_11713 loaded\n",
      "shard_42825 loaded\n",
      "shard_40278 loaded\n",
      "shard_31415 loaded\n",
      "shard_25341 loaded\n",
      "shard_39926 loaded\n",
      "shard_33402 loaded\n",
      "shard_35815 loaded\n",
      "shard_16987 loaded\n",
      "shard_22779 loaded\n",
      "shard_9575 loaded\n",
      "shard_122 loaded\n",
      "shard_605 loaded\n",
      "shard_36844 loaded\n",
      "shard_25056 loaded\n",
      "shard_29086 loaded\n",
      "shard_8820 loaded\n",
      "shard_19959 loaded\n",
      "shard_19638 loaded\n",
      "shard_9816 loaded\n",
      "shard_283 loaded\n",
      "shard_42359 loaded\n",
      "shard_20238 loaded\n",
      "shard_45898 loaded\n",
      "shard_46153 loaded\n",
      "shard_40104 loaded\n",
      "shard_49823 loaded\n",
      "shard_5216 loaded\n",
      "shard_44128 loaded\n",
      "shard_47698 loaded\n",
      "shard_9011 loaded\n",
      "shard_43261 loaded\n",
      "shard_15911 loaded\n",
      "shard_35742 loaded\n",
      "shard_19268 loaded\n",
      "shard_22246 loaded\n",
      "shard_38731 loaded\n",
      "shard_23362 loaded\n",
      "shard_1978 loaded\n",
      "shard_39884 loaded\n",
      "shard_3875 loaded\n",
      "shard_29273 loaded\n",
      "shard_36424 loaded\n",
      "shard_27114 loaded\n",
      "shard_35624 loaded\n",
      "shard_49102 loaded\n",
      "shard_39118 loaded\n",
      "shard_10231 loaded\n",
      "shard_10294 loaded\n",
      "shard_32037 loaded\n",
      "shard_15080 loaded\n",
      "shard_13236 loaded\n",
      "shard_21015 loaded\n",
      "shard_21949 loaded\n",
      "shard_20595 loaded\n",
      "shard_34813 loaded\n",
      "shard_4963 loaded\n",
      "shard_17935 loaded\n",
      "shard_9432 loaded\n",
      "shard_33613 loaded\n",
      "shard_2792 loaded\n",
      "shard_13391 loaded\n",
      "shard_7360 loaded\n",
      "shard_28160 loaded\n",
      "shard_41061 loaded\n",
      "shard_42206 loaded\n",
      "shard_35698 loaded\n",
      "shard_43847 loaded\n",
      "shard_43496 loaded\n",
      "shard_40046 loaded\n",
      "shard_24976 loaded\n",
      "shard_27639 loaded\n",
      "shard_40292 loaded\n",
      "shard_8709 loaded\n",
      "shard_25163 loaded\n",
      "shard_40450 loaded\n",
      "shard_46286 loaded\n",
      "shard_24709 loaded\n",
      "shard_6748 loaded\n",
      "shard_46944 loaded\n",
      "shard_39022 loaded\n",
      "shard_26477 loaded\n",
      "shard_46748 loaded\n",
      "shard_26978 loaded\n",
      "shard_22298 loaded\n",
      "shard_4175 loaded\n",
      "shard_22126 loaded\n",
      "shard_1207 loaded\n",
      "shard_21427 loaded\n",
      "shard_12087 loaded\n",
      "shard_39570 loaded\n",
      "shard_1917 loaded\n",
      "shard_5607 loaded\n",
      "shard_7996 loaded\n",
      "shard_41804 loaded\n",
      "shard_37431 loaded\n",
      "shard_12449 loaded\n",
      "shard_11650 loaded\n",
      "shard_46843 loaded\n",
      "shard_28886 loaded\n",
      "shard_1829 loaded\n",
      "shard_39948 loaded\n",
      "shard_33274 loaded\n",
      "shard_5146 loaded\n",
      "shard_29909 loaded\n",
      "shard_27803 loaded\n",
      "shard_30435 loaded\n",
      "shard_30173 loaded\n",
      "shard_49483 loaded\n",
      "shard_4128 loaded\n",
      "shard_31235 loaded\n",
      "shard_16887 loaded\n",
      "shard_37033 loaded\n",
      "shard_20180 loaded\n",
      "shard_49200 loaded\n",
      "shard_42450 loaded\n",
      "shard_46353 loaded\n",
      "shard_39060 loaded\n",
      "shard_32520 loaded\n",
      "shard_11655 loaded\n",
      "shard_17790 loaded\n",
      "shard_36378 loaded\n",
      "shard_9412 loaded\n",
      "shard_41252 loaded\n",
      "shard_27401 loaded\n",
      "shard_40929 loaded\n",
      "shard_38908 loaded\n",
      "shard_18275 loaded\n",
      "shard_35050 loaded\n",
      "shard_38197 loaded\n",
      "shard_1126 loaded\n",
      "shard_14970 loaded\n",
      "shard_47303 loaded\n",
      "shard_25658 loaded\n",
      "shard_25161 loaded\n",
      "shard_45297 loaded\n",
      "shard_28657 loaded\n",
      "shard_46462 loaded\n",
      "shard_23516 loaded\n",
      "shard_2267 loaded\n",
      "shard_29760 loaded\n",
      "shard_13727 loaded\n",
      "shard_3966 loaded\n",
      "shard_38371 loaded\n",
      "shard_47895 loaded\n",
      "shard_10218 loaded\n",
      "shard_3948 loaded\n",
      "shard_27433 loaded\n",
      "shard_19092 loaded\n",
      "shard_45515 loaded\n",
      "shard_42454 loaded\n",
      "shard_16192 loaded\n",
      "shard_2237 loaded\n",
      "shard_37057 loaded\n",
      "shard_15005 loaded\n",
      "shard_29110 loaded\n",
      "shard_15119 loaded\n",
      "shard_43627 loaded\n",
      "shard_42758 loaded\n",
      "shard_2039 loaded\n",
      "shard_40927 loaded\n",
      "shard_43129 loaded\n",
      "shard_27293 loaded\n",
      "shard_47795 loaded\n",
      "shard_22485 loaded\n",
      "shard_12537 loaded\n",
      "shard_48498 loaded\n",
      "shard_25120 loaded\n",
      "shard_23181 loaded\n",
      "shard_27125 loaded\n",
      "shard_639 loaded\n",
      "shard_1916 loaded\n",
      "shard_31480 loaded\n",
      "shard_2287 loaded\n",
      "shard_16670 loaded\n",
      "shard_17353 loaded\n",
      "shard_26221 loaded\n",
      "shard_28779 loaded\n",
      "shard_6308 loaded\n",
      "shard_11767 loaded\n",
      "shard_6268 loaded\n",
      "shard_33656 loaded\n",
      "shard_29787 loaded\n",
      "shard_38435 loaded\n",
      "shard_420 loaded\n",
      "shard_3716 loaded\n",
      "shard_14595 loaded\n",
      "shard_10522 loaded\n",
      "shard_9838 loaded\n",
      "shard_38920 loaded\n",
      "shard_7931 loaded\n",
      "shard_26312 loaded\n",
      "shard_6510 loaded\n",
      "shard_1732 loaded\n",
      "shard_14244 loaded\n",
      "shard_3122 loaded\n",
      "shard_26019 loaded\n",
      "shard_28120 loaded\n",
      "shard_25441 loaded\n",
      "shard_24726 loaded\n",
      "shard_45651 loaded\n",
      "shard_33366 loaded\n",
      "shard_7435 loaded\n",
      "shard_41139 loaded\n",
      "shard_12488 loaded\n",
      "shard_49025 loaded\n",
      "shard_5488 loaded\n",
      "shard_49004 loaded\n",
      "shard_13944 loaded\n",
      "shard_27143 loaded\n",
      "shard_13992 loaded\n",
      "shard_17 loaded\n",
      "shard_17370 loaded\n",
      "shard_37705 loaded\n",
      "shard_18752 loaded\n",
      "shard_23075 loaded\n",
      "shard_22274 loaded\n",
      "shard_5058 loaded\n",
      "shard_18495 loaded\n",
      "shard_20748 loaded\n",
      "shard_44772 loaded\n",
      "shard_6145 loaded\n",
      "shard_33549 loaded\n",
      "shard_48746 loaded\n",
      "shard_13798 loaded\n",
      "shard_20991 loaded\n",
      "shard_15137 loaded\n",
      "shard_34454 loaded\n",
      "shard_5841 loaded\n",
      "shard_28131 loaded\n",
      "shard_37373 loaded\n",
      "shard_23757 loaded\n",
      "shard_24665 loaded\n",
      "shard_35761 loaded\n",
      "shard_16130 loaded\n",
      "shard_26514 loaded\n",
      "shard_9208 loaded\n",
      "shard_46185 loaded\n",
      "shard_33400 loaded\n",
      "shard_21927 loaded\n",
      "shard_27617 loaded\n",
      "shard_37960 loaded\n",
      "shard_9171 loaded\n",
      "shard_39485 loaded\n",
      "shard_16710 loaded\n",
      "shard_28768 loaded\n",
      "shard_20561 loaded\n",
      "shard_48208 loaded\n",
      "shard_19536 loaded\n",
      "shard_18523 loaded\n",
      "shard_26712 loaded\n",
      "shard_12336 loaded\n",
      "shard_3636 loaded\n",
      "shard_10964 loaded\n",
      "shard_34320 loaded\n",
      "shard_18756 loaded\n",
      "shard_6643 loaded\n",
      "shard_44705 loaded\n",
      "shard_32648 loaded\n",
      "shard_18280 loaded\n",
      "shard_48464 loaded\n",
      "shard_5655 loaded\n",
      "shard_41636 loaded\n",
      "shard_44563 loaded\n",
      "shard_30483 loaded\n",
      "shard_40224 loaded\n",
      "shard_954 loaded\n",
      "shard_41696 loaded\n",
      "shard_43185 loaded\n",
      "shard_47048 loaded\n",
      "shard_33541 loaded\n",
      "shard_423 loaded\n",
      "shard_38893 loaded\n",
      "shard_10944 loaded\n",
      "shard_1018 loaded\n",
      "shard_34369 loaded\n",
      "shard_13042 loaded\n",
      "shard_38744 loaded\n",
      "shard_2028 loaded\n",
      "shard_42225 loaded\n",
      "shard_5507 loaded\n",
      "shard_46201 loaded\n",
      "shard_19919 loaded\n",
      "shard_37235 loaded\n",
      "shard_37517 loaded\n",
      "shard_5170 loaded\n",
      "shard_27167 loaded\n",
      "shard_7417 loaded\n",
      "shard_22992 loaded\n",
      "shard_30610 loaded\n",
      "shard_255 loaded\n",
      "shard_46175 loaded\n",
      "shard_30381 loaded\n",
      "shard_8847 loaded\n",
      "shard_25505 loaded\n",
      "shard_22604 loaded\n",
      "shard_24230 loaded\n",
      "shard_26787 loaded\n",
      "shard_30863 loaded\n",
      "shard_48645 loaded\n",
      "shard_16188 loaded\n",
      "shard_15262 loaded\n",
      "shard_30149 loaded\n",
      "shard_34634 loaded\n",
      "shard_35949 loaded\n",
      "shard_35999 loaded\n",
      "shard_14852 loaded\n",
      "shard_43820 loaded\n",
      "shard_37940 loaded\n",
      "shard_40963 loaded\n",
      "shard_26971 loaded\n",
      "shard_39167 loaded\n",
      "shard_27219 loaded\n",
      "shard_29078 loaded\n",
      "shard_34043 loaded\n",
      "shard_12752 loaded\n",
      "shard_47622 loaded\n",
      "shard_16844 loaded\n",
      "shard_20570 loaded\n",
      "shard_46901 loaded\n",
      "shard_17043 loaded\n",
      "shard_18032 loaded\n",
      "shard_47664 loaded\n",
      "shard_20440 loaded\n",
      "shard_66 loaded\n",
      "shard_5297 loaded\n",
      "shard_39337 loaded\n",
      "shard_36149 loaded\n",
      "shard_27572 loaded\n",
      "shard_1773 loaded\n",
      "shard_38098 loaded\n",
      "shard_47295 loaded\n",
      "shard_15945 loaded\n",
      "shard_15730 loaded\n",
      "shard_8615 loaded\n",
      "shard_5544 loaded\n",
      "shard_21992 loaded\n",
      "shard_45728 loaded\n",
      "shard_11662 loaded\n",
      "shard_48070 loaded\n",
      "shard_9856 loaded\n",
      "shard_12738 loaded\n",
      "shard_8397 loaded\n",
      "shard_46616 loaded\n",
      "shard_5718 loaded\n",
      "shard_31223 loaded\n",
      "shard_26268 loaded\n",
      "shard_34854 loaded\n",
      "shard_3386 loaded\n",
      "shard_17533 loaded\n",
      "shard_44789 loaded\n",
      "shard_16913 loaded\n",
      "shard_22758 loaded\n",
      "shard_41194 loaded\n",
      "shard_9348 loaded\n",
      "shard_41526 loaded\n",
      "shard_42830 loaded\n",
      "shard_25888 loaded\n",
      "shard_43585 loaded\n",
      "shard_23408 loaded\n",
      "shard_28695 loaded\n",
      "shard_28990 loaded\n",
      "shard_30636 loaded\n",
      "shard_40844 loaded\n",
      "shard_28276 loaded\n",
      "shard_28636 loaded\n",
      "shard_5102 loaded\n",
      "shard_14911 loaded\n",
      "shard_44213 loaded\n",
      "shard_30794 loaded\n",
      "shard_38844 loaded\n",
      "shard_39474 loaded\n",
      "shard_2085 loaded\n",
      "shard_25514 loaded\n",
      "shard_29890 loaded\n",
      "shard_49965 loaded\n",
      "shard_42602 loaded\n",
      "shard_31393 loaded\n",
      "shard_19699 loaded\n",
      "shard_19720 loaded\n",
      "shard_29472 loaded\n",
      "shard_43389 loaded\n",
      "shard_20505 loaded\n",
      "shard_9567 loaded\n",
      "shard_48825 loaded\n",
      "shard_6207 loaded\n",
      "shard_25314 loaded\n",
      "shard_12719 loaded\n",
      "shard_2271 loaded\n",
      "shard_31513 loaded\n",
      "shard_12387 loaded\n",
      "shard_32363 loaded\n",
      "shard_27862 loaded\n",
      "shard_26883 loaded\n",
      "shard_23580 loaded\n",
      "shard_16680 loaded\n",
      "shard_15599 loaded\n",
      "shard_24384 loaded\n",
      "shard_5847 loaded\n",
      "shard_8388 loaded\n",
      "shard_48828 loaded\n",
      "shard_32208 loaded\n",
      "shard_34846 loaded\n",
      "shard_22838 loaded\n",
      "shard_6294 loaded\n",
      "shard_42289 loaded\n",
      "shard_40167 loaded\n",
      "shard_47880 loaded\n",
      "shard_39719 loaded\n",
      "shard_27182 loaded\n",
      "shard_19024 loaded\n",
      "shard_12425 loaded\n",
      "shard_44968 loaded\n",
      "shard_18132 loaded\n",
      "shard_2008 loaded\n",
      "shard_33854 loaded\n",
      "shard_34577 loaded\n",
      "shard_38415 loaded\n",
      "shard_29012 loaded\n",
      "shard_56 loaded\n",
      "shard_9518 loaded\n",
      "shard_19757 loaded\n",
      "shard_22732 loaded\n",
      "shard_796 loaded\n",
      "shard_48024 loaded\n",
      "shard_12593 loaded\n",
      "shard_20980 loaded\n",
      "shard_37263 loaded\n",
      "shard_15528 loaded\n",
      "shard_32801 loaded\n",
      "shard_7631 loaded\n",
      "shard_35162 loaded\n",
      "shard_16629 loaded\n",
      "shard_11370 loaded\n",
      "shard_23079 loaded\n",
      "shard_29437 loaded\n",
      "shard_42064 loaded\n",
      "shard_21006 loaded\n",
      "shard_20245 loaded\n",
      "shard_16978 loaded\n",
      "shard_30159 loaded\n",
      "shard_41021 loaded\n",
      "shard_31465 loaded\n",
      "shard_18754 loaded\n",
      "shard_33390 loaded\n",
      "shard_18730 loaded\n",
      "shard_10173 loaded\n",
      "shard_25828 loaded\n",
      "shard_8654 loaded\n",
      "shard_10835 loaded\n",
      "shard_13169 loaded\n",
      "shard_14622 loaded\n",
      "shard_31723 loaded\n",
      "shard_34727 loaded\n",
      "shard_14841 loaded\n",
      "shard_227 loaded\n",
      "shard_38966 loaded\n",
      "shard_4747 loaded\n",
      "shard_41509 loaded\n",
      "shard_44520 loaded\n",
      "shard_14224 loaded\n",
      "shard_10899 loaded\n",
      "shard_29610 loaded\n",
      "shard_38173 loaded\n",
      "shard_32076 loaded\n",
      "shard_8663 loaded\n",
      "shard_8529 loaded\n",
      "shard_35741 loaded\n",
      "shard_48712 loaded\n",
      "shard_39242 loaded\n",
      "shard_18631 loaded\n",
      "shard_45250 loaded\n",
      "shard_48987 loaded\n",
      "shard_14455 loaded\n",
      "shard_3615 loaded\n",
      "shard_31382 loaded\n",
      "shard_2718 loaded\n",
      "shard_37148 loaded\n",
      "shard_14835 loaded\n",
      "shard_8623 loaded\n",
      "shard_34538 loaded\n",
      "shard_23785 loaded\n",
      "shard_20817 loaded\n",
      "shard_39252 loaded\n",
      "shard_46967 loaded\n",
      "shard_3184 loaded\n",
      "shard_43873 loaded\n",
      "shard_26462 loaded\n",
      "shard_2470 loaded\n",
      "shard_48666 loaded\n",
      "shard_1705 loaded\n",
      "shard_30784 loaded\n",
      "shard_11259 loaded\n",
      "shard_27791 loaded\n",
      "shard_24457 loaded\n",
      "shard_21824 loaded\n",
      "shard_33209 loaded\n",
      "shard_46840 loaded\n",
      "shard_19648 loaded\n",
      "shard_25739 loaded\n",
      "shard_21642 loaded\n",
      "shard_36191 loaded\n",
      "shard_42965 loaded\n",
      "shard_16776 loaded\n",
      "shard_38451 loaded\n",
      "shard_22125 loaded\n",
      "shard_39472 loaded\n",
      "shard_21991 loaded\n",
      "shard_20871 loaded\n",
      "shard_13282 loaded\n",
      "shard_10675 loaded\n",
      "shard_47601 loaded\n",
      "shard_920 loaded\n",
      "shard_16558 loaded\n",
      "shard_4263 loaded\n",
      "shard_30967 loaded\n",
      "shard_14736 loaded\n",
      "shard_91 loaded\n",
      "shard_32091 loaded\n",
      "shard_5392 loaded\n",
      "shard_29685 loaded\n",
      "shard_48551 loaded\n",
      "shard_16474 loaded\n",
      "shard_42152 loaded\n",
      "shard_29173 loaded\n",
      "shard_6894 loaded\n",
      "shard_37533 loaded\n",
      "shard_40908 loaded\n",
      "shard_18489 loaded\n",
      "shard_32165 loaded\n",
      "shard_9166 loaded\n",
      "shard_31827 loaded\n",
      "shard_35157 loaded\n",
      "shard_38864 loaded\n",
      "shard_37873 loaded\n",
      "shard_49915 loaded\n",
      "shard_43120 loaded\n",
      "shard_10306 loaded\n",
      "shard_34713 loaded\n",
      "shard_28996 loaded\n",
      "shard_29146 loaded\n",
      "shard_43567 loaded\n",
      "shard_29108 loaded\n",
      "shard_48621 loaded\n",
      "shard_34505 loaded\n",
      "shard_21903 loaded\n",
      "shard_48174 loaded\n",
      "shard_20268 loaded\n",
      "shard_43510 loaded\n",
      "shard_20103 loaded\n",
      "shard_17050 loaded\n",
      "shard_21666 loaded\n",
      "shard_38960 loaded\n",
      "shard_462 loaded\n",
      "shard_22453 loaded\n",
      "shard_42243 loaded\n",
      "shard_36166 loaded\n",
      "shard_35293 loaded\n",
      "shard_49782 loaded\n",
      "shard_48319 loaded\n",
      "shard_14431 loaded\n",
      "shard_47124 loaded\n",
      "shard_7594 loaded\n",
      "shard_10637 loaded\n",
      "shard_20480 loaded\n",
      "shard_29768 loaded\n",
      "shard_45346 loaded\n",
      "shard_26026 loaded\n",
      "shard_18097 loaded\n",
      "shard_31234 loaded\n",
      "shard_28184 loaded\n",
      "shard_45672 loaded\n",
      "shard_2519 loaded\n",
      "shard_8367 loaded\n",
      "shard_38649 loaded\n",
      "shard_49339 loaded\n",
      "shard_41268 loaded\n",
      "shard_28861 loaded\n",
      "shard_8435 loaded\n",
      "shard_29007 loaded\n",
      "shard_5578 loaded\n",
      "shard_6201 loaded\n",
      "shard_46399 loaded\n",
      "shard_44797 loaded\n",
      "shard_39311 loaded\n",
      "shard_24860 loaded\n",
      "shard_27140 loaded\n",
      "shard_23819 loaded\n",
      "shard_48725 loaded\n",
      "shard_40194 loaded\n",
      "shard_36225 loaded\n",
      "shard_29223 loaded\n",
      "shard_21047 loaded\n",
      "shard_630 loaded\n",
      "shard_32721 loaded\n",
      "shard_9616 loaded\n",
      "shard_43656 loaded\n",
      "shard_45674 loaded\n",
      "shard_25085 loaded\n",
      "shard_40987 loaded\n",
      "shard_39103 loaded\n",
      "shard_31217 loaded\n",
      "shard_6189 loaded\n",
      "shard_49214 loaded\n",
      "shard_1615 loaded\n",
      "shard_49979 loaded\n",
      "shard_12237 loaded\n",
      "shard_35183 loaded\n",
      "shard_40723 loaded\n",
      "shard_18252 loaded\n",
      "shard_29811 loaded\n",
      "shard_7521 loaded\n",
      "shard_19261 loaded\n",
      "shard_41610 loaded\n",
      "shard_2686 loaded\n",
      "shard_21659 loaded\n",
      "shard_8942 loaded\n",
      "shard_16493 loaded\n",
      "shard_15917 loaded\n",
      "shard_48804 loaded\n",
      "shard_26640 loaded\n",
      "shard_23967 loaded\n",
      "shard_32684 loaded\n",
      "shard_11465 loaded\n",
      "shard_32088 loaded\n",
      "shard_4823 loaded\n",
      "shard_18491 loaded\n",
      "shard_26753 loaded\n",
      "shard_6578 loaded\n",
      "shard_49679 loaded\n",
      "shard_3288 loaded\n",
      "shard_12652 loaded\n",
      "shard_42894 loaded\n",
      "shard_28385 loaded\n",
      "shard_28909 loaded\n",
      "shard_16504 loaded\n",
      "shard_3299 loaded\n",
      "shard_49223 loaded\n",
      "shard_7505 loaded\n",
      "shard_26282 loaded\n",
      "shard_7273 loaded\n",
      "shard_3220 loaded\n",
      "shard_11557 loaded\n",
      "shard_4068 loaded\n",
      "shard_9847 loaded\n",
      "shard_35883 loaded\n",
      "shard_434 loaded\n",
      "shard_35797 loaded\n",
      "shard_17380 loaded\n",
      "shard_45277 loaded\n",
      "shard_13913 loaded\n",
      "shard_36026 loaded\n",
      "shard_8488 loaded\n",
      "shard_15505 loaded\n",
      "shard_38627 loaded\n",
      "shard_39211 loaded\n",
      "shard_24992 loaded\n",
      "shard_15245 loaded\n",
      "shard_12864 loaded\n",
      "shard_44822 loaded\n",
      "shard_47625 loaded\n",
      "shard_20863 loaded\n",
      "shard_49178 loaded\n",
      "shard_1842 loaded\n",
      "shard_28821 loaded\n",
      "shard_22578 loaded\n",
      "shard_13665 loaded\n",
      "shard_26168 loaded\n",
      "shard_4503 loaded\n",
      "shard_13877 loaded\n",
      "shard_30166 loaded\n",
      "shard_46805 loaded\n",
      "shard_20411 loaded\n",
      "shard_39984 loaded\n",
      "shard_25762 loaded\n",
      "shard_18556 loaded\n",
      "shard_14755 loaded\n",
      "shard_40076 loaded\n",
      "shard_20311 loaded\n",
      "shard_14867 loaded\n",
      "shard_34566 loaded\n",
      "shard_14721 loaded\n",
      "shard_6428 loaded\n",
      "shard_7453 loaded\n",
      "shard_9883 loaded\n",
      "shard_40760 loaded\n",
      "shard_14443 loaded\n",
      "shard_11451 loaded\n",
      "shard_22937 loaded\n",
      "shard_25639 loaded\n",
      "shard_42977 loaded\n",
      "shard_11327 loaded\n",
      "shard_3603 loaded\n",
      "shard_16532 loaded\n",
      "shard_6496 loaded\n",
      "shard_21111 loaded\n",
      "shard_49666 loaded\n",
      "shard_38185 loaded\n",
      "shard_15685 loaded\n",
      "shard_7180 loaded\n",
      "shard_4337 loaded\n",
      "shard_11078 loaded\n",
      "shard_38418 loaded\n",
      "shard_8458 loaded\n",
      "shard_17936 loaded\n",
      "shard_34611 loaded\n",
      "shard_1012 loaded\n",
      "shard_44279 loaded\n",
      "shard_33521 loaded\n",
      "shard_49158 loaded\n",
      "shard_8546 loaded\n",
      "shard_16802 loaded\n",
      "shard_49253 loaded\n",
      "shard_49742 loaded\n",
      "shard_6764 loaded\n",
      "shard_29691 loaded\n",
      "shard_1788 loaded\n",
      "shard_210 loaded\n",
      "shard_32895 loaded\n",
      "shard_47388 loaded\n",
      "shard_24968 loaded\n",
      "shard_1669 loaded\n",
      "shard_34685 loaded\n",
      "shard_34502 loaded\n",
      "shard_14806 loaded\n",
      "shard_3936 loaded\n",
      "shard_40200 loaded\n",
      "shard_43073 loaded\n",
      "shard_46755 loaded\n",
      "shard_12972 loaded\n",
      "shard_318 loaded\n",
      "shard_22682 loaded\n",
      "shard_18938 loaded\n",
      "shard_32694 loaded\n",
      "shard_35555 loaded\n",
      "shard_32380 loaded\n",
      "shard_24116 loaded\n",
      "shard_4533 loaded\n",
      "shard_25087 loaded\n",
      "shard_12736 loaded\n",
      "shard_16438 loaded\n",
      "shard_27728 loaded\n",
      "shard_46093 loaded\n",
      "shard_15674 loaded\n",
      "shard_10990 loaded\n",
      "shard_14167 loaded\n",
      "shard_49842 loaded\n",
      "shard_4160 loaded\n",
      "shard_23569 loaded\n",
      "shard_22966 loaded\n",
      "shard_44183 loaded\n",
      "shard_46930 loaded\n",
      "shard_29180 loaded\n",
      "shard_40816 loaded\n",
      "shard_15075 loaded\n",
      "shard_39121 loaded\n",
      "shard_4727 loaded\n",
      "shard_25676 loaded\n",
      "shard_8338 loaded\n",
      "shard_28513 loaded\n",
      "shard_35216 loaded\n",
      "shard_29699 loaded\n",
      "shard_44499 loaded\n",
      "shard_22829 loaded\n",
      "shard_25760 loaded\n",
      "shard_41403 loaded\n",
      "shard_11003 loaded\n",
      "shard_11473 loaded\n",
      "shard_43441 loaded\n",
      "shard_14212 loaded\n",
      "shard_24497 loaded\n",
      "shard_20882 loaded\n",
      "shard_19780 loaded\n",
      "shard_15623 loaded\n",
      "shard_45955 loaded\n",
      "shard_43272 loaded\n",
      "shard_25796 loaded\n",
      "shard_35705 loaded\n",
      "shard_36843 loaded\n",
      "shard_19461 loaded\n",
      "shard_13325 loaded\n",
      "shard_39696 loaded\n",
      "shard_13517 loaded\n",
      "shard_15554 loaded\n",
      "shard_18420 loaded\n",
      "shard_41735 loaded\n",
      "shard_49404 loaded\n",
      "shard_37715 loaded\n",
      "shard_4109 loaded\n",
      "shard_49586 loaded\n",
      "shard_11267 loaded\n",
      "shard_15303 loaded\n",
      "shard_26424 loaded\n",
      "shard_19777 loaded\n",
      "shard_37892 loaded\n",
      "shard_6066 loaded\n",
      "shard_46448 loaded\n",
      "shard_29401 loaded\n",
      "shard_17726 loaded\n",
      "shard_4951 loaded\n",
      "shard_10875 loaded\n",
      "shard_28993 loaded\n",
      "shard_24498 loaded\n",
      "shard_30619 loaded\n",
      "shard_46934 loaded\n",
      "shard_26958 loaded\n",
      "shard_26857 loaded\n",
      "shard_19 loaded\n",
      "shard_19208 loaded\n",
      "shard_22846 loaded\n",
      "shard_20130 loaded\n",
      "shard_31724 loaded\n",
      "shard_7396 loaded\n",
      "shard_2030 loaded\n",
      "shard_22626 loaded\n",
      "shard_48345 loaded\n",
      "shard_16967 loaded\n",
      "shard_11231 loaded\n",
      "shard_46055 loaded\n",
      "shard_11380 loaded\n",
      "shard_38552 loaded\n",
      "shard_12998 loaded\n",
      "shard_39905 loaded\n",
      "shard_15147 loaded\n",
      "shard_16536 loaded\n",
      "shard_11255 loaded\n",
      "shard_11960 loaded\n",
      "shard_29285 loaded\n",
      "shard_36914 loaded\n",
      "shard_31839 loaded\n",
      "shard_36236 loaded\n",
      "shard_14548 loaded\n",
      "shard_21639 loaded\n",
      "shard_11531 loaded\n",
      "shard_47884 loaded\n",
      "shard_10126 loaded\n",
      "shard_48469 loaded\n",
      "shard_16664 loaded\n",
      "shard_25204 loaded\n",
      "shard_3531 loaded\n",
      "shard_2837 loaded\n",
      "shard_21861 loaded\n",
      "shard_16715 loaded\n",
      "shard_30035 loaded\n",
      "shard_1567 loaded\n",
      "shard_37953 loaded\n",
      "shard_37002 loaded\n",
      "shard_4764 loaded\n",
      "shard_16951 loaded\n",
      "shard_8034 loaded\n",
      "shard_26044 loaded\n",
      "shard_40308 loaded\n",
      "shard_14371 loaded\n",
      "shard_25199 loaded\n",
      "shard_49715 loaded\n",
      "shard_44152 loaded\n",
      "shard_3208 loaded\n",
      "shard_43925 loaded\n",
      "shard_46284 loaded\n",
      "shard_38287 loaded\n",
      "shard_44593 loaded\n",
      "shard_49614 loaded\n",
      "shard_10565 loaded\n",
      "shard_5342 loaded\n",
      "shard_11146 loaded\n",
      "shard_42229 loaded\n",
      "shard_21061 loaded\n",
      "shard_21829 loaded\n",
      "shard_39734 loaded\n",
      "shard_6167 loaded\n",
      "shard_36937 loaded\n",
      "shard_45039 loaded\n",
      "shard_48297 loaded\n",
      "shard_14658 loaded\n",
      "shard_1681 loaded\n",
      "shard_1432 loaded\n",
      "shard_40001 loaded\n",
      "shard_40996 loaded\n",
      "shard_26879 loaded\n",
      "shard_14623 loaded\n",
      "shard_10166 loaded\n",
      "shard_3354 loaded\n",
      "shard_32042 loaded\n",
      "shard_26645 loaded\n",
      "shard_9285 loaded\n",
      "shard_149 loaded\n",
      "shard_28317 loaded\n",
      "shard_8360 loaded\n",
      "shard_2875 loaded\n",
      "shard_40954 loaded\n",
      "shard_30835 loaded\n",
      "shard_17058 loaded\n",
      "shard_26504 loaded\n",
      "shard_7649 loaded\n",
      "shard_19132 loaded\n",
      "shard_9741 loaded\n",
      "shard_28747 loaded\n",
      "shard_10453 loaded\n",
      "shard_6616 loaded\n",
      "shard_38044 loaded\n",
      "shard_41249 loaded\n",
      "shard_20775 loaded\n",
      "shard_23124 loaded\n",
      "shard_38954 loaded\n",
      "shard_42489 loaded\n",
      "shard_39639 loaded\n",
      "shard_27560 loaded\n",
      "shard_6187 loaded\n",
      "shard_26631 loaded\n",
      "shard_5531 loaded\n",
      "shard_43942 loaded\n",
      "shard_24449 loaded\n",
      "shard_16357 loaded\n",
      "shard_28587 loaded\n",
      "shard_1697 loaded\n",
      "shard_25476 loaded\n",
      "shard_48241 loaded\n",
      "shard_38305 loaded\n",
      "shard_3541 loaded\n",
      "shard_48442 loaded\n",
      "shard_2372 loaded\n",
      "shard_44378 loaded\n",
      "shard_23512 loaded\n",
      "shard_21504 loaded\n",
      "shard_1346 loaded\n",
      "shard_756 loaded\n",
      "shard_19672 loaded\n",
      "shard_9574 loaded\n",
      "shard_14650 loaded\n",
      "shard_41494 loaded\n",
      "shard_39581 loaded\n",
      "shard_26276 loaded\n",
      "shard_24772 loaded\n",
      "shard_16495 loaded\n",
      "shard_38695 loaded\n",
      "shard_9851 loaded\n",
      "shard_41359 loaded\n",
      "shard_31866 loaded\n",
      "shard_14375 loaded\n",
      "shard_12241 loaded\n",
      "shard_29637 loaded\n",
      "shard_2044 loaded\n",
      "shard_5861 loaded\n",
      "shard_2094 loaded\n",
      "shard_26664 loaded\n",
      "shard_20868 loaded\n",
      "shard_12124 loaded\n",
      "shard_30211 loaded\n",
      "shard_20866 loaded\n",
      "shard_29425 loaded\n",
      "shard_1870 loaded\n",
      "shard_43074 loaded\n",
      "shard_5520 loaded\n",
      "shard_21292 loaded\n",
      "shard_49839 loaded\n",
      "shard_14113 loaded\n",
      "shard_20004 loaded\n",
      "shard_22045 loaded\n",
      "shard_27678 loaded\n",
      "shard_2090 loaded\n",
      "shard_2352 loaded\n",
      "shard_14758 loaded\n",
      "shard_34762 loaded\n",
      "shard_6019 loaded\n",
      "shard_10807 loaded\n",
      "shard_11333 loaded\n",
      "shard_10499 loaded\n",
      "shard_33598 loaded\n",
      "shard_13961 loaded\n",
      "shard_28022 loaded\n",
      "shard_41453 loaded\n",
      "shard_48834 loaded\n",
      "shard_46916 loaded\n",
      "shard_2291 loaded\n",
      "shard_24373 loaded\n",
      "shard_36082 loaded\n",
      "shard_28335 loaded\n",
      "shard_41907 loaded\n",
      "shard_40447 loaded\n",
      "shard_10280 loaded\n",
      "shard_18467 loaded\n",
      "shard_45825 loaded\n",
      "shard_26116 loaded\n",
      "shard_5074 loaded\n",
      "shard_49175 loaded\n",
      "shard_29327 loaded\n",
      "shard_8856 loaded\n",
      "shard_29616 loaded\n",
      "shard_32610 loaded\n",
      "shard_46799 loaded\n",
      "shard_17849 loaded\n",
      "shard_38431 loaded\n",
      "shard_27261 loaded\n",
      "shard_8509 loaded\n",
      "shard_18637 loaded\n",
      "shard_6661 loaded\n",
      "shard_43538 loaded\n",
      "shard_877 loaded\n",
      "shard_4960 loaded\n",
      "shard_16403 loaded\n",
      "shard_36354 loaded\n",
      "shard_49027 loaded\n",
      "shard_27479 loaded\n",
      "shard_45473 loaded\n",
      "shard_47924 loaded\n",
      "shard_7789 loaded\n",
      "shard_32913 loaded\n",
      "shard_39766 loaded\n",
      "shard_4808 loaded\n",
      "shard_30566 loaded\n",
      "shard_32615 loaded\n",
      "shard_45496 loaded\n",
      "shard_37733 loaded\n",
      "shard_1333 loaded\n",
      "shard_35472 loaded\n",
      "shard_45710 loaded\n",
      "shard_14355 loaded\n",
      "shard_9877 loaded\n",
      "shard_23498 loaded\n",
      "shard_40102 loaded\n",
      "shard_10876 loaded\n",
      "shard_43035 loaded\n",
      "shard_49647 loaded\n",
      "shard_21855 loaded\n",
      "shard_23909 loaded\n",
      "shard_28830 loaded\n",
      "shard_3831 loaded\n",
      "shard_28465 loaded\n",
      "shard_27988 loaded\n",
      "shard_31112 loaded\n",
      "shard_30196 loaded\n",
      "shard_14120 loaded\n",
      "shard_24216 loaded\n",
      "shard_14143 loaded\n",
      "shard_49521 loaded\n",
      "shard_1761 loaded\n",
      "shard_14706 loaded\n",
      "shard_39465 loaded\n",
      "shard_20046 loaded\n",
      "shard_33300 loaded\n",
      "shard_21053 loaded\n",
      "shard_34222 loaded\n",
      "shard_515 loaded\n",
      "shard_27842 loaded\n",
      "shard_44085 loaded\n",
      "shard_29264 loaded\n",
      "shard_30224 loaded\n",
      "shard_26688 loaded\n",
      "shard_25308 loaded\n",
      "shard_20186 loaded\n",
      "shard_21540 loaded\n",
      "shard_13426 loaded\n",
      "shard_14024 loaded\n",
      "shard_15309 loaded\n",
      "shard_36676 loaded\n",
      "shard_11080 loaded\n",
      "shard_25807 loaded\n",
      "shard_31030 loaded\n",
      "shard_28625 loaded\n",
      "shard_18083 loaded\n",
      "shard_5152 loaded\n",
      "shard_46441 loaded\n",
      "shard_25100 loaded\n",
      "shard_32016 loaded\n",
      "shard_7723 loaded\n",
      "shard_40852 loaded\n",
      "shard_11386 loaded\n",
      "shard_9094 loaded\n",
      "shard_23653 loaded\n",
      "shard_45696 loaded\n",
      "shard_27152 loaded\n",
      "shard_8335 loaded\n",
      "shard_31801 loaded\n",
      "shard_7964 loaded\n",
      "shard_43956 loaded\n",
      "shard_25677 loaded\n",
      "shard_31517 loaded\n",
      "shard_35757 loaded\n",
      "shard_41313 loaded\n",
      "shard_21913 loaded\n",
      "shard_14128 loaded\n",
      "shard_27138 loaded\n",
      "shard_22119 loaded\n",
      "shard_38468 loaded\n",
      "shard_3529 loaded\n",
      "shard_27526 loaded\n",
      "shard_26559 loaded\n",
      "shard_35983 loaded\n",
      "shard_45484 loaded\n",
      "shard_10936 loaded\n",
      "shard_3552 loaded\n",
      "shard_33191 loaded\n",
      "shard_3753 loaded\n",
      "shard_9253 loaded\n",
      "shard_21491 loaded\n",
      "shard_1607 loaded\n",
      "shard_42015 loaded\n",
      "shard_24640 loaded\n",
      "shard_34696 loaded\n",
      "shard_10877 loaded\n",
      "shard_48440 loaded\n",
      "shard_24284 loaded\n",
      "shard_28197 loaded\n",
      "shard_23119 loaded\n",
      "shard_33775 loaded\n",
      "shard_16356 loaded\n",
      "shard_21318 loaded\n",
      "shard_48105 loaded\n",
      "shard_16144 loaded\n",
      "shard_11597 loaded\n",
      "shard_37595 loaded\n",
      "shard_38630 loaded\n",
      "shard_27973 loaded\n",
      "shard_14731 loaded\n",
      "shard_43853 loaded\n",
      "shard_41722 loaded\n",
      "shard_19785 loaded\n",
      "shard_29420 loaded\n",
      "shard_41327 loaded\n",
      "shard_46644 loaded\n",
      "shard_3930 loaded\n",
      "shard_17795 loaded\n",
      "shard_30 loaded\n",
      "shard_22407 loaded\n",
      "shard_40561 loaded\n",
      "shard_6774 loaded\n",
      "shard_25782 loaded\n",
      "shard_31000 loaded\n",
      "shard_47258 loaded\n",
      "shard_45842 loaded\n",
      "shard_47337 loaded\n",
      "shard_31961 loaded\n",
      "shard_6993 loaded\n",
      "shard_8396 loaded\n",
      "shard_23970 loaded\n",
      "shard_33782 loaded\n",
      "shard_3056 loaded\n",
      "shard_27001 loaded\n",
      "shard_32166 loaded\n",
      "shard_10347 loaded\n",
      "shard_13316 loaded\n",
      "shard_11008 loaded\n",
      "shard_32163 loaded\n",
      "shard_22632 loaded\n",
      "shard_46172 loaded\n",
      "shard_15639 loaded\n",
      "shard_49602 loaded\n",
      "shard_29356 loaded\n",
      "shard_45033 loaded\n",
      "shard_45575 loaded\n",
      "shard_48705 loaded\n",
      "shard_42295 loaded\n",
      "shard_1938 loaded\n",
      "shard_31051 loaded\n",
      "shard_17047 loaded\n",
      "shard_19573 loaded\n",
      "shard_34400 loaded\n",
      "shard_42975 loaded\n",
      "shard_16866 loaded\n",
      "shard_3954 loaded\n",
      "shard_37052 loaded\n",
      "shard_15765 loaded\n",
      "shard_19715 loaded\n",
      "shard_40213 loaded\n",
      "shard_38534 loaded\n",
      "shard_5926 loaded\n",
      "shard_22134 loaded\n",
      "shard_45806 loaded\n",
      "shard_44919 loaded\n",
      "shard_43889 loaded\n",
      "shard_37174 loaded\n",
      "shard_2898 loaded\n",
      "shard_25627 loaded\n",
      "shard_15299 loaded\n",
      "shard_30439 loaded\n",
      "shard_5550 loaded\n",
      "shard_41255 loaded\n",
      "shard_21139 loaded\n",
      "shard_23243 loaded\n",
      "shard_46224 loaded\n",
      "shard_29739 loaded\n",
      "shard_10434 loaded\n",
      "shard_36881 loaded\n",
      "shard_25864 loaded\n",
      "shard_24302 loaded\n",
      "shard_24525 loaded\n",
      "shard_29875 loaded\n",
      "shard_2394 loaded\n",
      "shard_19201 loaded\n",
      "shard_5976 loaded\n",
      "shard_13716 loaded\n",
      "shard_42329 loaded\n",
      "shard_25575 loaded\n",
      "shard_25744 loaded\n",
      "shard_23984 loaded\n",
      "shard_27949 loaded\n",
      "shard_47146 loaded\n",
      "shard_347 loaded\n",
      "shard_33069 loaded\n",
      "shard_12330 loaded\n",
      "shard_43540 loaded\n",
      "shard_440 loaded\n",
      "shard_26878 loaded\n",
      "shard_7957 loaded\n",
      "shard_17141 loaded\n",
      "shard_2443 loaded\n",
      "shard_25378 loaded\n",
      "shard_4553 loaded\n",
      "shard_1942 loaded\n",
      "shard_28171 loaded\n",
      "shard_41089 loaded\n",
      "shard_21719 loaded\n",
      "shard_5107 loaded\n",
      "shard_19018 loaded\n",
      "shard_47364 loaded\n",
      "shard_42661 loaded\n",
      "shard_28808 loaded\n",
      "shard_48973 loaded\n",
      "shard_25838 loaded\n",
      "shard_24307 loaded\n",
      "shard_10593 loaded\n",
      "shard_7034 loaded\n",
      "shard_10548 loaded\n",
      "shard_35789 loaded\n",
      "shard_13702 loaded\n",
      "shard_24970 loaded\n",
      "shard_20435 loaded\n",
      "shard_45419 loaded\n",
      "shard_15002 loaded\n",
      "shard_6226 loaded\n",
      "shard_41586 loaded\n",
      "shard_17217 loaded\n",
      "shard_20060 loaded\n",
      "shard_30484 loaded\n",
      "shard_27378 loaded\n",
      "shard_9004 loaded\n",
      "shard_5780 loaded\n",
      "shard_20764 loaded\n",
      "shard_47934 loaded\n",
      "shard_16759 loaded\n",
      "shard_31669 loaded\n",
      "shard_41081 loaded\n",
      "shard_3049 loaded\n",
      "shard_38063 loaded\n",
      "shard_49167 loaded\n",
      "shard_20879 loaded\n",
      "shard_4070 loaded\n",
      "shard_49052 loaded\n",
      "shard_35134 loaded\n",
      "shard_30983 loaded\n",
      "shard_23917 loaded\n",
      "shard_8531 loaded\n",
      "shard_18374 loaded\n",
      "shard_42482 loaded\n",
      "shard_7382 loaded\n",
      "shard_41228 loaded\n",
      "shard_11757 loaded\n",
      "shard_44997 loaded\n",
      "shard_45259 loaded\n",
      "shard_19045 loaded\n",
      "shard_10758 loaded\n",
      "shard_29482 loaded\n",
      "shard_11634 loaded\n",
      "shard_764 loaded\n",
      "shard_33189 loaded\n",
      "shard_38350 loaded\n",
      "shard_14387 loaded\n",
      "shard_34389 loaded\n",
      "shard_15208 loaded\n",
      "shard_25991 loaded\n",
      "shard_46317 loaded\n",
      "shard_25114 loaded\n",
      "shard_31998 loaded\n",
      "shard_25653 loaded\n",
      "shard_29706 loaded\n",
      "shard_43109 loaded\n",
      "shard_39325 loaded\n",
      "shard_17835 loaded\n",
      "shard_25115 loaded\n",
      "shard_39543 loaded\n",
      "shard_22400 loaded\n",
      "shard_46504 loaded\n",
      "shard_48420 loaded\n",
      "shard_45131 loaded\n",
      "shard_6881 loaded\n",
      "shard_27878 loaded\n",
      "shard_40075 loaded\n",
      "shard_49355 loaded\n",
      "shard_20368 loaded\n",
      "shard_32145 loaded\n",
      "shard_17886 loaded\n",
      "shard_7136 loaded\n",
      "shard_42916 loaded\n",
      "shard_9656 loaded\n",
      "shard_13144 loaded\n",
      "shard_47282 loaded\n",
      "shard_44632 loaded\n",
      "shard_15525 loaded\n",
      "shard_21239 loaded\n",
      "shard_48036 loaded\n",
      "shard_40710 loaded\n",
      "shard_36048 loaded\n",
      "shard_20250 loaded\n",
      "shard_8701 loaded\n",
      "shard_39427 loaded\n",
      "shard_34507 loaded\n",
      "shard_32522 loaded\n",
      "shard_34605 loaded\n",
      "shard_29333 loaded\n",
      "shard_366 loaded\n",
      "shard_13724 loaded\n",
      "shard_20091 loaded\n",
      "shard_13481 loaded\n",
      "shard_8165 loaded\n",
      "shard_26638 loaded\n",
      "shard_22077 loaded\n",
      "shard_29328 loaded\n",
      "shard_2137 loaded\n",
      "shard_37214 loaded\n",
      "shard_8905 loaded\n",
      "shard_34031 loaded\n",
      "shard_8926 loaded\n",
      "shard_13108 loaded\n",
      "shard_3008 loaded\n",
      "shard_40131 loaded\n",
      "shard_38835 loaded\n",
      "shard_33504 loaded\n",
      "shard_5517 loaded\n",
      "shard_40626 loaded\n",
      "shard_19347 loaded\n",
      "shard_20776 loaded\n",
      "shard_46700 loaded\n",
      "shard_29414 loaded\n",
      "shard_9814 loaded\n",
      "shard_30431 loaded\n",
      "shard_44607 loaded\n",
      "shard_18447 loaded\n",
      "shard_2565 loaded\n",
      "shard_10243 loaded\n",
      "shard_43591 loaded\n",
      "shard_11656 loaded\n",
      "shard_29362 loaded\n",
      "shard_24167 loaded\n",
      "shard_30281 loaded\n",
      "shard_19264 loaded\n",
      "shard_43148 loaded\n",
      "shard_16559 loaded\n",
      "shard_20985 loaded\n",
      "shard_38935 loaded\n",
      "shard_10849 loaded\n",
      "shard_47439 loaded\n",
      "shard_36726 loaded\n",
      "shard_42687 loaded\n",
      "shard_2817 loaded\n",
      "shard_10741 loaded\n",
      "shard_14719 loaded\n",
      "shard_13345 loaded\n",
      "shard_17395 loaded\n",
      "shard_9033 loaded\n",
      "shard_46791 loaded\n",
      "shard_27546 loaded\n",
      "shard_22561 loaded\n",
      "shard_35697 loaded\n",
      "shard_32168 loaded\n",
      "shard_28263 loaded\n",
      "shard_21178 loaded\n",
      "shard_24452 loaded\n",
      "shard_41005 loaded\n",
      "shard_26310 loaded\n",
      "shard_4676 loaded\n",
      "shard_6955 loaded\n",
      "shard_2257 loaded\n",
      "shard_13213 loaded\n",
      "shard_47638 loaded\n",
      "shard_24235 loaded\n",
      "shard_7387 loaded\n",
      "shard_17308 loaded\n",
      "shard_9002 loaded\n",
      "shard_18611 loaded\n",
      "shard_49517 loaded\n",
      "shard_39088 loaded\n",
      "shard_30896 loaded\n",
      "shard_36019 loaded\n",
      "shard_23718 loaded\n",
      "shard_38515 loaded\n",
      "shard_2529 loaded\n",
      "shard_26211 loaded\n",
      "shard_46097 loaded\n",
      "shard_32353 loaded\n",
      "shard_49593 loaded\n",
      "shard_35253 loaded\n",
      "shard_44601 loaded\n",
      "shard_44970 loaded\n",
      "shard_31115 loaded\n",
      "shard_34236 loaded\n",
      "shard_37870 loaded\n",
      "shard_39685 loaded\n",
      "shard_21922 loaded\n",
      "shard_17439 loaded\n",
      "shard_30421 loaded\n",
      "shard_31259 loaded\n",
      "shard_15294 loaded\n",
      "shard_15436 loaded\n",
      "shard_19083 loaded\n",
      "shard_44047 loaded\n",
      "shard_15028 loaded\n",
      "shard_2487 loaded\n",
      "shard_19487 loaded\n",
      "shard_49743 loaded\n",
      "shard_26365 loaded\n",
      "shard_14797 loaded\n",
      "shard_38811 loaded\n",
      "shard_36273 loaded\n",
      "shard_29323 loaded\n",
      "shard_23006 loaded\n",
      "shard_1221 loaded\n",
      "shard_34250 loaded\n",
      "shard_938 loaded\n",
      "shard_28265 loaded\n",
      "shard_839 loaded\n",
      "shard_29944 loaded\n",
      "shard_13174 loaded\n",
      "shard_41300 loaded\n",
      "shard_15121 loaded\n",
      "shard_49033 loaded\n",
      "shard_22360 loaded\n",
      "shard_3547 loaded\n",
      "shard_29171 loaded\n",
      "shard_30139 loaded\n",
      "shard_1684 loaded\n",
      "shard_8313 loaded\n",
      "shard_36327 loaded\n",
      "shard_15585 loaded\n",
      "shard_21312 loaded\n",
      "shard_37375 loaded\n",
      "shard_44224 loaded\n",
      "shard_13255 loaded\n",
      "shard_21460 loaded\n",
      "shard_16688 loaded\n",
      "shard_42306 loaded\n",
      "shard_10863 loaded\n",
      "shard_5931 loaded\n",
      "shard_2269 loaded\n",
      "shard_23769 loaded\n",
      "shard_39452 loaded\n",
      "shard_20249 loaded\n",
      "shard_36971 loaded\n",
      "shard_48651 loaded\n",
      "shard_22710 loaded\n",
      "shard_15072 loaded\n",
      "shard_2852 loaded\n",
      "shard_42037 loaded\n",
      "shard_21748 loaded\n",
      "shard_29456 loaded\n",
      "shard_43727 loaded\n",
      "shard_48466 loaded\n",
      "shard_41807 loaded\n",
      "shard_33530 loaded\n",
      "shard_39451 loaded\n",
      "shard_11751 loaded\n",
      "shard_1629 loaded\n",
      "shard_20414 loaded\n",
      "shard_21858 loaded\n",
      "shard_29389 loaded\n",
      "shard_38222 loaded\n",
      "shard_29500 loaded\n",
      "shard_35969 loaded\n",
      "shard_39938 loaded\n",
      "shard_17486 loaded\n",
      "shard_4118 loaded\n",
      "shard_20237 loaded\n",
      "shard_44090 loaded\n",
      "shard_23612 loaded\n",
      "shard_21383 loaded\n",
      "shard_31304 loaded\n",
      "shard_10649 loaded\n",
      "shard_8896 loaded\n",
      "shard_44129 loaded\n",
      "shard_37143 loaded\n",
      "shard_14730 loaded\n",
      "shard_27759 loaded\n",
      "shard_27673 loaded\n",
      "shard_38208 loaded\n",
      "shard_11114 loaded\n",
      "shard_32726 loaded\n",
      "shard_49066 loaded\n",
      "shard_30611 loaded\n",
      "shard_4876 loaded\n",
      "shard_9801 loaded\n",
      "shard_35017 loaded\n",
      "shard_13743 loaded\n",
      "shard_35417 loaded\n",
      "shard_33876 loaded\n",
      "shard_18468 loaded\n",
      "shard_19086 loaded\n",
      "shard_38288 loaded\n",
      "shard_33082 loaded\n",
      "shard_15506 loaded\n",
      "shard_9676 loaded\n",
      "shard_5257 loaded\n",
      "shard_9012 loaded\n",
      "shard_16948 loaded\n",
      "shard_17293 loaded\n",
      "shard_31084 loaded\n",
      "shard_27024 loaded\n",
      "shard_48809 loaded\n",
      "shard_22938 loaded\n",
      "shard_22659 loaded\n",
      "shard_27682 loaded\n",
      "shard_12688 loaded\n",
      "shard_9318 loaded\n",
      "shard_24491 loaded\n",
      "shard_43903 loaded\n",
      "shard_13978 loaded\n",
      "shard_43948 loaded\n",
      "shard_41913 loaded\n",
      "shard_5856 loaded\n",
      "shard_39170 loaded\n",
      "shard_10138 loaded\n",
      "shard_34211 loaded\n",
      "shard_7049 loaded\n",
      "shard_44778 loaded\n",
      "shard_41977 loaded\n",
      "shard_44342 loaded\n",
      "shard_49132 loaded\n",
      "shard_26210 loaded\n",
      "shard_19442 loaded\n",
      "shard_38621 loaded\n",
      "shard_27080 loaded\n",
      "shard_8222 loaded\n",
      "shard_49797 loaded\n",
      "shard_27381 loaded\n",
      "shard_2871 loaded\n",
      "shard_16811 loaded\n",
      "shard_13123 loaded\n",
      "shard_27252 loaded\n",
      "shard_37283 loaded\n",
      "shard_20820 loaded\n",
      "shard_46902 loaded\n",
      "shard_47403 loaded\n",
      "shard_27916 loaded\n",
      "shard_20847 loaded\n",
      "shard_15901 loaded\n",
      "shard_38967 loaded\n",
      "shard_37634 loaded\n",
      "shard_15582 loaded\n",
      "shard_44859 loaded\n",
      "shard_27773 loaded\n",
      "shard_44480 loaded\n",
      "shard_41974 loaded\n",
      "shard_22515 loaded\n",
      "shard_27471 loaded\n",
      "shard_9989 loaded\n",
      "shard_2450 loaded\n",
      "shard_356 loaded\n",
      "shard_1131 loaded\n",
      "shard_47398 loaded\n",
      "shard_48347 loaded\n",
      "shard_47020 loaded\n",
      "shard_13849 loaded\n",
      "shard_2532 loaded\n",
      "shard_1646 loaded\n",
      "shard_44540 loaded\n",
      "shard_45209 loaded\n",
      "shard_46163 loaded\n",
      "shard_30687 loaded\n",
      "shard_11287 loaded\n",
      "shard_5566 loaded\n",
      "shard_1057 loaded\n",
      "shard_25730 loaded\n",
      "shard_11990 loaded\n",
      "shard_19211 loaded\n",
      "shard_16405 loaded\n",
      "shard_49858 loaded\n",
      "shard_19832 loaded\n",
      "shard_32782 loaded\n",
      "shard_2211 loaded\n",
      "shard_4622 loaded\n",
      "shard_10197 loaded\n",
      "shard_14645 loaded\n",
      "shard_30640 loaded\n",
      "shard_27022 loaded\n",
      "shard_47597 loaded\n",
      "shard_41529 loaded\n",
      "shard_5082 loaded\n",
      "shard_38428 loaded\n",
      "shard_1849 loaded\n",
      "shard_11385 loaded\n",
      "shard_23605 loaded\n",
      "shard_11318 loaded\n",
      "shard_26427 loaded\n",
      "shard_32114 loaded\n",
      "shard_4279 loaded\n",
      "shard_44136 loaded\n",
      "shard_14741 loaded\n",
      "shard_21511 loaded\n",
      "shard_1366 loaded\n",
      "shard_19145 loaded\n",
      "shard_15046 loaded\n",
      "shard_40230 loaded\n",
      "shard_30751 loaded\n",
      "shard_1600 loaded\n",
      "shard_43090 loaded\n",
      "shard_17457 loaded\n",
      "shard_13772 loaded\n",
      "shard_29932 loaded\n",
      "shard_12248 loaded\n",
      "shard_38498 loaded\n",
      "shard_36181 loaded\n",
      "shard_3019 loaded\n",
      "shard_33843 loaded\n",
      "shard_25229 loaded\n",
      "shard_23206 loaded\n",
      "shard_44344 loaded\n",
      "shard_32569 loaded\n",
      "shard_8826 loaded\n",
      "shard_972 loaded\n",
      "shard_7633 loaded\n",
      "shard_21887 loaded\n",
      "shard_48763 loaded\n",
      "shard_45135 loaded\n",
      "shard_29756 loaded\n",
      "shard_503 loaded\n",
      "shard_43300 loaded\n",
      "shard_29220 loaded\n",
      "shard_24552 loaded\n",
      "shard_14065 loaded\n",
      "shard_13515 loaded\n",
      "shard_21634 loaded\n",
      "shard_38075 loaded\n",
      "shard_47290 loaded\n",
      "shard_40140 loaded\n",
      "shard_40912 loaded\n",
      "shard_35387 loaded\n",
      "shard_2651 loaded\n",
      "shard_48361 loaded\n",
      "shard_30478 loaded\n",
      "shard_25657 loaded\n",
      "shard_36168 loaded\n",
      "shard_2395 loaded\n",
      "shard_12553 loaded\n",
      "shard_24592 loaded\n",
      "shard_49946 loaded\n",
      "shard_18738 loaded\n",
      "shard_37917 loaded\n",
      "shard_33834 loaded\n",
      "shard_35081 loaded\n",
      "shard_8218 loaded\n",
      "shard_38340 loaded\n",
      "shard_4235 loaded\n",
      "shard_10478 loaded\n",
      "shard_34544 loaded\n",
      "shard_49330 loaded\n",
      "shard_32231 loaded\n",
      "shard_11358 loaded\n",
      "shard_5148 loaded\n",
      "shard_17889 loaded\n",
      "shard_4336 loaded\n",
      "shard_28104 loaded\n",
      "shard_27808 loaded\n",
      "shard_43305 loaded\n",
      "shard_49034 loaded\n",
      "shard_24880 loaded\n",
      "shard_13189 loaded\n",
      "shard_6413 loaded\n",
      "shard_37863 loaded\n",
      "shard_7820 loaded\n",
      "shard_5710 loaded\n",
      "shard_9604 loaded\n",
      "shard_46304 loaded\n",
      "shard_38874 loaded\n",
      "shard_19419 loaded\n",
      "shard_5733 loaded\n",
      "shard_27537 loaded\n",
      "shard_18153 loaded\n",
      "shard_17343 loaded\n",
      "shard_8558 loaded\n",
      "shard_13302 loaded\n",
      "shard_11247 loaded\n",
      "shard_18610 loaded\n",
      "shard_15216 loaded\n",
      "shard_2567 loaded\n",
      "shard_32945 loaded\n",
      "shard_36817 loaded\n",
      "shard_45185 loaded\n",
      "shard_39494 loaded\n",
      "shard_44431 loaded\n",
      "shard_18088 loaded\n",
      "shard_35704 loaded\n",
      "shard_46763 loaded\n",
      "shard_47493 loaded\n",
      "shard_27410 loaded\n",
      "shard_26517 loaded\n",
      "shard_36816 loaded\n",
      "shard_18120 loaded\n",
      "shard_19929 loaded\n",
      "shard_43467 loaded\n",
      "shard_10866 loaded\n",
      "shard_15152 loaded\n",
      "shard_31385 loaded\n",
      "shard_15907 loaded\n",
      "shard_177 loaded\n",
      "shard_3384 loaded\n",
      "shard_30360 loaded\n",
      "shard_24337 loaded\n",
      "shard_39147 loaded\n",
      "shard_22215 loaded\n",
      "shard_24529 loaded\n",
      "shard_15647 loaded\n",
      "shard_15433 loaded\n",
      "shard_14314 loaded\n",
      "shard_24749 loaded\n",
      "shard_20901 loaded\n",
      "shard_48789 loaded\n",
      "shard_31438 loaded\n",
      "shard_45022 loaded\n",
      "shard_6556 loaded\n",
      "shard_13175 loaded\n",
      "shard_32374 loaded\n",
      "shard_11803 loaded\n",
      "shard_40700 loaded\n",
      "shard_24193 loaded\n",
      "shard_32723 loaded\n",
      "shard_49707 loaded\n",
      "shard_29049 loaded\n",
      "shard_11545 loaded\n",
      "shard_31280 loaded\n",
      "shard_38014 loaded\n",
      "shard_24751 loaded\n",
      "shard_29925 loaded\n",
      "shard_31389 loaded\n",
      "shard_33026 loaded\n",
      "shard_13931 loaded\n",
      "shard_17492 loaded\n",
      "shard_15186 loaded\n",
      "shard_40659 loaded\n",
      "shard_31891 loaded\n",
      "shard_4506 loaded\n",
      "shard_13920 loaded\n",
      "shard_24194 loaded\n",
      "shard_18625 loaded\n",
      "shard_39107 loaded\n",
      "shard_12847 loaded\n",
      "shard_11306 loaded\n",
      "shard_33456 loaded\n",
      "shard_35286 loaded\n",
      "shard_37171 loaded\n",
      "shard_21883 loaded\n",
      "shard_35990 loaded\n",
      "shard_2967 loaded\n",
      "shard_6197 loaded\n",
      "shard_534 loaded\n",
      "shard_21838 loaded\n",
      "shard_25109 loaded\n",
      "shard_1486 loaded\n",
      "shard_38886 loaded\n",
      "shard_10889 loaded\n",
      "shard_15388 loaded\n",
      "shard_40007 loaded\n",
      "shard_21535 loaded\n",
      "shard_38680 loaded\n",
      "shard_12067 loaded\n",
      "shard_43490 loaded\n",
      "shard_16933 loaded\n",
      "shard_45525 loaded\n",
      "shard_27727 loaded\n",
      "shard_26203 loaded\n",
      "shard_29863 loaded\n",
      "shard_15293 loaded\n",
      "shard_2076 loaded\n",
      "shard_45407 loaded\n",
      "shard_31996 loaded\n",
      "shard_47554 loaded\n",
      "shard_10012 loaded\n",
      "shard_43702 loaded\n",
      "shard_3112 loaded\n",
      "shard_4804 loaded\n",
      "shard_17140 loaded\n",
      "shard_3674 loaded\n",
      "shard_38168 loaded\n",
      "shard_43331 loaded\n",
      "shard_26936 loaded\n",
      "shard_10759 loaded\n",
      "shard_389 loaded\n",
      "shard_31556 loaded\n",
      "shard_43086 loaded\n",
      "shard_46518 loaded\n",
      "shard_41518 loaded\n",
      "shard_13318 loaded\n",
      "shard_29326 loaded\n",
      "shard_10872 loaded\n",
      "shard_43223 loaded\n",
      "shard_26860 loaded\n",
      "shard_45656 loaded\n",
      "shard_22212 loaded\n",
      "shard_9967 loaded\n",
      "shard_36662 loaded\n",
      "shard_43451 loaded\n",
      "shard_21326 loaded\n",
      "shard_41004 loaded\n",
      "shard_13694 loaded\n",
      "shard_26934 loaded\n",
      "shard_20941 loaded\n",
      "shard_39419 loaded\n",
      "shard_11509 loaded\n",
      "shard_1702 loaded\n",
      "shard_11633 loaded\n",
      "shard_37149 loaded\n",
      "shard_8616 loaded\n",
      "shard_32737 loaded\n",
      "shard_47356 loaded\n",
      "shard_31251 loaded\n",
      "shard_16644 loaded\n",
      "shard_20932 loaded\n",
      "shard_24105 loaded\n",
      "shard_43655 loaded\n",
      "shard_24954 loaded\n",
      "shard_24027 loaded\n",
      "shard_24644 loaded\n",
      "shard_46785 loaded\n",
      "shard_31854 loaded\n",
      "shard_31619 loaded\n",
      "shard_10289 loaded\n",
      "shard_49726 loaded\n",
      "shard_45840 loaded\n",
      "shard_4191 loaded\n",
      "shard_5061 loaded\n",
      "shard_19125 loaded\n",
      "shard_33715 loaded\n",
      "shard_29577 loaded\n",
      "shard_30747 loaded\n",
      "shard_48881 loaded\n",
      "shard_40426 loaded\n",
      "shard_14011 loaded\n",
      "shard_43916 loaded\n",
      "shard_37622 loaded\n",
      "shard_10810 loaded\n",
      "shard_42914 loaded\n",
      "shard_33695 loaded\n",
      "shard_34560 loaded\n",
      "shard_43996 loaded\n",
      "shard_29241 loaded\n",
      "shard_36207 loaded\n",
      "shard_2185 loaded\n",
      "shard_11957 loaded\n",
      "shard_22271 loaded\n",
      "shard_32013 loaded\n",
      "shard_24084 loaded\n",
      "shard_44050 loaded\n",
      "shard_40344 loaded\n",
      "shard_27551 loaded\n",
      "shard_28261 loaded\n",
      "shard_32019 loaded\n",
      "shard_159 loaded\n",
      "shard_4964 loaded\n",
      "shard_25381 loaded\n",
      "shard_30921 loaded\n",
      "shard_43592 loaded\n",
      "shard_45583 loaded\n",
      "shard_5951 loaded\n",
      "shard_15851 loaded\n",
      "shard_1647 loaded\n",
      "shard_35151 loaded\n",
      "shard_21341 loaded\n",
      "shard_4479 loaded\n",
      "shard_45816 loaded\n",
      "shard_2520 loaded\n",
      "shard_42835 loaded\n",
      "shard_29331 loaded\n",
      "shard_27620 loaded\n",
      "shard_28111 loaded\n",
      "shard_14834 loaded\n",
      "shard_33752 loaded\n",
      "shard_18878 loaded\n",
      "shard_44719 loaded\n",
      "shard_25428 loaded\n",
      "shard_47273 loaded\n",
      "shard_9311 loaded\n",
      "shard_10917 loaded\n",
      "shard_24421 loaded\n",
      "shard_11977 loaded\n",
      "shard_34468 loaded\n",
      "shard_20615 loaded\n",
      "shard_36152 loaded\n",
      "shard_1645 loaded\n",
      "shard_794 loaded\n",
      "shard_9398 loaded\n",
      "shard_32041 loaded\n",
      "shard_31952 loaded\n",
      "shard_8229 loaded\n",
      "shard_3370 loaded\n",
      "shard_9302 loaded\n",
      "shard_36363 loaded\n",
      "shard_2574 loaded\n",
      "shard_26266 loaded\n",
      "shard_36587 loaded\n",
      "shard_45879 loaded\n",
      "shard_9818 loaded\n",
      "shard_7190 loaded\n",
      "shard_45052 loaded\n",
      "shard_45908 loaded\n",
      "shard_3060 loaded\n",
      "shard_36410 loaded\n",
      "shard_6072 loaded\n",
      "shard_40369 loaded\n",
      "shard_49683 loaded\n",
      "shard_17595 loaded\n",
      "shard_19741 loaded\n",
      "shard_5446 loaded\n",
      "shard_10831 loaded\n",
      "shard_40856 loaded\n",
      "shard_59 loaded\n",
      "shard_6504 loaded\n",
      "shard_1234 loaded\n",
      "shard_25258 loaded\n",
      "shard_7261 loaded\n",
      "shard_3872 loaded\n",
      "shard_9797 loaded\n",
      "shard_39689 loaded\n",
      "shard_13122 loaded\n",
      "shard_30871 loaded\n",
      "shard_13774 loaded\n",
      "shard_39922 loaded\n",
      "shard_49016 loaded\n",
      "shard_36994 loaded\n",
      "shard_3546 loaded\n",
      "shard_9088 loaded\n",
      "shard_14395 loaded\n",
      "shard_26218 loaded\n",
      "shard_10293 loaded\n",
      "shard_7329 loaded\n",
      "shard_31012 loaded\n",
      "shard_34238 loaded\n",
      "shard_48372 loaded\n",
      "shard_3743 loaded\n",
      "shard_40585 loaded\n",
      "shard_35090 loaded\n",
      "shard_40058 loaded\n",
      "shard_42854 loaded\n",
      "shard_40125 loaded\n",
      "shard_43787 loaded\n",
      "shard_26035 loaded\n",
      "shard_31622 loaded\n",
      "shard_24152 loaded\n",
      "shard_14977 loaded\n",
      "shard_15150 loaded\n",
      "shard_6016 loaded\n",
      "shard_13083 loaded\n",
      "shard_9136 loaded\n",
      "shard_41817 loaded\n",
      "shard_21276 loaded\n",
      "shard_2502 loaded\n",
      "shard_3418 loaded\n",
      "shard_16518 loaded\n",
      "shard_21856 loaded\n",
      "shard_20125 loaded\n",
      "shard_28881 loaded\n",
      "shard_49335 loaded\n",
      "shard_42233 loaded\n",
      "shard_11978 loaded\n",
      "shard_43497 loaded\n",
      "shard_13452 loaded\n",
      "shard_2412 loaded\n",
      "shard_28959 loaded\n",
      "shard_617 loaded\n",
      "shard_10299 loaded\n",
      "shard_10560 loaded\n",
      "shard_47955 loaded\n",
      "shard_4672 loaded\n",
      "shard_14022 loaded\n",
      "shard_3777 loaded\n",
      "shard_3612 loaded\n",
      "shard_47999 loaded\n",
      "shard_16207 loaded\n",
      "shard_37407 loaded\n",
      "shard_25029 loaded\n",
      "shard_15709 loaded\n",
      "shard_37528 loaded\n",
      "shard_22877 loaded\n",
      "shard_10366 loaded\n",
      "shard_43892 loaded\n",
      "shard_31938 loaded\n",
      "shard_17233 loaded\n",
      "shard_25270 loaded\n",
      "shard_11706 loaded\n",
      "shard_2657 loaded\n",
      "shard_49767 loaded\n",
      "shard_9149 loaded\n",
      "shard_40383 loaded\n",
      "shard_23474 loaded\n",
      "shard_48252 loaded\n",
      "shard_45900 loaded\n",
      "shard_14006 loaded\n",
      "shard_7229 loaded\n",
      "shard_16892 loaded\n",
      "shard_42276 loaded\n",
      "shard_40156 loaded\n",
      "shard_10992 loaded\n",
      "shard_37529 loaded\n",
      "shard_4825 loaded\n",
      "shard_31176 loaded\n",
      "shard_23812 loaded\n",
      "shard_37871 loaded\n",
      "shard_14875 loaded\n",
      "shard_14240 loaded\n",
      "shard_45577 loaded\n",
      "shard_12226 loaded\n",
      "shard_5723 loaded\n",
      "shard_29134 loaded\n",
      "shard_33569 loaded\n",
      "shard_22890 loaded\n",
      "shard_31833 loaded\n",
      "shard_35266 loaded\n",
      "shard_2535 loaded\n",
      "shard_19312 loaded\n",
      "shard_2147 loaded\n",
      "shard_22964 loaded\n",
      "shard_35204 loaded\n",
      "shard_47550 loaded\n",
      "shard_46123 loaded\n",
      "shard_2787 loaded\n",
      "shard_39886 loaded\n",
      "shard_47436 loaded\n",
      "shard_14161 loaded\n",
      "shard_38048 loaded\n",
      "shard_47352 loaded\n",
      "shard_46764 loaded\n",
      "shard_34531 loaded\n",
      "shard_15752 loaded\n",
      "shard_14079 loaded\n",
      "shard_14982 loaded\n",
      "shard_32250 loaded\n",
      "shard_47896 loaded\n",
      "shard_17441 loaded\n",
      "shard_37584 loaded\n",
      "shard_22150 loaded\n",
      "shard_45933 loaded\n",
      "shard_31039 loaded\n",
      "shard_45929 loaded\n",
      "shard_20498 loaded\n",
      "shard_13762 loaded\n",
      "shard_47405 loaded\n",
      "shard_39192 loaded\n",
      "shard_48066 loaded\n",
      "shard_41632 loaded\n",
      "shard_33168 loaded\n",
      "shard_22528 loaded\n",
      "shard_36588 loaded\n",
      "shard_25338 loaded\n",
      "shard_42629 loaded\n",
      "shard_8037 loaded\n",
      "shard_19803 loaded\n",
      "shard_9025 loaded\n",
      "shard_7524 loaded\n",
      "shard_7644 loaded\n",
      "shard_37742 loaded\n",
      "shard_15742 loaded\n",
      "shard_11790 loaded\n",
      "shard_30117 loaded\n",
      "shard_22399 loaded\n",
      "shard_3768 loaded\n",
      "shard_113 loaded\n",
      "shard_25547 loaded\n",
      "shard_38142 loaded\n",
      "shard_13082 loaded\n",
      "shard_15370 loaded\n",
      "shard_8110 loaded\n",
      "shard_32655 loaded\n",
      "shard_23892 loaded\n",
      "shard_19220 loaded\n",
      "shard_16865 loaded\n",
      "shard_29438 loaded\n",
      "shard_48676 loaded\n",
      "shard_26094 loaded\n",
      "shard_9560 loaded\n",
      "shard_32425 loaded\n",
      "shard_32117 loaded\n",
      "shard_12743 loaded\n",
      "shard_20138 loaded\n",
      "shard_18262 loaded\n",
      "shard_25180 loaded\n",
      "shard_47715 loaded\n",
      "shard_3315 loaded\n",
      "shard_1635 loaded\n",
      "shard_37493 loaded\n",
      "shard_27633 loaded\n",
      "shard_6768 loaded\n",
      "shard_34773 loaded\n",
      "shard_33406 loaded\n",
      "shard_42535 loaded\n",
      "shard_3746 loaded\n",
      "shard_21572 loaded\n",
      "shard_20320 loaded\n",
      "shard_34956 loaded\n",
      "shard_34343 loaded\n",
      "shard_45161 loaded\n",
      "shard_41258 loaded\n",
      "shard_25208 loaded\n",
      "shard_37248 loaded\n",
      "shard_22117 loaded\n",
      "shard_26836 loaded\n",
      "shard_15979 loaded\n",
      "shard_46338 loaded\n",
      "shard_9678 loaded\n",
      "shard_24748 loaded\n",
      "shard_4389 loaded\n",
      "shard_31846 loaded\n",
      "shard_42183 loaded\n",
      "shard_42994 loaded\n",
      "shard_26002 loaded\n",
      "shard_7871 loaded\n",
      "shard_21046 loaded\n",
      "shard_9182 loaded\n",
      "shard_41628 loaded\n",
      "shard_5609 loaded\n",
      "shard_16211 loaded\n",
      "shard_32506 loaded\n",
      "shard_7439 loaded\n",
      "shard_36984 loaded\n",
      "shard_16956 loaded\n",
      "shard_2901 loaded\n",
      "shard_9336 loaded\n",
      "shard_22492 loaded\n",
      "shard_16886 loaded\n",
      "shard_47422 loaded\n",
      "shard_14562 loaded\n",
      "shard_31999 loaded\n",
      "shard_18578 loaded\n",
      "shard_38780 loaded\n",
      "shard_2804 loaded\n",
      "shard_28860 loaded\n",
      "shard_45401 loaded\n",
      "shard_35658 loaded\n",
      "shard_23778 loaded\n",
      "shard_30760 loaded\n",
      "shard_2125 loaded\n",
      "shard_48269 loaded\n",
      "shard_39071 loaded\n",
      "shard_16696 loaded\n",
      "shard_8116 loaded\n",
      "shard_23358 loaded\n",
      "shard_14839 loaded\n",
      "shard_10692 loaded\n",
      "shard_46289 loaded\n",
      "shard_6325 loaded\n",
      "shard_48692 loaded\n",
      "shard_1583 loaded\n",
      "shard_49047 loaded\n",
      "shard_33465 loaded\n",
      "shard_34187 loaded\n",
      "shard_18932 loaded\n",
      "shard_21145 loaded\n",
      "shard_27272 loaded\n",
      "shard_14648 loaded\n",
      "shard_39368 loaded\n",
      "shard_26683 loaded\n",
      "shard_37492 loaded\n",
      "shard_48312 loaded\n",
      "shard_48829 loaded\n",
      "shard_42079 loaded\n",
      "shard_8849 loaded\n",
      "shard_18095 loaded\n",
      "shard_15089 loaded\n",
      "shard_44325 loaded\n",
      "shard_2207 loaded\n",
      "shard_21004 loaded\n",
      "shard_31792 loaded\n",
      "shard_14673 loaded\n",
      "shard_28430 loaded\n",
      "shard_10690 loaded\n",
      "shard_38111 loaded\n",
      "shard_41498 loaded\n",
      "shard_40351 loaded\n",
      "shard_14490 loaded\n",
      "shard_14190 loaded\n",
      "shard_19520 loaded\n",
      "shard_38092 loaded\n",
      "shard_33950 loaded\n",
      "shard_23638 loaded\n",
      "shard_32331 loaded\n",
      "shard_40967 loaded\n",
      "shard_23109 loaded\n",
      "shard_32401 loaded\n",
      "shard_16928 loaded\n",
      "shard_46178 loaded\n",
      "shard_27846 loaded\n",
      "shard_28188 loaded\n",
      "shard_35655 loaded\n",
      "shard_39197 loaded\n",
      "shard_38373 loaded\n",
      "shard_38107 loaded\n",
      "shard_23348 loaded\n",
      "shard_30556 loaded\n",
      "shard_27103 loaded\n",
      "shard_46148 loaded\n",
      "shard_25935 loaded\n",
      "shard_21965 loaded\n",
      "shard_28355 loaded\n",
      "shard_43827 loaded\n",
      "shard_16687 loaded\n",
      "shard_34068 loaded\n",
      "shard_36597 loaded\n",
      "shard_35599 loaded\n",
      "shard_18110 loaded\n",
      "shard_38289 loaded\n",
      "shard_47781 loaded\n",
      "shard_33458 loaded\n",
      "shard_14450 loaded\n",
      "shard_34470 loaded\n",
      "shard_6371 loaded\n",
      "shard_45519 loaded\n",
      "shard_1452 loaded\n",
      "shard_35072 loaded\n",
      "shard_12886 loaded\n",
      "shard_16018 loaded\n",
      "shard_5042 loaded\n",
      "shard_7583 loaded\n",
      "shard_48387 loaded\n",
      "shard_15992 loaded\n",
      "shard_5497 loaded\n",
      "shard_18233 loaded\n",
      "shard_42391 loaded\n",
      "shard_44018 loaded\n",
      "shard_22267 loaded\n",
      "shard_15962 loaded\n",
      "shard_38519 loaded\n",
      "shard_15493 loaded\n",
      "shard_29372 loaded\n",
      "shard_43608 loaded\n",
      "shard_13582 loaded\n",
      "shard_37577 loaded\n",
      "shard_47576 loaded\n",
      "shard_48494 loaded\n",
      "shard_25475 loaded\n",
      "shard_11265 loaded\n",
      "shard_16738 loaded\n",
      "shard_45639 loaded\n",
      "shard_5105 loaded\n",
      "shard_42095 loaded\n",
      "shard_39240 loaded\n",
      "shard_21771 loaded\n",
      "shard_49927 loaded\n",
      "shard_43091 loaded\n",
      "shard_11772 loaded\n",
      "shard_16331 loaded\n",
      "shard_36933 loaded\n",
      "shard_43263 loaded\n",
      "shard_45685 loaded\n",
      "shard_43865 loaded\n",
      "shard_12236 loaded\n",
      "shard_49254 loaded\n",
      "shard_22204 loaded\n",
      "shard_42566 loaded\n",
      "shard_8998 loaded\n",
      "shard_738 loaded\n",
      "shard_38144 loaded\n",
      "shard_12474 loaded\n",
      "shard_20278 loaded\n",
      "shard_48291 loaded\n",
      "shard_12951 loaded\n",
      "shard_14117 loaded\n",
      "shard_40248 loaded\n",
      "shard_26970 loaded\n",
      "shard_35532 loaded\n",
      "shard_23817 loaded\n",
      "shard_10302 loaded\n",
      "shard_43486 loaded\n",
      "shard_27282 loaded\n",
      "shard_41942 loaded\n",
      "shard_22059 loaded\n",
      "shard_21664 loaded\n",
      "shard_18680 loaded\n",
      "shard_10937 loaded\n",
      "shard_12391 loaded\n",
      "shard_30957 loaded\n",
      "shard_2872 loaded\n",
      "shard_47775 loaded\n",
      "shard_26029 loaded\n",
      "shard_33770 loaded\n",
      "shard_41202 loaded\n",
      "shard_1939 loaded\n",
      "shard_25453 loaded\n",
      "shard_32063 loaded\n",
      "shard_34057 loaded\n",
      "shard_49911 loaded\n",
      "shard_4384 loaded\n",
      "shard_29373 loaded\n",
      "shard_27778 loaded\n",
      "shard_23880 loaded\n",
      "shard_40861 loaded\n",
      "shard_48455 loaded\n",
      "shard_18595 loaded\n",
      "shard_1004 loaded\n",
      "shard_45717 loaded\n",
      "shard_31221 loaded\n",
      "shard_27309 loaded\n",
      "shard_8985 loaded\n",
      "shard_29753 loaded\n",
      "shard_669 loaded\n",
      "shard_35172 loaded\n",
      "shard_36297 loaded\n",
      "shard_48820 loaded\n",
      "shard_4436 loaded\n",
      "shard_48898 loaded\n",
      "shard_9377 loaded\n",
      "shard_24982 loaded\n",
      "shard_23738 loaded\n",
      "shard_44355 loaded\n",
      "shard_33489 loaded\n",
      "shard_3190 loaded\n",
      "shard_34636 loaded\n",
      "shard_15258 loaded\n",
      "shard_48381 loaded\n",
      "shard_42260 loaded\n",
      "shard_39061 loaded\n",
      "shard_45309 loaded\n",
      "shard_33812 loaded\n",
      "shard_33998 loaded\n",
      "shard_18336 loaded\n",
      "shard_33835 loaded\n",
      "shard_37582 loaded\n",
      "shard_20624 loaded\n",
      "shard_16905 loaded\n",
      "shard_5286 loaded\n",
      "shard_41657 loaded\n",
      "shard_10422 loaded\n",
      "shard_37527 loaded\n",
      "shard_25101 loaded\n",
      "shard_17543 loaded\n",
      "shard_23478 loaded\n",
      "shard_38637 loaded\n",
      "shard_15747 loaded\n",
      "shard_29194 loaded\n",
      "shard_32211 loaded\n",
      "shard_20346 loaded\n",
      "shard_42123 loaded\n",
      "shard_14522 loaded\n",
      "shard_22462 loaded\n",
      "shard_3005 loaded\n",
      "shard_20790 loaded\n",
      "shard_10563 loaded\n",
      "shard_46389 loaded\n",
      "shard_36159 loaded\n",
      "shard_4650 loaded\n",
      "shard_15322 loaded\n",
      "shard_18070 loaded\n",
      "shard_13753 loaded\n",
      "shard_33091 loaded\n",
      "shard_32174 loaded\n",
      "shard_46051 loaded\n",
      "shard_49610 loaded\n",
      "shard_46029 loaded\n",
      "shard_21136 loaded\n",
      "shard_29520 loaded\n",
      "shard_15241 loaded\n",
      "shard_41419 loaded\n",
      "shard_32587 loaded\n",
      "shard_40745 loaded\n",
      "shard_45074 loaded\n",
      "shard_11198 loaded\n",
      "shard_40464 loaded\n",
      "shard_13023 loaded\n",
      "shard_20787 loaded\n",
      "shard_8967 loaded\n",
      "shard_39004 loaded\n",
      "shard_32997 loaded\n",
      "shard_26411 loaded\n",
      "shard_36739 loaded\n",
      "shard_39977 loaded\n",
      "shard_22617 loaded\n",
      "shard_25461 loaded\n",
      "shard_8907 loaded\n",
      "shard_18691 loaded\n",
      "shard_426 loaded\n",
      "shard_22690 loaded\n",
      "shard_2611 loaded\n",
      "shard_43643 loaded\n",
      "shard_4623 loaded\n",
      "shard_9151 loaded\n",
      "shard_10349 loaded\n",
      "shard_31437 loaded\n",
      "shard_39808 loaded\n",
      "shard_25802 loaded\n",
      "shard_10749 loaded\n",
      "shard_39489 loaded\n",
      "shard_49960 loaded\n",
      "shard_45093 loaded\n",
      "shard_31362 loaded\n",
      "shard_44522 loaded\n",
      "shard_26875 loaded\n",
      "shard_45169 loaded\n",
      "shard_40205 loaded\n",
      "shard_32207 loaded\n",
      "shard_33955 loaded\n",
      "shard_21257 loaded\n",
      "shard_41108 loaded\n",
      "shard_295 loaded\n",
      "shard_43088 loaded\n",
      "shard_42773 loaded\n",
      "shard_42903 loaded\n",
      "shard_15371 loaded\n",
      "shard_17164 loaded\n",
      "shard_25660 loaded\n",
      "shard_34095 loaded\n",
      "shard_9247 loaded\n",
      "shard_41069 loaded\n",
      "shard_1863 loaded\n",
      "shard_32566 loaded\n",
      "shard_3741 loaded\n",
      "shard_31890 loaded\n",
      "shard_29648 loaded\n",
      "shard_43118 loaded\n",
      "shard_31662 loaded\n",
      "shard_10510 loaded\n",
      "shard_6144 loaded\n",
      "shard_41757 loaded\n",
      "shard_2398 loaded\n",
      "shard_47299 loaded\n",
      "shard_26195 loaded\n",
      "shard_9573 loaded\n",
      "shard_17231 loaded\n",
      "shard_47104 loaded\n",
      "shard_21097 loaded\n",
      "shard_40498 loaded\n",
      "shard_30598 loaded\n",
      "shard_37096 loaded\n",
      "shard_17082 loaded\n",
      "shard_35649 loaded\n",
      "shard_12821 loaded\n",
      "shard_10483 loaded\n",
      "shard_46688 loaded\n",
      "shard_20742 loaded\n",
      "shard_4287 loaded\n",
      "shard_26668 loaded\n",
      "shard_32823 loaded\n",
      "shard_43622 loaded\n",
      "shard_6709 loaded\n",
      "shard_49530 loaded\n",
      "shard_33027 loaded\n",
      "shard_22316 loaded\n",
      "shard_28578 loaded\n",
      "shard_37347 loaded\n",
      "shard_24407 loaded\n",
      "shard_18331 loaded\n",
      "shard_40562 loaded\n",
      "shard_4264 loaded\n",
      "shard_39773 loaded\n",
      "shard_24521 loaded\n",
      "shard_8868 loaded\n",
      "shard_685 loaded\n",
      "shard_4087 loaded\n",
      "shard_26842 loaded\n",
      "shard_24598 loaded\n",
      "shard_21902 loaded\n",
      "shard_13246 loaded\n",
      "shard_49136 loaded\n",
      "shard_22446 loaded\n",
      "shard_49359 loaded\n",
      "shard_4768 loaded\n",
      "shard_17767 loaded\n",
      "shard_9525 loaded\n",
      "shard_18473 loaded\n",
      "shard_1903 loaded\n",
      "shard_9433 loaded\n",
      "shard_13597 loaded\n",
      "shard_25719 loaded\n",
      "shard_18266 loaded\n",
      "shard_23005 loaded\n",
      "shard_124 loaded\n",
      "shard_42003 loaded\n",
      "shard_37825 loaded\n",
      "shard_25064 loaded\n",
      "shard_46582 loaded\n",
      "shard_12799 loaded\n",
      "shard_20827 loaded\n",
      "shard_6834 loaded\n",
      "shard_16734 loaded\n",
      "shard_951 loaded\n",
      "shard_47569 loaded\n",
      "shard_49509 loaded\n",
      "shard_17670 loaded\n",
      "shard_44426 loaded\n",
      "shard_29104 loaded\n",
      "shard_1532 loaded\n",
      "shard_17176 loaded\n",
      "shard_34815 loaded\n",
      "shard_20997 loaded\n",
      "shard_38705 loaded\n",
      "shard_13983 loaded\n",
      "shard_5133 loaded\n",
      "shard_9719 loaded\n",
      "shard_9687 loaded\n",
      "shard_27578 loaded\n",
      "shard_22828 loaded\n",
      "shard_26160 loaded\n",
      "shard_17872 loaded\n",
      "shard_24735 loaded\n",
      "shard_47301 loaded\n",
      "shard_2382 loaded\n",
      "shard_33110 loaded\n",
      "shard_5175 loaded\n",
      "shard_32253 loaded\n",
      "shard_46938 loaded\n",
      "shard_20758 loaded\n",
      "shard_3277 loaded\n",
      "shard_13287 loaded\n",
      "shard_44013 loaded\n",
      "shard_43888 loaded\n",
      "shard_37544 loaded\n",
      "shard_9157 loaded\n",
      "shard_27731 loaded\n",
      "shard_6849 loaded\n",
      "shard_40317 loaded\n",
      "shard_12701 loaded\n",
      "shard_39818 loaded\n",
      "shard_23214 loaded\n",
      "shard_32589 loaded\n",
      "shard_30445 loaded\n",
      "shard_30079 loaded\n",
      "shard_45003 loaded\n",
      "shard_27767 loaded\n",
      "shard_46488 loaded\n",
      "shard_38337 loaded\n",
      "shard_27011 loaded\n",
      "shard_49686 loaded\n",
      "shard_16451 loaded\n",
      "shard_2845 loaded\n",
      "shard_25926 loaded\n",
      "shard_8491 loaded\n",
      "shard_6387 loaded\n",
      "shard_10887 loaded\n",
      "shard_45546 loaded\n",
      "shard_45199 loaded\n",
      "shard_30641 loaded\n",
      "shard_2431 loaded\n",
      "shard_2784 loaded\n",
      "shard_48177 loaded\n",
      "shard_7363 loaded\n",
      "shard_15063 loaded\n",
      "shard_44406 loaded\n",
      "shard_26981 loaded\n",
      "shard_994 loaded\n",
      "shard_142 loaded\n",
      "shard_6934 loaded\n",
      "shard_13157 loaded\n",
      "shard_38798 loaded\n",
      "shard_6202 loaded\n",
      "shard_24089 loaded\n",
      "shard_25140 loaded\n",
      "shard_3200 loaded\n",
      "shard_13999 loaded\n",
      "shard_1409 loaded\n",
      "shard_38224 loaded\n",
      "shard_39362 loaded\n",
      "shard_16714 loaded\n",
      "shard_40777 loaded\n",
      "shard_44097 loaded\n",
      "shard_10650 loaded\n",
      "shard_2458 loaded\n",
      "shard_44539 loaded\n",
      "shard_34230 loaded\n",
      "shard_2661 loaded\n",
      "shard_46099 loaded\n",
      "shard_46174 loaded\n",
      "shard_13869 loaded\n",
      "shard_2079 loaded\n",
      "shard_36458 loaded\n",
      "shard_37550 loaded\n",
      "shard_25661 loaded\n",
      "shard_22763 loaded\n",
      "shard_1033 loaded\n",
      "shard_48227 loaded\n",
      "shard_12932 loaded\n",
      "shard_19831 loaded\n",
      "shard_49154 loaded\n",
      "shard_335 loaded\n",
      "shard_3250 loaded\n",
      "shard_26172 loaded\n",
      "shard_40321 loaded\n",
      "shard_6516 loaded\n",
      "shard_23669 loaded\n",
      "shard_10981 loaded\n",
      "shard_10870 loaded\n",
      "shard_31271 loaded\n",
      "shard_14546 loaded\n",
      "shard_26264 loaded\n",
      "shard_12941 loaded\n",
      "shard_12034 loaded\n",
      "shard_38354 loaded\n",
      "shard_26426 loaded\n",
      "shard_33682 loaded\n",
      "shard_39941 loaded\n",
      "shard_14305 loaded\n",
      "shard_6411 loaded\n",
      "shard_28068 loaded\n",
      "shard_48230 loaded\n",
      "shard_2664 loaded\n",
      "shard_32307 loaded\n",
      "shard_25506 loaded\n",
      "shard_16487 loaded\n",
      "shard_40443 loaded\n",
      "shard_34332 loaded\n",
      "shard_40459 loaded\n",
      "shard_19171 loaded\n",
      "shard_16712 loaded\n",
      "shard_36838 loaded\n",
      "shard_22081 loaded\n",
      "shard_9531 loaded\n",
      "shard_3632 loaded\n",
      "shard_35689 loaded\n",
      "shard_35423 loaded\n",
      "shard_49333 loaded\n",
      "shard_5712 loaded\n",
      "shard_25853 loaded\n",
      "shard_30668 loaded\n",
      "shard_41855 loaded\n",
      "shard_4516 loaded\n",
      "shard_33595 loaded\n",
      "shard_49536 loaded\n",
      "shard_36079 loaded\n",
      "shard_45275 loaded\n",
      "shard_275 loaded\n",
      "shard_28581 loaded\n",
      "shard_38411 loaded\n",
      "shard_47365 loaded\n",
      "shard_43343 loaded\n",
      "shard_2894 loaded\n",
      "shard_22935 loaded\n",
      "shard_13538 loaded\n",
      "shard_28240 loaded\n",
      "shard_5093 loaded\n",
      "shard_39849 loaded\n",
      "shard_38598 loaded\n",
      "shard_28279 loaded\n",
      "shard_17564 loaded\n",
      "shard_44058 loaded\n",
      "shard_12557 loaded\n",
      "shard_25257 loaded\n",
      "shard_1924 loaded\n",
      "shard_33759 loaded\n",
      "shard_37211 loaded\n",
      "shard_40192 loaded\n",
      "shard_7485 loaded\n",
      "shard_19079 loaded\n",
      "shard_49856 loaded\n",
      "shard_31048 loaded\n",
      "shard_30654 loaded\n",
      "shard_15406 loaded\n",
      "shard_28378 loaded\n",
      "shard_45007 loaded\n",
      "shard_2642 loaded\n",
      "shard_4842 loaded\n",
      "shard_29018 loaded\n",
      "shard_33288 loaded\n",
      "shard_342 loaded\n",
      "shard_25934 loaded\n",
      "shard_4606 loaded\n",
      "shard_17397 loaded\n",
      "shard_5290 loaded\n",
      "shard_34901 loaded\n",
      "shard_14885 loaded\n",
      "shard_3439 loaded\n",
      "shard_30850 loaded\n",
      "shard_7900 loaded\n",
      "shard_3212 loaded\n",
      "shard_7829 loaded\n",
      "shard_41905 loaded\n",
      "shard_24385 loaded\n",
      "shard_14150 loaded\n",
      "shard_2346 loaded\n",
      "shard_11169 loaded\n",
      "shard_20883 loaded\n",
      "shard_35707 loaded\n",
      "shard_31160 loaded\n",
      "shard_38020 loaded\n",
      "shard_27090 loaded\n",
      "shard_33376 loaded\n",
      "shard_47332 loaded\n",
      "shard_47446 loaded\n",
      "shard_35898 loaded\n",
      "shard_42099 loaded\n",
      "shard_24861 loaded\n",
      "shard_46466 loaded\n",
      "shard_1362 loaded\n",
      "shard_41709 loaded\n",
      "shard_16244 loaded\n",
      "shard_37965 loaded\n",
      "shard_37820 loaded\n",
      "shard_20796 loaded\n",
      "shard_20326 loaded\n",
      "shard_16095 loaded\n",
      "shard_47778 loaded\n",
      "shard_38507 loaded\n",
      "shard_17429 loaded\n",
      "shard_41321 loaded\n",
      "shard_20332 loaded\n",
      "shard_5669 loaded\n",
      "shard_6306 loaded\n",
      "shard_2723 loaded\n",
      "shard_16185 loaded\n",
      "shard_16183 loaded\n",
      "shard_49121 loaded\n",
      "shard_6476 loaded\n",
      "shard_31153 loaded\n",
      "shard_17754 loaded\n",
      "shard_1813 loaded\n",
      "shard_33747 loaded\n",
      "shard_13595 loaded\n",
      "shard_23202 loaded\n",
      "shard_6490 loaded\n",
      "shard_16813 loaded\n",
      "shard_6437 loaded\n",
      "shard_21374 loaded\n",
      "shard_1110 loaded\n",
      "shard_10039 loaded\n",
      "shard_37704 loaded\n",
      "shard_18686 loaded\n",
      "shard_4299 loaded\n",
      "shard_43333 loaded\n",
      "shard_4120 loaded\n",
      "shard_13916 loaded\n",
      "shard_8016 loaded\n",
      "shard_16632 loaded\n",
      "shard_34 loaded\n",
      "shard_12153 loaded\n",
      "shard_41036 loaded\n",
      "shard_1998 loaded\n",
      "shard_45839 loaded\n",
      "shard_10400 loaded\n",
      "shard_49160 loaded\n",
      "shard_21781 loaded\n",
      "shard_40536 loaded\n",
      "shard_38665 loaded\n",
      "shard_27214 loaded\n",
      "shard_31546 loaded\n",
      "shard_37575 loaded\n",
      "shard_39314 loaded\n",
      "shard_1727 loaded\n",
      "shard_5425 loaded\n",
      "shard_1937 loaded\n",
      "shard_621 loaded\n",
      "shard_7285 loaded\n",
      "shard_32032 loaded\n",
      "shard_39661 loaded\n",
      "shard_3095 loaded\n",
      "shard_9934 loaded\n",
      "shard_27019 loaded\n",
      "shard_16125 loaded\n",
      "shard_17706 loaded\n",
      "shard_26414 loaded\n",
      "shard_6751 loaded\n",
      "shard_15153 loaded\n",
      "shard_21456 loaded\n",
      "shard_22847 loaded\n",
      "shard_22503 loaded\n",
      "shard_23816 loaded\n",
      "shard_12156 loaded\n",
      "shard_45414 loaded\n",
      "shard_26711 loaded\n",
      "shard_38016 loaded\n",
      "shard_49860 loaded\n",
      "shard_4498 loaded\n",
      "shard_36642 loaded\n",
      "shard_24294 loaded\n",
      "shard_20365 loaded\n",
      "shard_23774 loaded\n",
      "shard_27160 loaded\n",
      "shard_30499 loaded\n",
      "shard_2312 loaded\n",
      "shard_49274 loaded\n",
      "shard_19586 loaded\n",
      "shard_3296 loaded\n",
      "shard_29047 loaded\n",
      "shard_49261 loaded\n",
      "shard_45510 loaded\n",
      "shard_28992 loaded\n",
      "shard_21372 loaded\n",
      "shard_36338 loaded\n",
      "shard_48090 loaded\n",
      "shard_35701 loaded\n",
      "shard_44116 loaded\n",
      "shard_47061 loaded\n",
      "shard_11763 loaded\n",
      "shard_15189 loaded\n",
      "shard_10765 loaded\n",
      "shard_39324 loaded\n",
      "shard_18922 loaded\n",
      "shard_26200 loaded\n",
      "shard_46591 loaded\n",
      "shard_19898 loaded\n",
      "shard_20488 loaded\n",
      "shard_31954 loaded\n",
      "shard_45665 loaded\n",
      "shard_49173 loaded\n",
      "shard_4724 loaded\n",
      "shard_4707 loaded\n",
      "shard_46838 loaded\n",
      "shard_11845 loaded\n",
      "shard_22464 loaded\n",
      "shard_11877 loaded\n",
      "shard_18270 loaded\n",
      "shard_25300 loaded\n",
      "shard_43257 loaded\n",
      "shard_15004 loaded\n",
      "shard_28459 loaded\n",
      "shard_9248 loaded\n",
      "shard_9661 loaded\n",
      "shard_1507 loaded\n",
      "shard_43808 loaded\n",
      "shard_5369 loaded\n",
      "shard_14947 loaded\n",
      "shard_38377 loaded\n",
      "shard_26420 loaded\n",
      "shard_2434 loaded\n",
      "shard_37874 loaded\n",
      "shard_32404 loaded\n",
      "shard_47463 loaded\n",
      "shard_9558 loaded\n",
      "shard_41334 loaded\n",
      "shard_31484 loaded\n",
      "shard_11142 loaded\n",
      "shard_35269 loaded\n",
      "shard_19759 loaded\n",
      "shard_7052 loaded\n",
      "shard_25693 loaded\n",
      "shard_6136 loaded\n",
      "shard_29891 loaded\n",
      "shard_8633 loaded\n",
      "shard_33753 loaded\n",
      "shard_26050 loaded\n",
      "shard_4039 loaded\n",
      "shard_42868 loaded\n",
      "shard_5700 loaded\n",
      "shard_43984 loaded\n",
      "shard_498 loaded\n",
      "shard_30757 loaded\n",
      "shard_26530 loaded\n",
      "shard_4704 loaded\n",
      "shard_37144 loaded\n",
      "shard_49934 loaded\n",
      "shard_18512 loaded\n",
      "shard_30295 loaded\n",
      "shard_28388 loaded\n",
      "shard_33700 loaded\n",
      "shard_3189 loaded\n",
      "shard_20355 loaded\n",
      "shard_13405 loaded\n",
      "shard_10618 loaded\n",
      "shard_14002 loaded\n",
      "shard_49278 loaded\n",
      "shard_40506 loaded\n",
      "shard_23934 loaded\n",
      "shard_452 loaded\n",
      "shard_27003 loaded\n",
      "shard_18999 loaded\n",
      "shard_21202 loaded\n",
      "shard_29512 loaded\n",
      "shard_15084 loaded\n",
      "shard_38005 loaded\n",
      "shard_15985 loaded\n",
      "shard_22722 loaded\n",
      "shard_33845 loaded\n",
      "shard_44597 loaded\n",
      "shard_34842 loaded\n",
      "shard_1857 loaded\n",
      "shard_30862 loaded\n",
      "shard_527 loaded\n",
      "shard_3073 loaded\n",
      "shard_7492 loaded\n",
      "shard_49064 loaded\n",
      "shard_30165 loaded\n",
      "shard_6835 loaded\n",
      "shard_19472 loaded\n",
      "shard_43222 loaded\n",
      "shard_46850 loaded\n",
      "shard_27374 loaded\n",
      "shard_43600 loaded\n",
      "shard_46845 loaded\n",
      "shard_42474 loaded\n",
      "shard_38579 loaded\n",
      "shard_14179 loaded\n",
      "shard_18318 loaded\n",
      "shard_14140 loaded\n",
      "shard_1421 loaded\n",
      "shard_4512 loaded\n",
      "shard_32015 loaded\n",
      "shard_40306 loaded\n",
      "shard_46111 loaded\n",
      "shard_7890 loaded\n",
      "shard_14894 loaded\n",
      "shard_28875 loaded\n",
      "shard_49875 loaded\n",
      "shard_10603 loaded\n",
      "shard_34530 loaded\n",
      "shard_18648 loaded\n",
      "shard_6985 loaded\n",
      "shard_22825 loaded\n",
      "shard_8775 loaded\n",
      "shard_19681 loaded\n",
      "shard_40885 loaded\n",
      "shard_36322 loaded\n",
      "shard_35415 loaded\n",
      "shard_39996 loaded\n",
      "shard_16907 loaded\n",
      "shard_18605 loaded\n",
      "shard_34503 loaded\n",
      "shard_40620 loaded\n",
      "shard_5307 loaded\n",
      "shard_14774 loaded\n",
      "shard_3493 loaded\n",
      "shard_47926 loaded\n",
      "shard_29178 loaded\n",
      "shard_13586 loaded\n",
      "shard_46108 loaded\n",
      "shard_47369 loaded\n",
      "shard_39317 loaded\n",
      "shard_9986 loaded\n",
      "shard_37561 loaded\n",
      "shard_45289 loaded\n",
      "shard_42444 loaded\n",
      "shard_26863 loaded\n",
      "shard_9374 loaded\n",
      "shard_13864 loaded\n",
      "shard_43817 loaded\n",
      "shard_12479 loaded\n",
      "shard_44177 loaded\n",
      "shard_40934 loaded\n",
      "shard_34190 loaded\n",
      "shard_12477 loaded\n",
      "shard_18310 loaded\n",
      "shard_46205 loaded\n",
      "shard_19990 loaded\n",
      "shard_46648 loaded\n",
      "shard_4478 loaded\n",
      "shard_9312 loaded\n",
      "shard_46921 loaded\n",
      "shard_29639 loaded\n",
      "shard_37852 loaded\n",
      "shard_23130 loaded\n",
      "shard_25748 loaded\n",
      "shard_13775 loaded\n",
      "shard_36496 loaded\n",
      "shard_2564 loaded\n",
      "shard_10219 loaded\n",
      "shard_35571 loaded\n",
      "shard_21550 loaded\n",
      "shard_16353 loaded\n",
      "shard_16604 loaded\n",
      "shard_24605 loaded\n",
      "shard_22108 loaded\n",
      "shard_20888 loaded\n",
      "shard_38141 loaded\n",
      "shard_840 loaded\n",
      "shard_983 loaded\n",
      "shard_3883 loaded\n",
      "shard_42595 loaded\n",
      "shard_5412 loaded\n",
      "shard_42442 loaded\n",
      "shard_14691 loaded\n",
      "shard_32641 loaded\n",
      "shard_42621 loaded\n",
      "shard_30327 loaded\n",
      "shard_18830 loaded\n",
      "shard_20128 loaded\n",
      "shard_21280 loaded\n",
      "shard_29428 loaded\n",
      "shard_3194 loaded\n",
      "shard_1491 loaded\n",
      "shard_39841 loaded\n",
      "shard_35493 loaded\n",
      "shard_4972 loaded\n",
      "shard_20173 loaded\n",
      "shard_11626 loaded\n",
      "shard_1189 loaded\n",
      "shard_33668 loaded\n",
      "shard_5219 loaded\n",
      "shard_26194 loaded\n",
      "shard_33049 loaded\n",
      "shard_44352 loaded\n",
      "shard_10988 loaded\n",
      "shard_25533 loaded\n",
      "shard_37093 loaded\n",
      "shard_5964 loaded\n",
      "shard_19933 loaded\n",
      "shard_37394 loaded\n",
      "shard_1746 loaded\n",
      "shard_48622 loaded\n",
      "shard_2560 loaded\n",
      "shard_3673 loaded\n",
      "shard_26536 loaded\n",
      "shard_6480 loaded\n",
      "shard_2979 loaded\n",
      "shard_48491 loaded\n",
      "shard_9605 loaded\n",
      "shard_39436 loaded\n",
      "shard_8860 loaded\n",
      "shard_5760 loaded\n",
      "shard_33599 loaded\n",
      "shard_19859 loaded\n",
      "shard_18893 loaded\n",
      "shard_23487 loaded\n",
      "shard_39386 loaded\n",
      "shard_43156 loaded\n",
      "shard_30462 loaded\n",
      "shard_39064 loaded\n",
      "shard_7966 loaded\n",
      "shard_9079 loaded\n",
      "shard_23186 loaded\n",
      "shard_6852 loaded\n",
      "shard_10151 loaded\n",
      "shard_20812 loaded\n",
      "shard_48832 loaded\n",
      "shard_30500 loaded\n",
      "shard_10857 loaded\n",
      "shard_40572 loaded\n",
      "shard_47666 loaded\n",
      "shard_45048 loaded\n",
      "shard_44120 loaded\n",
      "shard_6638 loaded\n",
      "shard_21628 loaded\n",
      "shard_47331 loaded\n",
      "shard_45335 loaded\n",
      "shard_23212 loaded\n",
      "shard_18445 loaded\n",
      "shard_22884 loaded\n",
      "shard_37034 loaded\n",
      "shard_3848 loaded\n",
      "shard_14372 loaded\n",
      "shard_22563 loaded\n",
      "shard_6868 loaded\n",
      "shard_4401 loaded\n",
      "shard_13815 loaded\n",
      "shard_6921 loaded\n",
      "shard_49983 loaded\n",
      "shard_26399 loaded\n",
      "shard_7030 loaded\n",
      "shard_35208 loaded\n",
      "shard_8311 loaded\n",
      "shard_30690 loaded\n",
      "shard_921 loaded\n",
      "shard_15445 loaded\n",
      "shard_15052 loaded\n",
      "shard_23602 loaded\n",
      "shard_17937 loaded\n",
      "shard_7503 loaded\n",
      "shard_43432 loaded\n",
      "shard_12247 loaded\n",
      "shard_20072 loaded\n",
      "shard_10356 loaded\n",
      "shard_26526 loaded\n",
      "shard_47324 loaded\n",
      "shard_4102 loaded\n",
      "shard_32205 loaded\n",
      "shard_36332 loaded\n",
      "shard_901 loaded\n",
      "shard_33927 loaded\n",
      "shard_28656 loaded\n",
      "shard_28833 loaded\n",
      "shard_33476 loaded\n",
      "shard_18189 loaded\n",
      "shard_18443 loaded\n",
      "shard_11012 loaded\n",
      "shard_38550 loaded\n",
      "shard_12262 loaded\n",
      "shard_30504 loaded\n",
      "shard_740 loaded\n",
      "shard_21212 loaded\n",
      "shard_37626 loaded\n",
      "shard_24436 loaded\n",
      "shard_14789 loaded\n",
      "shard_28432 loaded\n",
      "shard_30550 loaded\n",
      "shard_38604 loaded\n",
      "shard_27669 loaded\n",
      "shard_36169 loaded\n",
      "shard_22905 loaded\n",
      "shard_39574 loaded\n",
      "shard_9670 loaded\n",
      "shard_12943 loaded\n",
      "shard_4106 loaded\n",
      "shard_48205 loaded\n",
      "shard_27204 loaded\n",
      "shard_28301 loaded\n",
      "shard_26369 loaded\n",
      "shard_27686 loaded\n",
      "shard_44845 loaded\n",
      "shard_49234 loaded\n",
      "shard_4167 loaded\n",
      "shard_19203 loaded\n",
      "shard_49698 loaded\n",
      "shard_7478 loaded\n",
      "shard_23519 loaded\n",
      "shard_30567 loaded\n",
      "shard_39433 loaded\n",
      "shard_1485 loaded\n",
      "shard_47244 loaded\n",
      "shard_33758 loaded\n",
      "shard_33281 loaded\n",
      "shard_30128 loaded\n",
      "shard_25532 loaded\n",
      "shard_44276 loaded\n",
      "shard_28237 loaded\n",
      "shard_1740 loaded\n",
      "shard_950 loaded\n",
      "shard_11852 loaded\n",
      "shard_28133 loaded\n",
      "shard_29107 loaded\n",
      "shard_26849 loaded\n",
      "shard_1946 loaded\n",
      "shard_31454 loaded\n",
      "shard_41473 loaded\n",
      "shard_26765 loaded\n",
      "shard_2168 loaded\n",
      "shard_34712 loaded\n",
      "shard_3676 loaded\n",
      "shard_1509 loaded\n",
      "shard_46793 loaded\n",
      "shard_43492 loaded\n",
      "shard_45802 loaded\n",
      "shard_37752 loaded\n",
      "shard_23713 loaded\n",
      "shard_4410 loaded\n",
      "shard_35040 loaded\n",
      "shard_27962 loaded\n",
      "shard_21701 loaded\n",
      "shard_19588 loaded\n",
      "shard_8929 loaded\n",
      "shard_26388 loaded\n",
      "shard_35702 loaded\n",
      "shard_14492 loaded\n",
      "shard_40833 loaded\n",
      "shard_20960 loaded\n",
      "shard_20552 loaded\n",
      "shard_9507 loaded\n",
      "shard_46223 loaded\n",
      "shard_31946 loaded\n",
      "shard_19284 loaded\n",
      "shard_27124 loaded\n",
      "shard_16599 loaded\n",
      "shard_43623 loaded\n",
      "shard_23652 loaded\n",
      "shard_39459 loaded\n",
      "shard_26093 loaded\n",
      "shard_44265 loaded\n",
      "shard_41714 loaded\n",
      "shard_35039 loaded\n",
      "shard_35278 loaded\n",
      "shard_14307 loaded\n",
      "shard_23128 loaded\n",
      "shard_7936 loaded\n",
      "shard_3695 loaded\n",
      "shard_37897 loaded\n",
      "shard_24741 loaded\n",
      "shard_43019 loaded\n",
      "shard_6456 loaded\n",
      "shard_27772 loaded\n",
      "shard_33995 loaded\n",
      "shard_20497 loaded\n",
      "shard_21288 loaded\n",
      "shard_44266 loaded\n",
      "shard_21618 loaded\n",
      "shard_38264 loaded\n",
      "shard_20362 loaded\n",
      "shard_36162 loaded\n",
      "shard_6329 loaded\n",
      "shard_2982 loaded\n",
      "shard_9534 loaded\n",
      "shard_18850 loaded\n",
      "shard_5744 loaded\n",
      "shard_41312 loaded\n",
      "shard_3022 loaded\n",
      "shard_48202 loaded\n",
      "shard_43825 loaded\n",
      "shard_20563 loaded\n",
      "shard_32992 loaded\n",
      "shard_42262 loaded\n",
      "shard_22716 loaded\n",
      "shard_30712 loaded\n",
      "shard_11743 loaded\n",
      "shard_40943 loaded\n",
      "shard_44786 loaded\n",
      "shard_18703 loaded\n",
      "shard_22016 loaded\n",
      "shard_43276 loaded\n",
      "shard_39903 loaded\n",
      "shard_370 loaded\n",
      "shard_7366 loaded\n",
      "shard_8351 loaded\n",
      "shard_10008 loaded\n",
      "shard_25410 loaded\n",
      "shard_36306 loaded\n",
      "shard_23980 loaded\n",
      "shard_9055 loaded\n",
      "shard_31689 loaded\n",
      "shard_46942 loaded\n",
      "shard_48142 loaded\n",
      "shard_21774 loaded\n",
      "shard_39073 loaded\n",
      "shard_23721 loaded\n",
      "shard_45784 loaded\n",
      "shard_18353 loaded\n",
      "shard_3181 loaded\n",
      "shard_15067 loaded\n",
      "shard_26672 loaded\n",
      "shard_43549 loaded\n",
      "shard_45513 loaded\n",
      "shard_22822 loaded\n",
      "shard_22213 loaded\n",
      "shard_32418 loaded\n",
      "shard_4107 loaded\n",
      "shard_47699 loaded\n",
      "shard_44040 loaded\n",
      "shard_36772 loaded\n",
      "shard_30163 loaded\n",
      "shard_43595 loaded\n",
      "shard_45215 loaded\n",
      "shard_37160 loaded\n",
      "shard_21130 loaded\n",
      "shard_16859 loaded\n",
      "shard_19012 loaded\n",
      "shard_32125 loaded\n",
      "shard_9430 loaded\n",
      "shard_29530 loaded\n",
      "shard_27870 loaded\n",
      "shard_22724 loaded\n",
      "shard_14532 loaded\n",
      "shard_22301 loaded\n",
      "shard_21337 loaded\n",
      "shard_26738 loaded\n",
      "shard_47823 loaded\n",
      "shard_39033 loaded\n",
      "shard_109 loaded\n",
      "shard_45377 loaded\n",
      "shard_12851 loaded\n",
      "shard_34496 loaded\n",
      "shard_38399 loaded\n",
      "shard_25577 loaded\n",
      "shard_12835 loaded\n",
      "shard_23220 loaded\n",
      "shard_24634 loaded\n",
      "shard_25183 loaded\n",
      "shard_41418 loaded\n",
      "shard_40512 loaded\n",
      "shard_33354 loaded\n",
      "shard_16768 loaded\n",
      "shard_16351 loaded\n",
      "shard_30027 loaded\n",
      "shard_11483 loaded\n",
      "shard_11784 loaded\n",
      "shard_28470 loaded\n",
      "shard_29834 loaded\n",
      "shard_34298 loaded\n",
      "shard_45306 loaded\n",
      "shard_44665 loaded\n",
      "shard_17104 loaded\n",
      "shard_16650 loaded\n",
      "shard_28108 loaded\n",
      "shard_22909 loaded\n",
      "shard_12288 loaded\n",
      "shard_38323 loaded\n",
      "shard_20797 loaded\n",
      "shard_135 loaded\n",
      "shard_30358 loaded\n",
      "shard_4752 loaded\n",
      "shard_40229 loaded\n",
      "shard_9099 loaded\n",
      "shard_9778 loaded\n",
      "shard_20946 loaded\n",
      "shard_14422 loaded\n",
      "shard_45542 loaded\n",
      "shard_25231 loaded\n",
      "shard_40360 loaded\n",
      "shard_47018 loaded\n",
      "shard_29978 loaded\n",
      "shard_27793 loaded\n",
      "shard_48941 loaded\n",
      "shard_22003 loaded\n",
      "shard_40449 loaded\n",
      "shard_20062 loaded\n",
      "shard_38870 loaded\n",
      "shard_21361 loaded\n",
      "shard_20286 loaded\n",
      "shard_10766 loaded\n",
      "shard_897 loaded\n",
      "shard_33292 loaded\n",
      "shard_11126 loaded\n",
      "shard_3622 loaded\n",
      "shard_41160 loaded\n",
      "shard_38080 loaded\n",
      "shard_12484 loaded\n",
      "shard_5015 loaded\n",
      "shard_20826 loaded\n",
      "shard_46067 loaded\n",
      "shard_957 loaded\n",
      "shard_24692 loaded\n",
      "shard_5320 loaded\n",
      "shard_10750 loaded\n",
      "shard_5220 loaded\n",
      "shard_5925 loaded\n",
      "shard_30457 loaded\n",
      "shard_28729 loaded\n",
      "shard_37717 loaded\n",
      "shard_47019 loaded\n",
      "shard_4034 loaded\n",
      "shard_43248 loaded\n",
      "shard_32832 loaded\n",
      "shard_48330 loaded\n",
      "shard_31409 loaded\n",
      "shard_44280 loaded\n",
      "shard_38538 loaded\n",
      "shard_815 loaded\n",
      "shard_38892 loaded\n",
      "shard_21844 loaded\n",
      "shard_5121 loaded\n",
      "shard_38263 loaded\n",
      "shard_11898 loaded\n",
      "shard_410 loaded\n",
      "shard_48129 loaded\n",
      "shard_29144 loaded\n",
      "shard_4482 loaded\n",
      "shard_3344 loaded\n",
      "shard_46135 loaded\n",
      "shard_18535 loaded\n",
      "shard_20479 loaded\n",
      "shard_24583 loaded\n",
      "shard_20891 loaded\n",
      "shard_43535 loaded\n",
      "shard_21845 loaded\n",
      "shard_36605 loaded\n",
      "shard_14531 loaded\n",
      "shard_27197 loaded\n",
      "shard_2966 loaded\n",
      "shard_45644 loaded\n",
      "shard_15523 loaded\n",
      "shard_48833 loaded\n",
      "shard_26585 loaded\n",
      "shard_5396 loaded\n",
      "shard_2292 loaded\n",
      "shard_24418 loaded\n",
      "shard_44125 loaded\n",
      "shard_44418 loaded\n",
      "shard_43080 loaded\n",
      "shard_36941 loaded\n",
      "shard_820 loaded\n",
      "shard_20511 loaded\n",
      "shard_27864 loaded\n",
      "shard_47749 loaded\n",
      "shard_38108 loaded\n",
      "shard_48592 loaded\n",
      "shard_10691 loaded\n",
      "shard_34737 loaded\n",
      "shard_47010 loaded\n",
      "shard_48758 loaded\n",
      "shard_32179 loaded\n",
      "shard_42937 loaded\n",
      "shard_30795 loaded\n",
      "shard_18723 loaded\n",
      "shard_40780 loaded\n",
      "shard_25437 loaded\n",
      "shard_48961 loaded\n",
      "shard_44144 loaded\n",
      "shard_21358 loaded\n",
      "shard_38045 loaded\n",
      "shard_21214 loaded\n",
      "shard_25454 loaded\n",
      "shard_28390 loaded\n",
      "shard_16267 loaded\n",
      "shard_23861 loaded\n",
      "shard_15787 loaded\n",
      "shard_23929 loaded\n",
      "shard_23510 loaded\n",
      "shard_44261 loaded\n",
      "shard_9343 loaded\n",
      "shard_33555 loaded\n",
      "shard_12405 loaded\n",
      "shard_6546 loaded\n",
      "shard_11811 loaded\n",
      "shard_15833 loaded\n",
      "shard_5010 loaded\n",
      "shard_49044 loaded\n",
      "shard_26442 loaded\n",
      "shard_9520 loaded\n",
      "shard_17100 loaded\n",
      "shard_38592 loaded\n",
      "shard_13954 loaded\n",
      "shard_22588 loaded\n",
      "shard_29876 loaded\n",
      "shard_38590 loaded\n",
      "shard_24586 loaded\n",
      "shard_26047 loaded\n",
      "shard_8200 loaded\n",
      "shard_17623 loaded\n",
      "shard_37804 loaded\n",
      "shard_12148 loaded\n",
      "shard_29783 loaded\n",
      "shard_23150 loaded\n",
      "shard_1149 loaded\n",
      "shard_46159 loaded\n",
      "shard_21647 loaded\n",
      "shard_4096 loaded\n",
      "shard_25380 loaded\n",
      "shard_31205 loaded\n",
      "shard_16040 loaded\n",
      "shard_45792 loaded\n",
      "shard_29942 loaded\n",
      "shard_17789 loaded\n",
      "shard_5030 loaded\n",
      "shard_25591 loaded\n",
      "shard_31713 loaded\n",
      "shard_3671 loaded\n",
      "shard_24256 loaded\n",
      "shard_26436 loaded\n",
      "shard_24920 loaded\n",
      "shard_15744 loaded\n",
      "shard_12745 loaded\n",
      "shard_48181 loaded\n",
      "shard_8796 loaded\n",
      "shard_11221 loaded\n",
      "shard_28785 loaded\n",
      "shard_44549 loaded\n",
      "shard_19001 loaded\n",
      "shard_6025 loaded\n",
      "shard_6858 loaded\n",
      "shard_16410 loaded\n",
      "shard_637 loaded\n",
      "shard_5277 loaded\n",
      "shard_20218 loaded\n",
      "shard_18731 loaded\n",
      "shard_42546 loaded\n",
      "shard_14474 loaded\n",
      "shard_45572 loaded\n",
      "shard_20302 loaded\n",
      "shard_5771 loaded\n",
      "shard_47582 loaded\n",
      "shard_34231 loaded\n",
      "shard_34844 loaded\n",
      "shard_5821 loaded\n",
      "shard_11330 loaded\n",
      "shard_24980 loaded\n",
      "shard_32055 loaded\n",
      "shard_30816 loaded\n",
      "shard_35594 loaded\n",
      "shard_43363 loaded\n",
      "shard_21763 loaded\n",
      "shard_5738 loaded\n",
      "shard_37881 loaded\n",
      "shard_19216 loaded\n",
      "shard_18505 loaded\n",
      "shard_43021 loaded\n",
      "shard_40176 loaded\n",
      "shard_21672 loaded\n",
      "shard_26642 loaded\n",
      "shard_36517 loaded\n",
      "shard_7682 loaded\n",
      "shard_14061 loaded\n",
      "shard_7333 loaded\n",
      "shard_18987 loaded\n",
      "shard_43558 loaded\n",
      "shard_26856 loaded\n",
      "shard_27836 loaded\n",
      "shard_46073 loaded\n",
      "shard_48939 loaded\n",
      "shard_38070 loaded\n",
      "shard_2897 loaded\n",
      "shard_7833 loaded\n",
      "shard_40531 loaded\n",
      "shard_29570 loaded\n",
      "shard_40100 loaded\n",
      "shard_35548 loaded\n",
      "shard_28268 loaded\n",
      "shard_1523 loaded\n",
      "shard_31584 loaded\n",
      "shard_7311 loaded\n",
      "shard_35451 loaded\n",
      "shard_28582 loaded\n",
      "shard_14102 loaded\n",
      "shard_5248 loaded\n",
      "shard_44064 loaded\n",
      "shard_18518 loaded\n",
      "shard_39669 loaded\n",
      "shard_43606 loaded\n",
      "shard_46474 loaded\n",
      "shard_19834 loaded\n",
      "shard_30255 loaded\n",
      "shard_41073 loaded\n",
      "shard_20746 loaded\n",
      "shard_28882 loaded\n",
      "shard_33389 loaded\n",
      "shard_33533 loaded\n",
      "shard_11518 loaded\n",
      "shard_39774 loaded\n",
      "shard_28698 loaded\n",
      "shard_1754 loaded\n",
      "shard_11056 loaded\n",
      "shard_20660 loaded\n",
      "shard_39076 loaded\n",
      "shard_31461 loaded\n",
      "shard_27353 loaded\n",
      "shard_22572 loaded\n",
      "shard_26507 loaded\n",
      "shard_13002 loaded\n",
      "shard_15078 loaded\n",
      "shard_4681 loaded\n",
      "shard_1779 loaded\n",
      "shard_21379 loaded\n",
      "shard_3234 loaded\n",
      "shard_20663 loaded\n",
      "shard_14458 loaded\n",
      "shard_39125 loaded\n",
      "shard_7865 loaded\n",
      "shard_31799 loaded\n",
      "shard_17154 loaded\n",
      "shard_32634 loaded\n",
      "shard_16429 loaded\n",
      "shard_30031 loaded\n",
      "shard_836 loaded\n",
      "shard_23710 loaded\n",
      "shard_35583 loaded\n",
      "shard_26955 loaded\n",
      "shard_21646 loaded\n",
      "shard_12724 loaded\n",
      "shard_20315 loaded\n",
      "shard_36686 loaded\n",
      "shard_19271 loaded\n",
      "shard_37783 loaded\n",
      "shard_29934 loaded\n",
      "shard_27235 loaded\n",
      "shard_18950 loaded\n",
      "shard_21574 loaded\n",
      "shard_12194 loaded\n",
      "shard_5698 loaded\n",
      "shard_4812 loaded\n",
      "shard_30326 loaded\n",
      "shard_6047 loaded\n",
      "shard_31570 loaded\n",
      "shard_26716 loaded\n",
      "shard_28331 loaded\n",
      "shard_7561 loaded\n",
      "shard_27879 loaded\n",
      "shard_34553 loaded\n",
      "shard_1738 loaded\n",
      "shard_7947 loaded\n",
      "shard_15482 loaded\n",
      "shard_46251 loaded\n",
      "shard_7991 loaded\n",
      "shard_11962 loaded\n",
      "shard_15308 loaded\n",
      "shard_35756 loaded\n",
      "shard_3965 loaded\n",
      "shard_12108 loaded\n",
      "shard_16501 loaded\n",
      "shard_44441 loaded\n",
      "shard_45834 loaded\n",
      "shard_960 loaded\n",
      "shard_11181 loaded\n",
      "shard_24967 loaded\n",
      "shard_38402 loaded\n",
      "shard_31805 loaded\n",
      "shard_47464 loaded\n",
      "shard_2836 loaded\n",
      "shard_29447 loaded\n",
      "shard_12649 loaded\n",
      "shard_46475 loaded\n",
      "shard_10022 loaded\n",
      "shard_44173 loaded\n",
      "shard_33179 loaded\n",
      "shard_395 loaded\n",
      "shard_28515 loaded\n",
      "shard_49363 loaded\n",
      "shard_45895 loaded\n",
      "shard_16123 loaded\n",
      "shard_37028 loaded\n",
      "shard_38180 loaded\n",
      "shard_1986 loaded\n",
      "shard_42238 loaded\n",
      "shard_10444 loaded\n",
      "shard_29547 loaded\n",
      "shard_38151 loaded\n",
      "shard_49727 loaded\n",
      "shard_4659 loaded\n",
      "shard_32151 loaded\n",
      "shard_23361 loaded\n",
      "shard_47942 loaded\n",
      "shard_43823 loaded\n",
      "shard_40089 loaded\n",
      "shard_11997 loaded\n",
      "shard_27002 loaded\n",
      "shard_28799 loaded\n",
      "shard_11017 loaded\n",
      "shard_48716 loaded\n",
      "shard_44134 loaded\n",
      "shard_11678 loaded\n",
      "shard_22930 loaded\n",
      "shard_36626 loaded\n",
      "shard_30897 loaded\n",
      "shard_38040 loaded\n",
      "shard_34573 loaded\n",
      "shard_3770 loaded\n",
      "shard_25275 loaded\n",
      "shard_12351 loaded\n",
      "shard_18904 loaded\n",
      "shard_3868 loaded\n",
      "shard_29254 loaded\n",
      "shard_19394 loaded\n",
      "shard_29128 loaded\n",
      "shard_38717 loaded\n",
      "shard_41787 loaded\n",
      "shard_47938 loaded\n",
      "shard_42140 loaded\n",
      "shard_27604 loaded\n",
      "shard_15919 loaded\n",
      "shard_38838 loaded\n",
      "shard_49977 loaded\n",
      "shard_7867 loaded\n",
      "shard_44730 loaded\n",
      "shard_21102 loaded\n",
      "shard_46452 loaded\n",
      "shard_21419 loaded\n",
      "shard_13413 loaded\n",
      "shard_4075 loaded\n",
      "shard_30568 loaded\n",
      "shard_17345 loaded\n",
      "shard_1874 loaded\n",
      "shard_28435 loaded\n",
      "shard_20677 loaded\n",
      "shard_30420 loaded\n",
      "shard_4671 loaded\n",
      "shard_27619 loaded\n",
      "shard_49728 loaded\n",
      "shard_48026 loaded\n",
      "shard_48944 loaded\n",
      "shard_32241 loaded\n",
      "shard_8564 loaded\n",
      "shard_39803 loaded\n",
      "shard_40754 loaded\n",
      "shard_20425 loaded\n",
      "shard_2306 loaded\n",
      "shard_34227 loaded\n",
      "shard_3306 loaded\n",
      "shard_41124 loaded\n",
      "shard_42398 loaded\n",
      "shard_20555 loaded\n",
      "shard_25487 loaded\n",
      "shard_908 loaded\n",
      "shard_40492 loaded\n",
      "shard_43147 loaded\n",
      "shard_35591 loaded\n",
      "shard_13682 loaded\n",
      "shard_6640 loaded\n",
      "shard_4166 loaded\n",
      "shard_14379 loaded\n",
      "shard_39798 loaded\n",
      "shard_16616 loaded\n",
      "shard_10606 loaded\n",
      "shard_6092 loaded\n",
      "shard_20353 loaded\n",
      "shard_43061 loaded\n",
      "shard_34393 loaded\n",
      "shard_46169 loaded\n",
      "shard_11394 loaded\n",
      "shard_29599 loaded\n",
      "shard_38161 loaded\n",
      "shard_27334 loaded\n",
      "shard_17972 loaded\n",
      "shard_45559 loaded\n",
      "shard_47029 loaded\n",
      "shard_47773 loaded\n",
      "shard_33291 loaded\n",
      "shard_38961 loaded\n",
      "shard_4283 loaded\n",
      "shard_48362 loaded\n",
      "shard_37427 loaded\n",
      "shard_47800 loaded\n",
      "shard_37525 loaded\n",
      "shard_6608 loaded\n",
      "shard_695 loaded\n",
      "shard_12773 loaded\n",
      "shard_8825 loaded\n",
      "shard_814 loaded\n",
      "shard_26247 loaded\n",
      "shard_7983 loaded\n",
      "shard_19225 loaded\n",
      "shard_9766 loaded\n",
      "shard_11591 loaded\n",
      "shard_31456 loaded\n",
      "shard_41619 loaded\n",
      "shard_38578 loaded\n",
      "shard_40084 loaded\n",
      "shard_10919 loaded\n",
      "shard_34467 loaded\n",
      "shard_1044 loaded\n",
      "shard_20530 loaded\n",
      "shard_4013 loaded\n",
      "shard_28306 loaded\n",
      "shard_42495 loaded\n",
      "shard_12019 loaded\n",
      "shard_22662 loaded\n",
      "shard_15211 loaded\n",
      "shard_6363 loaded\n",
      "shard_40091 loaded\n",
      "shard_31169 loaded\n",
      "shard_43379 loaded\n",
      "shard_20567 loaded\n",
      "shard_45090 loaded\n",
      "shard_35079 loaded\n",
      "shard_37361 loaded\n",
      "shard_27383 loaded\n",
      "shard_2018 loaded\n",
      "shard_2007 loaded\n",
      "shard_47958 loaded\n",
      "shard_46577 loaded\n",
      "shard_6579 loaded\n",
      "shard_10748 loaded\n",
      "shard_4793 loaded\n",
      "shard_44232 loaded\n",
      "shard_3505 loaded\n",
      "shard_386 loaded\n",
      "shard_7125 loaded\n",
      "shard_35231 loaded\n",
      "shard_38612 loaded\n",
      "shard_8151 loaded\n",
      "shard_14101 loaded\n",
      "shard_30604 loaded\n",
      "shard_9277 loaded\n",
      "shard_34175 loaded\n",
      "shard_27420 loaded\n",
      "shard_3908 loaded\n",
      "shard_37187 loaded\n",
      "shard_44817 loaded\n",
      "shard_9146 loaded\n",
      "shard_17298 loaded\n",
      "shard_7294 loaded\n",
      "shard_43852 loaded\n",
      "shard_30615 loaded\n",
      "shard_15081 loaded\n",
      "shard_10753 loaded\n",
      "shard_46669 loaded\n",
      "shard_35939 loaded\n",
      "shard_14433 loaded\n",
      "shard_26837 loaded\n",
      "shard_17843 loaded\n",
      "shard_41662 loaded\n",
      "shard_47211 loaded\n",
      "shard_43095 loaded\n",
      "shard_29305 loaded\n",
      "shard_25666 loaded\n",
      "shard_10363 loaded\n",
      "shard_30797 loaded\n",
      "shard_47210 loaded\n",
      "shard_1085 loaded\n",
      "shard_38897 loaded\n",
      "shard_30059 loaded\n",
      "shard_16408 loaded\n",
      "shard_36962 loaded\n",
      "shard_36891 loaded\n",
      "shard_44548 loaded\n",
      "shard_32794 loaded\n",
      "shard_16543 loaded\n",
      "shard_41764 loaded\n",
      "shard_41485 loaded\n",
      "shard_2594 loaded\n",
      "shard_27739 loaded\n",
      "shard_9300 loaded\n",
      "shard_3186 loaded\n",
      "shard_45153 loaded\n",
      "shard_24510 loaded\n",
      "shard_28021 loaded\n",
      "shard_3956 loaded\n",
      "shard_29376 loaded\n",
      "shard_26926 loaded\n",
      "shard_1656 loaded\n",
      "shard_49451 loaded\n",
      "shard_5973 loaded\n",
      "shard_46043 loaded\n",
      "shard_28948 loaded\n",
      "shard_22074 loaded\n",
      "shard_38650 loaded\n",
      "shard_42188 loaded\n",
      "shard_27183 loaded\n",
      "shard_18883 loaded\n",
      "shard_18554 loaded\n",
      "shard_42483 loaded\n",
      "shard_34099 loaded\n",
      "shard_32974 loaded\n",
      "shard_10250 loaded\n",
      "shard_6071 loaded\n",
      "shard_26549 loaded\n",
      "shard_24623 loaded\n",
      "shard_43929 loaded\n",
      "shard_9906 loaded\n",
      "shard_15173 loaded\n",
      "shard_11158 loaded\n",
      "shard_40109 loaded\n",
      "shard_31105 loaded\n",
      "shard_3564 loaded\n",
      "shard_7334 loaded\n",
      "shard_46767 loaded\n",
      "shard_33135 loaded\n",
      "shard_42874 loaded\n",
      "shard_43479 loaded\n",
      "shard_49410 loaded\n",
      "shard_22012 loaded\n",
      "shard_41641 loaded\n",
      "shard_23308 loaded\n",
      "shard_6829 loaded\n",
      "shard_14301 loaded\n",
      "shard_48003 loaded\n",
      "shard_40093 loaded\n",
      "shard_25786 loaded\n",
      "shard_13836 loaded\n",
      "shard_18329 loaded\n",
      "shard_42637 loaded\n",
      "shard_11395 loaded\n",
      "shard_8261 loaded\n",
      "shard_24961 loaded\n",
      "shard_27905 loaded\n",
      "shard_31069 loaded\n",
      "shard_4906 loaded\n",
      "shard_40702 loaded\n",
      "shard_41947 loaded\n",
      "shard_35059 loaded\n",
      "shard_40982 loaded\n",
      "shard_39294 loaded\n",
      "shard_24381 loaded\n",
      "shard_21518 loaded\n",
      "shard_3466 loaded\n",
      "shard_23153 loaded\n",
      "shard_24697 loaded\n",
      "shard_20231 loaded\n",
      "shard_32654 loaded\n",
      "shard_19649 loaded\n",
      "shard_30530 loaded\n",
      "shard_6318 loaded\n",
      "shard_36942 loaded\n",
      "shard_41781 loaded\n",
      "shard_16085 loaded\n",
      "shard_39979 loaded\n",
      "shard_43183 loaded\n",
      "shard_23990 loaded\n",
      "shard_40644 loaded\n",
      "shard_27779 loaded\n",
      "shard_45412 loaded\n",
      "shard_29757 loaded\n",
      "shard_23330 loaded\n",
      "shard_24839 loaded\n",
      "shard_5971 loaded\n",
      "shard_37769 loaded\n",
      "shard_49306 loaded\n",
      "shard_34843 loaded\n",
      "shard_43710 loaded\n",
      "shard_11893 loaded\n",
      "shard_1182 loaded\n",
      "shard_6807 loaded\n",
      "shard_33446 loaded\n",
      "shard_27733 loaded\n",
      "shard_44758 loaded\n",
      "shard_36935 loaded\n",
      "shard_5295 loaded\n",
      "shard_42737 loaded\n",
      "shard_5816 loaded\n",
      "shard_49824 loaded\n",
      "shard_31506 loaded\n",
      "shard_16140 loaded\n",
      "shard_39234 loaded\n",
      "shard_22737 loaded\n",
      "shard_48609 loaded\n",
      "shard_45398 loaded\n",
      "shard_14963 loaded\n",
      "shard_1498 loaded\n",
      "shard_4614 loaded\n",
      "shard_49867 loaded\n",
      "shard_1049 loaded\n",
      "shard_42217 loaded\n",
      "shard_21117 loaded\n",
      "shard_45216 loaded\n",
      "shard_16302 loaded\n",
      "shard_25225 loaded\n",
      "shard_2461 loaded\n",
      "shard_8914 loaded\n",
      "shard_34084 loaded\n",
      "shard_17853 loaded\n",
      "shard_38378 loaded\n",
      "shard_35537 loaded\n",
      "shard_15573 loaded\n",
      "shard_5722 loaded\n",
      "shard_41802 loaded\n",
      "shard_35394 loaded\n",
      "shard_21543 loaded\n",
      "shard_2833 loaded\n",
      "shard_26277 loaded\n",
      "shard_33347 loaded\n",
      "shard_37710 loaded\n",
      "shard_18778 loaded\n",
      "shard_18811 loaded\n",
      "shard_2078 loaded\n",
      "shard_38948 loaded\n",
      "shard_38668 loaded\n",
      "shard_33767 loaded\n",
      "shard_16781 loaded\n",
      "shard_18644 loaded\n",
      "shard_28041 loaded\n",
      "shard_32893 loaded\n",
      "shard_42170 loaded\n",
      "shard_13629 loaded\n",
      "shard_46366 loaded\n",
      "shard_6698 loaded\n",
      "shard_19495 loaded\n",
      "shard_35036 loaded\n",
      "shard_37828 loaded\n",
      "shard_44301 loaded\n",
      "shard_6247 loaded\n",
      "shard_35593 loaded\n",
      "shard_15276 loaded\n",
      "shard_3159 loaded\n",
      "shard_49374 loaded\n",
      "shard_37048 loaded\n",
      "shard_45078 loaded\n",
      "shard_13631 loaded\n",
      "shard_1791 loaded\n",
      "shard_33809 loaded\n",
      "shard_12183 loaded\n",
      "shard_41884 loaded\n",
      "shard_39804 loaded\n",
      "shard_12127 loaded\n",
      "shard_24308 loaded\n",
      "shard_1815 loaded\n",
      "shard_16148 loaded\n",
      "shard_13946 loaded\n",
      "shard_49156 loaded\n",
      "shard_40711 loaded\n",
      "shard_26982 loaded\n",
      "shard_7782 loaded\n",
      "shard_30582 loaded\n",
      "shard_4819 loaded\n",
      "shard_45641 loaded\n",
      "shard_19920 loaded\n",
      "shard_11072 loaded\n",
      "shard_2578 loaded\n",
      "shard_26100 loaded\n",
      "shard_5458 loaded\n",
      "shard_9666 loaded\n",
      "shard_19539 loaded\n",
      "shard_20968 loaded\n",
      "shard_33435 loaded\n",
      "shard_19687 loaded\n",
      "shard_14988 loaded\n",
      "shard_6491 loaded\n",
      "shard_17739 loaded\n",
      "shard_21114 loaded\n",
      "shard_16213 loaded\n",
      "shard_20178 loaded\n",
      "shard_35462 loaded\n",
      "shard_17951 loaded\n",
      "shard_5547 loaded\n",
      "shard_5025 loaded\n",
      "shard_49882 loaded\n",
      "shard_13061 loaded\n",
      "shard_20804 loaded\n",
      "shard_11393 loaded\n",
      "shard_30466 loaded\n",
      "shard_15642 loaded\n",
      "shard_41872 loaded\n",
      "shard_2957 loaded\n",
      "shard_35220 loaded\n",
      "shard_18400 loaded\n",
      "shard_38360 loaded\n",
      "shard_29927 loaded\n",
      "shard_40891 loaded\n",
      "shard_48294 loaded\n",
      "shard_8916 loaded\n",
      "shard_30129 loaded\n",
      "shard_25127 loaded\n",
      "shard_5518 loaded\n",
      "shard_23338 loaded\n",
      "shard_21356 loaded\n",
      "shard_22594 loaded\n",
      "shard_13423 loaded\n",
      "shard_34440 loaded\n",
      "shard_35639 loaded\n",
      "shard_30455 loaded\n",
      "shard_27989 loaded\n",
      "shard_31922 loaded\n",
      "shard_31282 loaded\n",
      "shard_39698 loaded\n",
      "shard_36740 loaded\n",
      "shard_19426 loaded\n",
      "shard_40092 loaded\n",
      "shard_9134 loaded\n",
      "shard_39207 loaded\n",
      "shard_40693 loaded\n",
      "shard_29669 loaded\n",
      "shard_18807 loaded\n",
      "shard_27552 loaded\n",
      "shard_28711 loaded\n",
      "shard_21235 loaded\n",
      "shard_15037 loaded\n",
      "shard_31230 loaded\n",
      "shard_31853 loaded\n",
      "shard_43839 loaded\n",
      "shard_32662 loaded\n",
      "shard_24964 loaded\n",
      "shard_45541 loaded\n",
      "shard_25228 loaded\n",
      "shard_29802 loaded\n",
      "shard_34814 loaded\n",
      "shard_40552 loaded\n",
      "shard_6794 loaded\n",
      "shard_14916 loaded\n",
      "shard_13568 loaded\n",
      "shard_14257 loaded\n",
      "shard_26565 loaded\n",
      "shard_25867 loaded\n",
      "shard_23859 loaded\n",
      "shard_12959 loaded\n",
      "shard_10175 loaded\n",
      "shard_23797 loaded\n",
      "shard_13292 loaded\n",
      "shard_6529 loaded\n",
      "shard_3578 loaded\n",
      "shard_14170 loaded\n",
      "shard_2638 loaded\n",
      "shard_10914 loaded\n",
      "shard_14545 loaded\n",
      "shard_8212 loaded\n",
      "shard_46510 loaded\n",
      "shard_8270 loaded\n",
      "shard_38549 loaded\n",
      "shard_34539 loaded\n",
      "shard_48769 loaded\n",
      "shard_12547 loaded\n",
      "shard_15008 loaded\n",
      "shard_35492 loaded\n",
      "shard_20650 loaded\n",
      "shard_27269 loaded\n",
      "shard_42245 loaded\n",
      "shard_18477 loaded\n",
      "shard_49055 loaded\n",
      "shard_19142 loaded\n",
      "shard_48480 loaded\n",
      "shard_25408 loaded\n",
      "shard_34251 loaded\n",
      "shard_40944 loaded\n",
      "shard_35329 loaded\n",
      "shard_40081 loaded\n",
      "shard_33370 loaded\n",
      "shard_4123 loaded\n",
      "shard_35127 loaded\n",
      "shard_32014 loaded\n",
      "shard_46950 loaded\n",
      "shard_20258 loaded\n",
      "shard_9220 loaded\n",
      "shard_14786 loaded\n",
      "shard_42799 loaded\n",
      "shard_4573 loaded\n",
      "shard_10952 loaded\n",
      "shard_4801 loaded\n",
      "shard_12606 loaded\n",
      "shard_29195 loaded\n",
      "shard_16303 loaded\n",
      "shard_44893 loaded\n",
      "shard_31745 loaded\n",
      "shard_10436 loaded\n",
      "shard_33048 loaded\n",
      "shard_38571 loaded\n",
      "shard_6642 loaded\n",
      "shard_12834 loaded\n",
      "shard_48560 loaded\n",
      "shard_28464 loaded\n",
      "shard_16065 loaded\n",
      "shard_37610 loaded\n",
      "shard_15255 loaded\n",
      "shard_32329 loaded\n",
      "shard_28399 loaded\n",
      "shard_34439 loaded\n",
      "shard_9593 loaded\n",
      "shard_49585 loaded\n",
      "shard_45752 loaded\n",
      "shard_40016 loaded\n",
      "shard_23032 loaded\n",
      "shard_8179 loaded\n",
      "shard_23643 loaded\n",
      "shard_22145 loaded\n",
      "shard_32118 loaded\n",
      "shard_2649 loaded\n",
      "shard_15134 loaded\n",
      "shard_20388 loaded\n",
      "shard_32650 loaded\n",
      "shard_41385 loaded\n",
      "shard_26581 loaded\n",
      "shard_14964 loaded\n",
      "shard_39549 loaded\n",
      "shard_13806 loaded\n",
      "shard_618 loaded\n",
      "shard_40162 loaded\n",
      "shard_28129 loaded\n",
      "shard_157 loaded\n",
      "shard_8386 loaded\n",
      "shard_34595 loaded\n",
      "shard_22114 loaded\n",
      "shard_693 loaded\n",
      "shard_39633 loaded\n",
      "shard_37535 loaded\n",
      "shard_17191 loaded\n",
      "shard_34964 loaded\n",
      "shard_26699 loaded\n",
      "shard_4962 loaded\n",
      "shard_34867 loaded\n",
      "shard_47591 loaded\n",
      "shard_47354 loaded\n",
      "shard_36952 loaded\n",
      "shard_24978 loaded\n",
      "shard_12982 loaded\n",
      "shard_23327 loaded\n",
      "shard_8462 loaded\n",
      "shard_13725 loaded\n",
      "shard_31904 loaded\n",
      "shard_35654 loaded\n",
      "shard_35813 loaded\n",
      "shard_522 loaded\n",
      "shard_19098 loaded\n",
      "shard_41737 loaded\n",
      "shard_41826 loaded\n",
      "shard_3567 loaded\n",
      "shard_41634 loaded\n",
      "shard_13688 loaded\n",
      "shard_28467 loaded\n",
      "shard_43322 loaded\n",
      "shard_18183 loaded\n",
      "shard_20323 loaded\n",
      "shard_28192 loaded\n",
      "shard_6055 loaded\n",
      "shard_24093 loaded\n",
      "shard_13434 loaded\n",
      "shard_36179 loaded\n",
      "shard_15305 loaded\n",
      "shard_39374 loaded\n",
      "shard_6547 loaded\n",
      "shard_874 loaded\n",
      "shard_28541 loaded\n",
      "shard_13980 loaded\n",
      "shard_32435 loaded\n",
      "shard_25423 loaded\n",
      "shard_48293 loaded\n",
      "shard_37711 loaded\n",
      "shard_10321 loaded\n",
      "shard_28559 loaded\n",
      "shard_4969 loaded\n",
      "shard_5142 loaded\n",
      "shard_30596 loaded\n",
      "shard_43433 loaded\n",
      "shard_18173 loaded\n",
      "shard_1029 loaded\n",
      "shard_38638 loaded\n",
      "shard_6320 loaded\n",
      "shard_38586 loaded\n",
      "shard_5942 loaded\n",
      "shard_3010 loaded\n",
      "shard_21176 loaded\n",
      "shard_3653 loaded\n",
      "shard_47158 loaded\n",
      "shard_25281 loaded\n",
      "shard_33023 loaded\n",
      "shard_37790 loaded\n",
      "shard_3490 loaded\n",
      "shard_20862 loaded\n",
      "shard_1153 loaded\n",
      "shard_39046 loaded\n",
      "shard_38485 loaded\n",
      "shard_1743 loaded\n",
      "shard_38327 loaded\n",
      "shard_30138 loaded\n",
      "shard_7729 loaded\n",
      "shard_46102 loaded\n",
      "shard_30100 loaded\n",
      "shard_23870 loaded\n",
      "shard_26619 loaded\n",
      "shard_22947 loaded\n",
      "shard_27897 loaded\n",
      "shard_27641 loaded\n",
      "shard_43912 loaded\n",
      "shard_30841 loaded\n",
      "shard_31452 loaded\n",
      "shard_46898 loaded\n",
      "shard_22512 loaded\n",
      "shard_46620 loaded\n",
      "shard_37555 loaded\n",
      "shard_6182 loaded\n",
      "shard_29514 loaded\n",
      "shard_22438 loaded\n",
      "shard_3153 loaded\n",
      "shard_19108 loaded\n",
      "shard_33367 loaded\n",
      "shard_17025 loaded\n",
      "shard_4909 loaded\n",
      "shard_37170 loaded\n",
      "shard_5351 loaded\n",
      "shard_2571 loaded\n",
      "shard_38321 loaded\n",
      "shard_25570 loaded\n",
      "shard_41934 loaded\n",
      "shard_45530 loaded\n",
      "shard_17676 loaded\n",
      "shard_31300 loaded\n",
      "shard_48061 loaded\n",
      "shard_15300 loaded\n",
      "shard_13616 loaded\n",
      "shard_2815 loaded\n",
      "shard_16634 loaded\n",
      "shard_44082 loaded\n",
      "shard_4360 loaded\n",
      "shard_38512 loaded\n",
      "shard_30907 loaded\n",
      "shard_4378 loaded\n",
      "shard_32661 loaded\n",
      "shard_39919 loaded\n",
      "shard_17840 loaded\n",
      "shard_32972 loaded\n",
      "shard_16457 loaded\n",
      "shard_33733 loaded\n",
      "shard_7675 loaded\n",
      "shard_3309 loaded\n",
      "shard_26953 loaded\n",
      "shard_39909 loaded\n",
      "shard_11651 loaded\n",
      "shard_20263 loaded\n",
      "shard_36058 loaded\n",
      "shard_20150 loaded\n",
      "shard_47587 loaded\n",
      "shard_37082 loaded\n",
      "shard_42027 loaded\n",
      "shard_41887 loaded\n",
      "shard_7005 loaded\n",
      "shard_29957 loaded\n",
      "shard_49957 loaded\n",
      "shard_5424 loaded\n",
      "shard_6839 loaded\n",
      "shard_39502 loaded\n",
      "shard_25925 loaded\n",
      "shard_13250 loaded\n",
      "shard_28137 loaded\n",
      "shard_23549 loaded\n",
      "shard_11032 loaded\n",
      "shard_16291 loaded\n",
      "shard_31768 loaded\n",
      "shard_46039 loaded\n",
      "shard_27397 loaded\n",
      "shard_24720 loaded\n",
      "shard_16483 loaded\n",
      "shard_33429 loaded\n",
      "shard_24071 loaded\n",
      "shard_22634 loaded\n",
      "shard_28769 loaded\n",
      "shard_33611 loaded\n",
      "shard_30361 loaded\n",
      "shard_20907 loaded\n",
      "shard_38475 loaded\n",
      "shard_394 loaded\n",
      "shard_47873 loaded\n",
      "shard_33152 loaded\n",
      "shard_3892 loaded\n",
      "shard_21919 loaded\n",
      "shard_4635 loaded\n",
      "shard_24180 loaded\n",
      "shard_32932 loaded\n",
      "shard_42249 loaded\n",
      "shard_18575 loaded\n",
      "shard_28148 loaded\n",
      "shard_34435 loaded\n",
      "shard_26718 loaded\n",
      "shard_48552 loaded\n",
      "shard_23288 loaded\n",
      "shard_26151 loaded\n",
      "shard_10967 loaded\n",
      "shard_18417 loaded\n",
      "shard_29055 loaded\n",
      "shard_46679 loaded\n",
      "shard_4335 loaded\n",
      "shard_19332 loaded\n",
      "shard_34172 loaded\n",
      "shard_37113 loaded\n",
      "shard_31592 loaded\n",
      "shard_25840 loaded\n",
      "shard_36290 loaded\n",
      "shard_9077 loaded\n",
      "shard_44853 loaded\n",
      "shard_39162 loaded\n",
      "shard_1672 loaded\n",
      "shard_8467 loaded\n",
      "shard_45231 loaded\n",
      "shard_18743 loaded\n",
      "shard_9926 loaded\n",
      "shard_5772 loaded\n",
      "shard_38310 loaded\n",
      "shard_47049 loaded\n",
      "shard_47944 loaded\n",
      "shard_1301 loaded\n",
      "shard_93 loaded\n",
      "shard_48719 loaded\n",
      "shard_15862 loaded\n",
      "shard_42840 loaded\n",
      "shard_46724 loaded\n",
      "shard_19962 loaded\n",
      "shard_38022 loaded\n",
      "shard_11863 loaded\n",
      "shard_35176 loaded\n",
      "shard_44940 loaded\n",
      "shard_31490 loaded\n",
      "shard_32526 loaded\n",
      "shard_33001 loaded\n",
      "shard_707 loaded\n",
      "shard_13211 loaded\n",
      "shard_48714 loaded\n",
      "shard_34003 loaded\n",
      "shard_34564 loaded\n",
      "shard_20627 loaded\n",
      "shard_16611 loaded\n",
      "shard_18716 loaded\n",
      "shard_1988 loaded\n",
      "shard_1709 loaded\n",
      "shard_32590 loaded\n",
      "shard_3138 loaded\n",
      "shard_12605 loaded\n",
      "shard_48794 loaded\n",
      "shard_47233 loaded\n",
      "shard_38805 loaded\n",
      "shard_20421 loaded\n",
      "shard_10911 loaded\n",
      "shard_39518 loaded\n",
      "shard_29982 loaded\n",
      "shard_44735 loaded\n",
      "shard_7932 loaded\n",
      "shard_302 loaded\n",
      "shard_39929 loaded\n",
      "shard_39582 loaded\n",
      "shard_22867 loaded\n",
      "shard_41464 loaded\n",
      "shard_9499 loaded\n",
      "shard_13052 loaded\n",
      "shard_49967 loaded\n",
      "shard_17770 loaded\n",
      "shard_6287 loaded\n",
      "shard_9688 loaded\n",
      "shard_18434 loaded\n",
      "shard_10918 loaded\n",
      "shard_28166 loaded\n",
      "shard_1146 loaded\n",
      "shard_2023 loaded\n",
      "shard_34778 loaded\n",
      "shard_17638 loaded\n",
      "shard_15045 loaded\n",
      "shard_47032 loaded\n",
      "shard_25756 loaded\n",
      "shard_4480 loaded\n",
      "shard_33094 loaded\n",
      "shard_5678 loaded\n",
      "shard_15123 loaded\n",
      "shard_35262 loaded\n",
      "shard_9817 loaded\n",
      "shard_15973 loaded\n",
      "shard_32927 loaded\n",
      "shard_42196 loaded\n",
      "shard_3461 loaded\n",
      "shard_24324 loaded\n",
      "shard_48306 loaded\n",
      "shard_27075 loaded\n",
      "shard_11868 loaded\n",
      "shard_49696 loaded\n",
      "shard_33761 loaded\n",
      "shard_13117 loaded\n",
      "shard_23029 loaded\n",
      "shard_9304 loaded\n",
      "shard_33612 loaded\n",
      "shard_15094 loaded\n",
      "shard_37504 loaded\n",
      "shard_6733 loaded\n",
      "shard_21445 loaded\n",
      "shard_16708 loaded\n",
      "shard_38988 loaded\n",
      "shard_19322 loaded\n",
      "shard_38537 loaded\n",
      "shard_34097 loaded\n",
      "shard_11177 loaded\n",
      "shard_9749 loaded\n",
      "shard_36788 loaded\n",
      "shard_15837 loaded\n",
      "shard_25811 loaded\n",
      "shard_28267 loaded\n",
      "shard_15772 loaded\n",
      "shard_36544 loaded\n",
      "shard_7981 loaded\n",
      "shard_13199 loaded\n",
      "shard_48830 loaded\n",
      "shard_5906 loaded\n",
      "shard_202 loaded\n",
      "shard_41275 loaded\n",
      "shard_9294 loaded\n",
      "shard_44611 loaded\n",
      "shard_21541 loaded\n",
      "shard_38145 loaded\n",
      "shard_24106 loaded\n",
      "shard_34777 loaded\n",
      "shard_20148 loaded\n",
      "shard_31261 loaded\n",
      "shard_6681 loaded\n",
      "shard_2114 loaded\n",
      "shard_33058 loaded\n",
      "shard_23009 loaded\n",
      "shard_2873 loaded\n",
      "shard_38767 loaded\n",
      "shard_15447 loaded\n",
      "shard_20835 loaded\n",
      "shard_2609 loaded\n",
      "shard_41079 loaded\n",
      "shard_40146 loaded\n",
      "shard_44925 loaded\n",
      "shard_37132 loaded\n",
      "shard_10557 loaded\n",
      "shard_49828 loaded\n",
      "shard_34687 loaded\n",
      "shard_46193 loaded\n",
      "shard_14027 loaded\n",
      "shard_14037 loaded\n",
      "shard_45659 loaded\n",
      "shard_11047 loaded\n",
      "shard_13402 loaded\n",
      "shard_4820 loaded\n",
      "shard_19133 loaded\n",
      "shard_45634 loaded\n",
      "shard_12341 loaded\n",
      "shard_17412 loaded\n",
      "shard_36510 loaded\n",
      "shard_2812 loaded\n",
      "shard_3063 loaded\n",
      "shard_29448 loaded\n",
      "shard_20592 loaded\n",
      "shard_8638 loaded\n",
      "shard_22323 loaded\n",
      "shard_11867 loaded\n",
      "shard_21817 loaded\n",
      "shard_47115 loaded\n",
      "shard_26086 loaded\n",
      "shard_17083 loaded\n",
      "shard_26012 loaded\n",
      "shard_33678 loaded\n",
      "shard_38733 loaded\n",
      "shard_37818 loaded\n",
      "shard_12833 loaded\n",
      "shard_5182 loaded\n",
      "shard_3877 loaded\n",
      "shard_734 loaded\n",
      "shard_26739 loaded\n",
      "shard_36654 loaded\n",
      "shard_26707 loaded\n",
      "shard_36212 loaded\n",
      "shard_6820 loaded\n",
      "shard_18929 loaded\n",
      "shard_24403 loaded\n",
      "shard_40103 loaded\n",
      "shard_40648 loaded\n",
      "shard_19218 loaded\n",
      "shard_18209 loaded\n",
      "shard_46283 loaded\n",
      "shard_40325 loaded\n",
      "shard_8096 loaded\n",
      "shard_31658 loaded\n",
      "shard_33867 loaded\n",
      "shard_47103 loaded\n",
      "shard_19884 loaded\n",
      "shard_25323 loaded\n",
      "shard_15453 loaded\n",
      "shard_39897 loaded\n",
      "shard_21684 loaded\n",
      "shard_31140 loaded\n",
      "shard_21751 loaded\n",
      "shard_46984 loaded\n",
      "shard_32979 loaded\n",
      "shard_10852 loaded\n",
      "shard_41710 loaded\n",
      "shard_39888 loaded\n",
      "shard_20219 loaded\n",
      "shard_30672 loaded\n",
      "shard_46610 loaded\n",
      "shard_26152 loaded\n",
      "shard_19719 loaded\n",
      "shard_1069 loaded\n",
      "shard_47022 loaded\n",
      "shard_7449 loaded\n",
      "shard_20878 loaded\n",
      "shard_20558 loaded\n",
      "shard_6258 loaded\n",
      "shard_42153 loaded\n",
      "shard_13483 loaded\n",
      "shard_18517 loaded\n",
      "shard_14295 loaded\n",
      "shard_39411 loaded\n",
      "shard_41915 loaded\n",
      "shard_8290 loaded\n",
      "shard_43909 loaded\n",
      "shard_4974 loaded\n",
      "shard_44600 loaded\n",
      "shard_46385 loaded\n",
      "shard_38994 loaded\n",
      "shard_29844 loaded\n",
      "shard_16796 loaded\n",
      "shard_10720 loaded\n",
      "shard_14893 loaded\n",
      "shard_15470 loaded\n",
      "shard_116 loaded\n",
      "shard_21375 loaded\n",
      "shard_15630 loaded\n",
      "shard_11392 loaded\n",
      "shard_48258 loaded\n",
      "shard_30005 loaded\n",
      "shard_5079 loaded\n",
      "shard_23163 loaded\n",
      "shard_24333 loaded\n",
      "shard_14713 loaded\n",
      "shard_29247 loaded\n",
      "shard_30810 loaded\n",
      "shard_11816 loaded\n",
      "shard_48261 loaded\n",
      "shard_46936 loaded\n",
      "shard_47657 loaded\n",
      "shard_930 loaded\n",
      "shard_16074 loaded\n",
      "shard_10143 loaded\n",
      "shard_25638 loaded\n",
      "shard_29174 loaded\n",
      "shard_35301 loaded\n",
      "shard_9787 loaded\n",
      "shard_34155 loaded\n",
      "shard_24176 loaded\n",
      "shard_47225 loaded\n",
      "shard_226 loaded\n",
      "shard_26691 loaded\n",
      "shard_12748 loaded\n",
      "shard_36359 loaded\n",
      "shard_21756 loaded\n",
      "shard_32878 loaded\n",
      "shard_2021 loaded\n",
      "shard_23345 loaded\n",
      "shard_39504 loaded\n",
      "shard_11299 loaded\n",
      "shard_41118 loaded\n",
      "shard_28499 loaded\n",
      "shard_12779 loaded\n",
      "shard_32376 loaded\n",
      "shard_19349 loaded\n",
      "shard_6013 loaded\n",
      "shard_21627 loaded\n",
      "shard_5998 loaded\n",
      "shard_32108 loaded\n",
      "shard_44080 loaded\n",
      "shard_2056 loaded\n",
      "shard_21785 loaded\n",
      "shard_18051 loaded\n",
      "shard_10104 loaded\n",
      "shard_34474 loaded\n",
      "shard_16925 loaded\n",
      "shard_17879 loaded\n",
      "shard_24290 loaded\n",
      "shard_30829 loaded\n",
      "shard_4861 loaded\n",
      "shard_41622 loaded\n",
      "shard_1952 loaded\n",
      "shard_9162 loaded\n",
      "shard_34851 loaded\n",
      "shard_32345 loaded\n",
      "shard_3175 loaded\n",
      "shard_7898 loaded\n",
      "shard_23097 loaded\n",
      "shard_1678 loaded\n",
      "shard_5728 loaded\n",
      "shard_45490 loaded\n",
      "shard_43818 loaded\n",
      "shard_24785 loaded\n",
      "shard_37605 loaded\n",
      "shard_27238 loaded\n",
      "shard_7240 loaded\n",
      "shard_11270 loaded\n",
      "shard_36183 loaded\n",
      "shard_45926 loaded\n",
      "shard_28795 loaded\n",
      "shard_1493 loaded\n",
      "shard_3094 loaded\n",
      "shard_43107 loaded\n",
      "shard_25185 loaded\n",
      "shard_19593 loaded\n",
      "shard_41674 loaded\n",
      "shard_36809 loaded\n",
      "shard_39464 loaded\n",
      "shard_14205 loaded\n",
      "shard_16684 loaded\n",
      "shard_42287 loaded\n",
      "shard_36677 loaded\n",
      "shard_27490 loaded\n",
      "shard_22701 loaded\n",
      "shard_15343 loaded\n",
      "shard_32262 loaded\n",
      "shard_23599 loaded\n",
      "shard_20779 loaded\n",
      "shard_34831 loaded\n",
      "shard_44383 loaded\n",
      "shard_24239 loaded\n",
      "shard_15386 loaded\n",
      "shard_2064 loaded\n",
      "shard_13874 loaded\n",
      "shard_33945 loaded\n",
      "shard_8368 loaded\n",
      "shard_35461 loaded\n",
      "shard_35012 loaded\n",
      "shard_1984 loaded\n",
      "shard_25084 loaded\n",
      "shard_6996 loaded\n",
      "shard_16386 loaded\n",
      "shard_5280 loaded\n",
      "shard_33226 loaded\n",
      "shard_4156 loaded\n",
      "shard_35224 loaded\n",
      "shard_16645 loaded\n",
      "shard_38100 loaded\n",
      "shard_25970 loaded\n",
      "shard_26238 loaded\n",
      "shard_26916 loaded\n",
      "shard_37305 loaded\n",
      "shard_33184 loaded\n",
      "shard_17598 loaded\n",
      "shard_43087 loaded\n",
      "shard_25979 loaded\n",
      "shard_39958 loaded\n",
      "shard_11172 loaded\n",
      "shard_26743 loaded\n",
      "shard_8202 loaded\n",
      "shard_6742 loaded\n",
      "shard_34252 loaded\n",
      "shard_42839 loaded\n",
      "shard_5918 loaded\n",
      "shard_31717 loaded\n",
      "shard_32804 loaded\n",
      "shard_42823 loaded\n",
      "shard_48091 loaded\n",
      "shard_49162 loaded\n",
      "shard_43870 loaded\n",
      "shard_15458 loaded\n",
      "shard_9933 loaded\n",
      "shard_39887 loaded\n",
      "shard_28683 loaded\n",
      "shard_19714 loaded\n",
      "shard_2049 loaded\n",
      "shard_5250 loaded\n",
      "shard_31776 loaded\n",
      "shard_49467 loaded\n",
      "shard_40971 loaded\n",
      "shard_48734 loaded\n",
      "shard_9284 loaded\n",
      "shard_4176 loaded\n",
      "shard_15041 loaded\n",
      "shard_35388 loaded\n",
      "shard_252 loaded\n",
      "shard_4543 loaded\n",
      "shard_24933 loaded\n",
      "shard_21135 loaded\n",
      "shard_36195 loaded\n",
      "shard_2466 loaded\n",
      "shard_32494 loaded\n",
      "shard_39186 loaded\n",
      "shard_6688 loaded\n",
      "shard_43112 loaded\n",
      "shard_26465 loaded\n",
      "shard_31974 loaded\n",
      "shard_39438 loaded\n",
      "shard_31320 loaded\n",
      "shard_6367 loaded\n",
      "shard_19290 loaded\n",
      "shard_38030 loaded\n",
      "shard_17093 loaded\n",
      "shard_7197 loaded\n",
      "shard_3076 loaded\n",
      "shard_6211 loaded\n",
      "shard_29762 loaded\n",
      "shard_48793 loaded\n",
      "shard_30680 loaded\n",
      "shard_5634 loaded\n",
      "shard_47864 loaded\n",
      "shard_23065 loaded\n",
      "shard_1547 loaded\n",
      "shard_42686 loaded\n",
      "shard_45492 loaded\n",
      "shard_37 loaded\n",
      "shard_43092 loaded\n",
      "shard_3321 loaded\n",
      "shard_23766 loaded\n",
      "shard_49360 loaded\n",
      "shard_7256 loaded\n",
      "shard_11344 loaded\n",
      "shard_35556 loaded\n",
      "shard_22581 loaded\n",
      "shard_45063 loaded\n",
      "shard_37384 loaded\n",
      "shard_25490 loaded\n",
      "shard_24160 loaded\n",
      "shard_49439 loaded\n",
      "shard_1601 loaded\n",
      "shard_27801 loaded\n",
      "shard_37637 loaded\n",
      "shard_25787 loaded\n",
      "shard_36777 loaded\n",
      "shard_28407 loaded\n",
      "shard_19561 loaded\n",
      "shard_42861 loaded\n",
      "shard_48462 loaded\n",
      "shard_6679 loaded\n",
      "shard_6686 loaded\n",
      "shard_9880 loaded\n",
      "shard_9334 loaded\n",
      "shard_38548 loaded\n",
      "shard_1096 loaded\n",
      "shard_43512 loaded\n",
      "shard_25582 loaded\n",
      "shard_508 loaded\n",
      "shard_1427 loaded\n",
      "shard_42035 loaded\n",
      "shard_49667 loaded\n",
      "shard_43077 loaded\n",
      "shard_16092 loaded\n",
      "shard_18129 loaded\n",
      "shard_10484 loaded\n",
      "shard_7402 loaded\n",
      "shard_42954 loaded\n",
      "shard_23534 loaded\n",
      "shard_42791 loaded\n",
      "shard_40600 loaded\n",
      "shard_12920 loaded\n",
      "shard_23490 loaded\n",
      "shard_39820 loaded\n",
      "shard_10097 loaded\n",
      "shard_40284 loaded\n",
      "shard_41439 loaded\n",
      "shard_15588 loaded\n",
      "shard_38787 loaded\n",
      "shard_28615 loaded\n",
      "shard_49513 loaded\n",
      "shard_45907 loaded\n",
      "shard_6898 loaded\n",
      "shard_10514 loaded\n",
      "shard_20221 loaded\n",
      "shard_11525 loaded\n",
      "shard_10223 loaded\n",
      "shard_5236 loaded\n",
      "shard_5260 loaded\n",
      "shard_14895 loaded\n",
      "shard_31942 loaded\n",
      "shard_16198 loaded\n",
      "shard_26708 loaded\n",
      "shard_38231 loaded\n",
      "shard_33852 loaded\n",
      "shard_26020 loaded\n",
      "shard_25962 loaded\n",
      "shard_26205 loaded\n",
      "shard_18722 loaded\n",
      "shard_34122 loaded\n",
      "shard_22879 loaded\n",
      "shard_10625 loaded\n",
      "shard_38851 loaded\n",
      "shard_44122 loaded\n",
      "shard_8241 loaded\n",
      "shard_43310 loaded\n",
      "shard_11583 loaded\n",
      "shard_36717 loaded\n",
      "shard_41028 loaded\n",
      "shard_8092 loaded\n",
      "shard_2696 loaded\n",
      "shard_9990 loaded\n",
      "shard_7146 loaded\n",
      "shard_31113 loaded\n",
      "shard_47384 loaded\n",
      "shard_18958 loaded\n",
      "shard_10585 loaded\n",
      "shard_30241 loaded\n",
      "shard_9316 loaded\n",
      "shard_13277 loaded\n",
      "shard_9716 loaded\n",
      "shard_20626 loaded\n",
      "shard_30362 loaded\n",
      "shard_19084 loaded\n",
      "shard_32336 loaded\n",
      "shard_18387 loaded\n",
      "shard_36409 loaded\n",
      "shard_28471 loaded\n",
      "shard_24704 loaded\n",
      "shard_20484 loaded\n",
      "shard_33745 loaded\n",
      "shard_33804 loaded\n",
      "shard_23210 loaded\n",
      "shard_28132 loaded\n",
      "shard_14647 loaded\n",
      "shard_36887 loaded\n",
      "shard_28433 loaded\n",
      "shard_7067 loaded\n",
      "shard_48855 loaded\n",
      "shard_14525 loaded\n",
      "shard_10220 loaded\n",
      "shard_3329 loaded\n",
      "shard_11217 loaded\n",
      "shard_12254 loaded\n",
      "shard_18015 loaded\n",
      "shard_19944 loaded\n",
      "shard_35734 loaded\n",
      "shard_13397 loaded\n",
      "shard_8495 loaded\n",
      "shard_25933 loaded\n",
      "shard_26799 loaded\n",
      "shard_1689 loaded\n",
      "shard_13807 loaded\n",
      "shard_34126 loaded\n",
      "shard_22121 loaded\n",
      "shard_20977 loaded\n",
      "shard_36520 loaded\n",
      "shard_47438 loaded\n",
      "shard_1716 loaded\n",
      "shard_1186 loaded\n",
      "shard_2677 loaded\n",
      "shard_44045 loaded\n",
      "shard_44877 loaded\n",
      "shard_33607 loaded\n",
      "shard_19524 loaded\n",
      "shard_48395 loaded\n",
      "shard_9240 loaded\n",
      "shard_15465 loaded\n",
      "shard_9275 loaded\n",
      "shard_4089 loaded\n",
      "shard_48735 loaded\n",
      "shard_35006 loaded\n",
      "shard_2640 loaded\n",
      "shard_23315 loaded\n",
      "shard_49822 loaded\n",
      "shard_21440 loaded\n",
      "shard_572 loaded\n",
      "shard_35589 loaded\n",
      "shard_49395 loaded\n",
      "shard_38821 loaded\n",
      "shard_8973 loaded\n",
      "shard_40718 loaded\n",
      "shard_4082 loaded\n",
      "shard_17243 loaded\n",
      "shard_14997 loaded\n",
      "shard_2802 loaded\n",
      "shard_32036 loaded\n",
      "shard_32067 loaded\n",
      "shard_24185 loaded\n",
      "shard_20426 loaded\n",
      "shard_21022 loaded\n",
      "shard_46022 loaded\n",
      "shard_12435 loaded\n",
      "shard_39358 loaded\n",
      "shard_38776 loaded\n",
      "shard_34980 loaded\n",
      "shard_18729 loaded\n",
      "shard_11884 loaded\n",
      "shard_34232 loaded\n",
      "shard_7895 loaded\n",
      "shard_40077 loaded\n",
      "shard_28165 loaded\n",
      "shard_25079 loaded\n",
      "shard_33368 loaded\n",
      "shard_34225 loaded\n",
      "shard_42110 loaded\n",
      "shard_21725 loaded\n",
      "shard_20586 loaded\n",
      "shard_5398 loaded\n",
      "shard_16878 loaded\n",
      "shard_43764 loaded\n",
      "shard_27950 loaded\n",
      "shard_1076 loaded\n",
      "shard_15656 loaded\n",
      "shard_44898 loaded\n",
      "shard_16898 loaded\n",
      "shard_18613 loaded\n",
      "shard_15055 loaded\n",
      "shard_27495 loaded\n",
      "shard_39957 loaded\n",
      "shard_2843 loaded\n",
      "shard_24159 loaded\n",
      "shard_40543 loaded\n",
      "shard_12020 loaded\n",
      "shard_34999 loaded\n",
      "shard_3409 loaded\n",
      "shard_18293 loaded\n",
      "shard_17253 loaded\n",
      "shard_8216 loaded\n",
      "shard_22330 loaded\n",
      "shard_25640 loaded\n",
      "shard_20111 loaded\n",
      "shard_10065 loaded\n",
      "shard_24537 loaded\n",
      "shard_48617 loaded\n",
      "shard_6275 loaded\n",
      "shard_47761 loaded\n",
      "shard_18534 loaded\n",
      "shard_30994 loaded\n",
      "shard_4352 loaded\n",
      "shard_12906 loaded\n",
      "shard_16167 loaded\n",
      "shard_21391 loaded\n",
      "shard_17325 loaded\n",
      "shard_31215 loaded\n",
      "shard_40928 loaded\n",
      "shard_7133 loaded\n",
      "shard_5886 loaded\n",
      "shard_5513 loaded\n",
      "shard_28447 loaded\n",
      "shard_24911 loaded\n",
      "shard_15056 loaded\n",
      "shard_28219 loaded\n",
      "shard_19423 loaded\n",
      "shard_26240 loaded\n",
      "shard_42826 loaded\n",
      "shard_8759 loaded\n",
      "shard_16259 loaded\n",
      "shard_35414 loaded\n",
      "shard_14012 loaded\n",
      "shard_34705 loaded\n",
      "shard_33383 loaded\n",
      "shard_39835 loaded\n",
      "shard_3605 loaded\n",
      "shard_28970 loaded\n",
      "shard_5877 loaded\n",
      "shard_48154 loaded\n",
      "shard_42777 loaded\n",
      "shard_37765 loaded\n",
      "shard_26057 loaded\n",
      "shard_48117 loaded\n",
      "shard_25411 loaded\n",
      "shard_49093 loaded\n",
      "shard_21553 loaded\n",
      "shard_19432 loaded\n",
      "shard_37807 loaded\n",
      "shard_6954 loaded\n",
      "shard_30750 loaded\n",
      "shard_7142 loaded\n",
      "shard_33444 loaded\n",
      "shard_21772 loaded\n",
      "shard_49148 loaded\n",
      "shard_40111 loaded\n",
      "shard_30701 loaded\n",
      "shard_17807 loaded\n",
      "shard_23126 loaded\n",
      "shard_45321 loaded\n",
      "shard_14917 loaded\n",
      "shard_28781 loaded\n",
      "shard_1369 loaded\n",
      "shard_13843 loaded\n",
      "shard_48911 loaded\n",
      "shard_39178 loaded\n",
      "shard_33914 loaded\n",
      "shard_33480 loaded\n",
      "shard_17654 loaded\n",
      "shard_43508 loaded\n",
      "shard_38876 loaded\n",
      "shard_41140 loaded\n",
      "shard_24052 loaded\n",
      "shard_33921 loaded\n",
      "shard_14225 loaded\n",
      "shard_11291 loaded\n",
      "shard_36331 loaded\n",
      "shard_46428 loaded\n",
      "shard_44493 loaded\n",
      "shard_45085 loaded\n",
      "shard_42190 loaded\n",
      "shard_44176 loaded\n",
      "shard_11578 loaded\n",
      "shard_35260 loaded\n",
      "shard_31609 loaded\n",
      "shard_10913 loaded\n",
      "shard_22020 loaded\n",
      "shard_40128 loaded\n",
      "shard_44084 loaded\n",
      "shard_16788 loaded\n",
      "shard_15317 loaded\n",
      "shard_48933 loaded\n",
      "shard_18579 loaded\n",
      "shard_38622 loaded\n",
      "shard_46349 loaded\n",
      "shard_14000 loaded\n",
      "shard_30374 loaded\n",
      "shard_28593 loaded\n",
      "shard_19537 loaded\n",
      "shard_2012 loaded\n",
      "shard_24565 loaded\n",
      "shard_48601 loaded\n",
      "shard_19118 loaded\n",
      "shard_23640 loaded\n",
      "shard_6117 loaded\n",
      "shard_16554 loaded\n",
      "shard_3876 loaded\n",
      "shard_36643 loaded\n",
      "shard_41904 loaded\n",
      "shard_1344 loaded\n",
      "shard_10527 loaded\n",
      "shard_29213 loaded\n",
      "shard_38756 loaded\n",
      "shard_14828 loaded\n",
      "shard_15188 loaded\n",
      "shard_5885 loaded\n",
      "shard_41910 loaded\n",
      "shard_28645 loaded\n",
      "shard_22782 loaded\n",
      "shard_34106 loaded\n",
      "shard_45449 loaded\n",
      "shard_1774 loaded\n",
      "shard_17334 loaded\n",
      "shard_41446 loaded\n",
      "shard_17374 loaded\n",
      "shard_9674 loaded\n",
      "shard_33781 loaded\n",
      "shard_31901 loaded\n",
      "shard_34922 loaded\n",
      "shard_38900 loaded\n",
      "shard_560 loaded\n",
      "shard_16940 loaded\n",
      "shard_15450 loaded\n",
      "shard_406 loaded\n",
      "shard_27110 loaded\n",
      "shard_41949 loaded\n",
      "shard_41939 loaded\n",
      "shard_768 loaded\n",
      "shard_10745 loaded\n",
      "shard_23382 loaded\n",
      "shard_35155 loaded\n",
      "shard_1840 loaded\n",
      "shard_9783 loaded\n",
      "shard_10340 loaded\n",
      "shard_6545 loaded\n",
      "shard_11887 loaded\n",
      "shard_7796 loaded\n",
      "shard_20704 loaded\n",
      "shard_25425 loaded\n",
      "shard_9591 loaded\n",
      "shard_16561 loaded\n",
      "shard_28602 loaded\n",
      "shard_13365 loaded\n",
      "shard_18361 loaded\n",
      "shard_13087 loaded\n",
      "shard_15498 loaded\n",
      "shard_2563 loaded\n",
      "shard_34626 loaded\n",
      "shard_36309 loaded\n",
      "shard_15808 loaded\n",
      "shard_9179 loaded\n",
      "shard_723 loaded\n",
      "shard_28879 loaded\n",
      "shard_30143 loaded\n",
      "shard_2089 loaded\n",
      "shard_7930 loaded\n",
      "shard_24812 loaded\n",
      "shard_30857 loaded\n",
      "shard_37018 loaded\n",
      "shard_37270 loaded\n",
      "shard_43569 loaded\n",
      "shard_37425 loaded\n",
      "shard_2505 loaded\n",
      "shard_7045 loaded\n",
      "shard_36269 loaded\n",
      "shard_24182 loaded\n",
      "shard_35038 loaded\n",
      "shard_40821 loaded\n",
      "shard_4016 loaded\n",
      "shard_40549 loaded\n",
      "shard_36043 loaded\n",
      "shard_45229 loaded\n",
      "shard_37215 loaded\n",
      "shard_24161 loaded\n",
      "shard_2939 loaded\n",
      "shard_18125 loaded\n",
      "shard_49852 loaded\n",
      "shard_38880 loaded\n",
      "shard_15349 loaded\n",
      "shard_41575 loaded\n",
      "shard_22892 loaded\n",
      "shard_49708 loaded\n",
      "shard_6139 loaded\n",
      "shard_34884 loaded\n",
      "shard_7350 loaded\n",
      "shard_27360 loaded\n",
      "shard_28400 loaded\n",
      "shard_30482 loaded\n",
      "shard_2603 loaded\n",
      "shard_38387 loaded\n",
      "shard_1032 loaded\n",
      "shard_49529 loaded\n",
      "shard_21475 loaded\n",
      "shard_15655 loaded\n",
      "shard_21621 loaded\n",
      "shard_47402 loaded\n",
      "shard_44229 loaded\n",
      "shard_19729 loaded\n",
      "shard_11749 loaded\n",
      "shard_41116 loaded\n",
      "shard_42929 loaded\n",
      "shard_48942 loaded\n",
      "shard_38494 loaded\n",
      "shard_6010 loaded\n",
      "shard_39706 loaded\n",
      "shard_13905 loaded\n",
      "shard_4011 loaded\n",
      "shard_16420 loaded\n",
      "shard_26149 loaded\n",
      "shard_47166 loaded\n",
      "shard_32319 loaded\n",
      "shard_48673 loaded\n",
      "shard_8187 loaded\n",
      "shard_45122 loaded\n",
      "shard_45431 loaded\n",
      "shard_28000 loaded\n",
      "shard_39018 loaded\n",
      "shard_15451 loaded\n",
      "shard_43980 loaded\n",
      "shard_22939 loaded\n",
      "shard_21537 loaded\n",
      "shard_46839 loaded\n",
      "shard_36898 loaded\n",
      "shard_36374 loaded\n",
      "shard_14858 loaded\n",
      "shard_18981 loaded\n",
      "shard_38769 loaded\n",
      "shard_264 loaded\n",
      "shard_48488 loaded\n",
      "shard_64 loaded\n",
      "shard_32271 loaded\n",
      "shard_48806 loaded\n",
      "shard_14075 loaded\n",
      "shard_30310 loaded\n",
      "shard_7297 loaded\n",
      "shard_4880 loaded\n",
      "shard_45111 loaded\n",
      "shard_20260 loaded\n",
      "shard_49408 loaded\n",
      "shard_42070 loaded\n",
      "shard_11927 loaded\n",
      "shard_29330 loaded\n",
      "shard_42357 loaded\n",
      "shard_41933 loaded\n",
      "shard_32162 loaded\n",
      "shard_25382 loaded\n",
      "shard_42275 loaded\n",
      "shard_42298 loaded\n",
      "shard_12401 loaded\n",
      "shard_13097 loaded\n",
      "shard_3067 loaded\n",
      "shard_33956 loaded\n",
      "shard_7502 loaded\n",
      "shard_12778 loaded\n",
      "shard_22056 loaded\n",
      "shard_17707 loaded\n",
      "shard_41951 loaded\n",
      "shard_38233 loaded\n",
      "shard_1941 loaded\n",
      "shard_18500 loaded\n",
      "shard_9982 loaded\n",
      "shard_11564 loaded\n",
      "shard_6592 loaded\n",
      "shard_739 loaded\n",
      "shard_42790 loaded\n",
      "shard_48235 loaded\n",
      "shard_17073 loaded\n",
      "shard_16885 loaded\n",
      "shard_30913 loaded\n",
      "shard_12455 loaded\n",
      "shard_12240 loaded\n",
      "shard_10843 loaded\n",
      "shard_12014 loaded\n",
      "shard_4000 loaded\n",
      "shard_19646 loaded\n",
      "shard_13947 loaded\n",
      "shard_36007 loaded\n",
      "shard_13381 loaded\n",
      "shard_23800 loaded\n",
      "shard_49169 loaded\n",
      "shard_29036 loaded\n",
      "shard_22928 loaded\n",
      "shard_40955 loaded\n",
      "shard_23794 loaded\n",
      "shard_20053 loaded\n",
      "shard_19993 loaded\n",
      "shard_29054 loaded\n",
      "shard_25879 loaded\n",
      "shard_6342 loaded\n",
      "shard_38414 loaded\n",
      "shard_29462 loaded\n",
      "shard_42650 loaded\n",
      "shard_29167 loaded\n",
      "shard_24549 loaded\n",
      "shard_15231 loaded\n",
      "shard_20864 loaded\n",
      "shard_18044 loaded\n",
      "shard_20745 loaded\n",
      "shard_32448 loaded\n",
      "shard_23411 loaded\n",
      "shard_41719 loaded\n",
      "shard_41489 loaded\n",
      "shard_24353 loaded\n",
      "shard_37511 loaded\n",
      "shard_43724 loaded\n",
      "shard_49709 loaded\n",
      "shard_38442 loaded\n",
      "shard_13732 loaded\n",
      "shard_17482 loaded\n",
      "shard_33847 loaded\n",
      "shard_20314 loaded\n",
      "shard_23433 loaded\n",
      "shard_33244 loaded\n",
      "shard_23041 loaded\n",
      "shard_7590 loaded\n",
      "shard_37999 loaded\n",
      "shard_38068 loaded\n",
      "shard_12441 loaded\n",
      "shard_12929 loaded\n",
      "shard_17968 loaded\n",
      "shard_41570 loaded\n",
      "shard_16808 loaded\n",
      "shard_35077 loaded\n",
      "shard_43805 loaded\n",
      "shard_17731 loaded\n",
      "shard_38542 loaded\n",
      "shard_13599 loaded\n",
      "shard_17940 loaded\n",
      "shard_43459 loaded\n",
      "shard_76 loaded\n",
      "shard_36200 loaded\n",
      "shard_36060 loaded\n",
      "shard_31973 loaded\n",
      "shard_39553 loaded\n",
      "shard_42165 loaded\n",
      "shard_32715 loaded\n",
      "shard_123 loaded\n",
      "shard_14054 loaded\n",
      "shard_1338 loaded\n",
      "shard_10473 loaded\n",
      "shard_27372 loaded\n",
      "shard_22694 loaded\n",
      "shard_425 loaded\n",
      "shard_33182 loaded\n",
      "shard_2436 loaded\n",
      "shard_27696 loaded\n",
      "shard_11996 loaded\n",
      "shard_31107 loaded\n",
      "shard_39579 loaded\n",
      "shard_47434 loaded\n",
      "shard_5128 loaded\n",
      "shard_34680 loaded\n",
      "shard_22005 loaded\n",
      "shard_21512 loaded\n",
      "shard_31070 loaded\n",
      "shard_9594 loaded\n",
      "shard_37947 loaded\n",
      "shard_45517 loaded\n",
      "shard_15350 loaded\n",
      "shard_8565 loaded\n",
      "shard_45373 loaded\n",
      "shard_7241 loaded\n",
      "shard_31682 loaded\n",
      "shard_18157 loaded\n",
      "shard_7088 loaded\n",
      "shard_34820 loaded\n",
      "shard_29295 loaded\n",
      "shard_15362 loaded\n",
      "shard_32286 loaded\n",
      "shard_37937 loaded\n",
      "shard_7689 loaded\n",
      "shard_13728 loaded\n",
      "shard_49375 loaded\n",
      "shard_5652 loaded\n",
      "shard_4576 loaded\n",
      "shard_7510 loaded\n",
      "shard_18709 loaded\n",
      "shard_36278 loaded\n",
      "shard_10207 loaded\n",
      "shard_1588 loaded\n",
      "shard_41421 loaded\n",
      "shard_1385 loaded\n",
      "shard_28885 loaded\n",
      "shard_46297 loaded\n",
      "shard_47240 loaded\n",
      "shard_34368 loaded\n",
      "shard_41562 loaded\n",
      "shard_22024 loaded\n",
      "shard_33219 loaded\n",
      "shard_20022 loaded\n",
      "shard_12643 loaded\n",
      "shard_36027 loaded\n",
      "shard_48889 loaded\n",
      "shard_21412 loaded\n",
      "shard_39716 loaded\n",
      "shard_3192 loaded\n",
      "shard_44513 loaded\n",
      "shard_26393 loaded\n",
      "shard_16419 loaded\n",
      "shard_18276 loaded\n",
      "shard_22028 loaded\n",
      "shard_14538 loaded\n",
      "shard_4713 loaded\n",
      "shard_459 loaded\n",
      "shard_7019 loaded\n",
      "shard_49115 loaded\n",
      "shard_23335 loaded\n",
      "shard_43026 loaded\n",
      "shard_30974 loaded\n",
      "shard_29424 loaded\n",
      "shard_47868 loaded\n",
      "shard_42715 loaded\n",
      "shard_34881 loaded\n",
      "shard_4811 loaded\n",
      "shard_39111 loaded\n",
      "shard_18216 loaded\n",
      "shard_38877 loaded\n",
      "shard_44567 loaded\n",
      "shard_625 loaded\n",
      "shard_12930 loaded\n",
      "shard_35122 loaded\n",
      "shard_12355 loaded\n",
      "shard_47031 loaded\n",
      "shard_22727 loaded\n",
      "shard_962 loaded\n",
      "shard_13645 loaded\n",
      "shard_47611 loaded\n",
      "shard_42938 loaded\n",
      "shard_5300 loaded\n",
      "shard_44862 loaded\n",
      "shard_47547 loaded\n",
      "shard_13790 loaded\n",
      "shard_12060 loaded\n",
      "shard_35513 loaded\n",
      "shard_18624 loaded\n",
      "shard_48201 loaded\n",
      "shard_39140 loaded\n",
      "shard_27671 loaded\n",
      "shard_41948 loaded\n",
      "shard_47291 loaded\n",
      "shard_12592 loaded\n",
      "shard_11014 loaded\n",
      "shard_29874 loaded\n",
      "shard_42822 loaded\n",
      "shard_39303 loaded\n",
      "shard_27690 loaded\n",
      "shard_27427 loaded\n",
      "shard_18975 loaded\n",
      "shard_6173 loaded\n",
      "shard_37085 loaded\n",
      "shard_25964 loaded\n",
      "shard_30085 loaded\n",
      "shard_35726 loaded\n",
      "shard_10236 loaded\n",
      "shard_11735 loaded\n",
      "shard_12732 loaded\n",
      "shard_36644 loaded\n",
      "shard_3135 loaded\n",
      "shard_43448 loaded\n",
      "shard_26801 loaded\n",
      "shard_1786 loaded\n",
      "shard_37217 loaded\n",
      "shard_5027 loaded\n",
      "shard_34000 loaded\n",
      "shard_5437 loaded\n",
      "shard_2068 loaded\n",
      "shard_40028 loaded\n",
      "shard_5017 loaded\n",
      "shard_31473 loaded\n",
      "shard_13495 loaded\n",
      "shard_26612 loaded\n",
      "shard_4885 loaded\n",
      "shard_39503 loaded\n",
      "shard_41511 loaded\n",
      "shard_32781 loaded\n",
      "shard_22263 loaded\n",
      "shard_8987 loaded\n",
      "shard_27056 loaded\n",
      "shard_45612 loaded\n",
      "shard_49107 loaded\n",
      "shard_33572 loaded\n",
      "shard_16863 loaded\n",
      "shard_49901 loaded\n",
      "shard_49827 loaded\n",
      "shard_35908 loaded\n",
      "shard_3570 loaded\n",
      "shard_20039 loaded\n",
      "shard_49 loaded\n",
      "shard_42498 loaded\n",
      "shard_16809 loaded\n",
      "shard_33253 loaded\n",
      "shard_18801 loaded\n",
      "shard_13614 loaded\n",
      "shard_13398 loaded\n",
      "shard_24006 loaded\n",
      "shard_44538 loaded\n",
      "shard_8724 loaded\n",
      "shard_20016 loaded\n",
      "shard_37543 loaded\n",
      "shard_31262 loaded\n",
      "shard_34936 loaded\n",
      "shard_17323 loaded\n",
      "shard_37702 loaded\n",
      "shard_27689 loaded\n",
      "shard_46818 loaded\n",
      "shard_33897 loaded\n",
      "shard_34132 loaded\n",
      "shard_19283 loaded\n",
      "shard_22668 loaded\n",
      "shard_24187 loaded\n",
      "shard_26300 loaded\n",
      "shard_45041 loaded\n",
      "shard_11171 loaded\n",
      "shard_37500 loaded\n",
      "shard_47723 loaded\n",
      "shard_48883 loaded\n",
      "shard_3024 loaded\n",
      "shard_1325 loaded\n",
      "shard_19791 loaded\n",
      "shard_18002 loaded\n",
      "shard_3703 loaded\n",
      "shard_25893 loaded\n",
      "shard_49211 loaded\n",
      "shard_43409 loaded\n",
      "shard_20383 loaded\n",
      "shard_663 loaded\n",
      "shard_32924 loaded\n",
      "shard_37796 loaded\n",
      "shard_16552 loaded\n",
      "shard_11608 loaded\n",
      "shard_43164 loaded\n",
      "shard_41064 loaded\n",
      "shard_28571 loaded\n",
      "shard_43758 loaded\n",
      "shard_23673 loaded\n",
      "shard_13173 loaded\n",
      "shard_4754 loaded\n",
      "shard_25005 loaded\n",
      "shard_22066 loaded\n",
      "shard_9846 loaded\n",
      "shard_28938 loaded\n",
      "shard_507 loaded\n",
      "shard_24818 loaded\n",
      "shard_21622 loaded\n",
      "shard_15409 loaded\n",
      "shard_40110 loaded\n",
      "shard_713 loaded\n",
      "shard_16131 loaded\n",
      "shard_21121 loaded\n",
      "shard_21933 loaded\n",
      "shard_26301 loaded\n",
      "shard_45108 loaded\n",
      "shard_3214 loaded\n",
      "shard_43986 loaded\n",
      "shard_45873 loaded\n",
      "shard_46561 loaded\n",
      "shard_30073 loaded\n",
      "shard_37354 loaded\n",
      "shard_4084 loaded\n",
      "shard_43922 loaded\n",
      "shard_27015 loaded\n",
      "shard_49634 loaded\n",
      "shard_40805 loaded\n",
      "shard_40201 loaded\n",
      "shard_1098 loaded\n",
      "shard_32198 loaded\n",
      "shard_16812 loaded\n",
      "shard_35499 loaded\n",
      "shard_24715 loaded\n",
      "shard_49599 loaded\n",
      "shard_49744 loaded\n",
      "shard_6455 loaded\n",
      "shard_39724 loaded\n",
      "shard_22755 loaded\n",
      "shard_38956 loaded\n",
      "shard_41236 loaded\n",
      "shard_30787 loaded\n",
      "shard_33279 loaded\n",
      "shard_4848 loaded\n",
      "shard_37349 loaded\n",
      "shard_6080 loaded\n",
      "shard_11025 loaded\n",
      "shard_40364 loaded\n",
      "shard_10829 loaded\n",
      "shard_22633 loaded\n",
      "shard_33203 loaded\n",
      "shard_43784 loaded\n",
      "shard_31605 loaded\n",
      "shard_21522 loaded\n",
      "shard_21187 loaded\n",
      "shard_18885 loaded\n",
      "shard_22322 loaded\n",
      "shard_40033 loaded\n",
      "shard_49183 loaded\n",
      "shard_46361 loaded\n",
      "shard_34658 loaded\n",
      "shard_37728 loaded\n",
      "shard_36639 loaded\n",
      "shard_13358 loaded\n",
      "shard_7840 loaded\n",
      "shard_3256 loaded\n",
      "shard_40300 loaded\n",
      "shard_1923 loaded\n",
      "shard_46160 loaded\n",
      "shard_4552 loaded\n",
      "shard_1045 loaded\n",
      "shard_25771 loaded\n",
      "shard_23120 loaded\n",
      "shard_37795 loaded\n",
      "shard_6520 loaded\n",
      "shard_24109 loaded\n",
      "shard_31583 loaded\n",
      "shard_3224 loaded\n",
      "shard_5637 loaded\n",
      "shard_43910 loaded\n",
      "shard_30077 loaded\n",
      "shard_34786 loaded\n",
      "shard_20831 loaded\n",
      "shard_29556 loaded\n",
      "shard_38888 loaded\n",
      "shard_7690 loaded\n",
      "shard_30298 loaded\n",
      "shard_24032 loaded\n",
      "shard_29566 loaded\n",
      "shard_44806 loaded\n",
      "shard_29780 loaded\n",
      "shard_3280 loaded\n",
      "shard_890 loaded\n",
      "shard_11132 loaded\n",
      "shard_8260 loaded\n",
      "shard_43297 loaded\n",
      "shard_39992 loaded\n",
      "shard_29027 loaded\n",
      "shard_12038 loaded\n",
      "shard_28883 loaded\n",
      "shard_25630 loaded\n",
      "shard_39663 loaded\n",
      "shard_43234 loaded\n",
      "shard_23520 loaded\n",
      "shard_49285 loaded\n",
      "shard_21038 loaded\n",
      "shard_36042 loaded\n",
      "shard_46275 loaded\n",
      "shard_22980 loaded\n",
      "shard_17683 loaded\n",
      "shard_26425 loaded\n",
      "shard_30726 loaded\n",
      "shard_35944 loaded\n",
      "shard_27835 loaded\n",
      "shard_6295 loaded\n",
      "shard_6669 loaded\n",
      "shard_38518 loaded\n",
      "shard_28816 loaded\n",
      "shard_21342 loaded\n",
      "shard_27857 loaded\n",
      "shard_16434 loaded\n",
      "shard_30940 loaded\n",
      "shard_13554 loaded\n",
      "shard_20693 loaded\n",
      "shard_2814 loaded\n",
      "shard_43005 loaded\n",
      "shard_33105 loaded\n",
      "shard_44153 loaded\n",
      "shard_32026 loaded\n",
      "shard_34992 loaded\n",
      "shard_29112 loaded\n",
      "shard_21971 loaded\n",
      "shard_44338 loaded\n",
      "shard_9952 loaded\n",
      "shard_29293 loaded\n",
      "shard_13296 loaded\n",
      "shard_32010 loaded\n",
      "shard_913 loaded\n",
      "shard_36422 loaded\n",
      "shard_46585 loaded\n",
      "shard_6960 loaded\n",
      "shard_16780 loaded\n",
      "shard_24015 loaded\n",
      "shard_21570 loaded\n",
      "shard_36818 loaded\n",
      "shard_6531 loaded\n",
      "shard_1592 loaded\n",
      "shard_743 loaded\n",
      "shard_27439 loaded\n",
      "shard_2024 loaded\n",
      "shard_27268 loaded\n",
      "shard_22135 loaded\n",
      "shard_31951 loaded\n",
      "shard_47076 loaded\n",
      "shard_2280 loaded\n",
      "shard_46800 loaded\n",
      "shard_34932 loaded\n",
      "shard_40889 loaded\n",
      "shard_19917 loaded\n",
      "shard_34102 loaded\n",
      "shard_7077 loaded\n",
      "shard_1446 loaded\n",
      "shard_8178 loaded\n",
      "shard_8048 loaded\n",
      "shard_30338 loaded\n",
      "shard_21805 loaded\n",
      "shard_34740 loaded\n",
      "shard_19567 loaded\n",
      "shard_35144 loaded\n",
      "shard_2236 loaded\n",
      "shard_30299 loaded\n",
      "shard_23463 loaded\n",
      "shard_29126 loaded\n",
      "shard_37307 loaded\n",
      "shard_34594 loaded\n",
      "shard_3937 loaded\n",
      "shard_10841 loaded\n",
      "shard_36028 loaded\n",
      "shard_40992 loaded\n",
      "shard_36144 loaded\n",
      "shard_15861 loaded\n",
      "shard_7437 loaded\n",
      "shard_34110 loaded\n",
      "shard_8166 loaded\n",
      "shard_18169 loaded\n",
      "shard_22605 loaded\n",
      "shard_46687 loaded\n",
      "shard_46970 loaded\n",
      "shard_28012 loaded\n",
      "shard_11730 loaded\n",
      "shard_10895 loaded\n",
      "shard_49472 loaded\n",
      "shard_44884 loaded\n",
      "shard_6965 loaded\n",
      "shard_45754 loaded\n",
      "shard_20478 loaded\n",
      "shard_1388 loaded\n",
      "shard_3630 loaded\n",
      "shard_9503 loaded\n",
      "shard_7593 loaded\n",
      "shard_36199 loaded\n",
      "shard_41149 loaded\n",
      "shard_694 loaded\n",
      "shard_32968 loaded\n",
      "shard_20200 loaded\n",
      "shard_47479 loaded\n",
      "shard_20771 loaded\n",
      "shard_33840 loaded\n",
      "shard_14136 loaded\n",
      "shard_26620 loaded\n",
      "shard_38664 loaded\n",
      "shard_37153 loaded\n",
      "shard_6526 loaded\n",
      "shard_32861 loaded\n",
      "shard_21489 loaded\n",
      "shard_11453 loaded\n",
      "shard_48132 loaded\n",
      "shard_49367 loaded\n",
      "shard_12229 loaded\n",
      "shard_35410 loaded\n",
      "shard_12772 loaded\n",
      "shard_36854 loaded\n",
      "shard_1723 loaded\n",
      "shard_45521 loaded\n",
      "shard_29868 loaded\n",
      "shard_37027 loaded\n",
      "shard_37410 loaded\n",
      "shard_14427 loaded\n",
      "shard_17636 loaded\n",
      "shard_9843 loaded\n",
      "shard_27384 loaded\n",
      "shard_30651 loaded\n",
      "shard_3335 loaded\n",
      "shard_19350 loaded\n",
      "shard_30088 loaded\n",
      "shard_41888 loaded\n",
      "shard_915 loaded\n",
      "shard_13814 loaded\n",
      "shard_31511 loaded\n",
      "shard_7207 loaded\n",
      "shard_36923 loaded\n",
      "shard_17303 loaded\n",
      "shard_30674 loaded\n",
      "shard_24309 loaded\n",
      "shard_20076 loaded\n",
      "shard_935 loaded\n",
      "shard_21960 loaded\n",
      "shard_18890 loaded\n",
      "shard_17415 loaded\n",
      "shard_25103 loaded\n",
      "shard_30180 loaded\n",
      "shard_27736 loaded\n",
      "shard_12328 loaded\n",
      "shard_27553 loaded\n",
      "shard_12090 loaded\n",
      "shard_8535 loaded\n",
      "shard_13940 loaded\n",
      "shard_23292 loaded\n",
      "shard_47862 loaded\n",
      "shard_24011 loaded\n",
      "shard_10859 loaded\n",
      "shard_24288 loaded\n",
      "shard_34487 loaded\n",
      "shard_47178 loaded\n",
      "shard_48730 loaded\n",
      "shard_20590 loaded\n",
      "shard_38781 loaded\n",
      "shard_22363 loaded\n",
      "shard_6166 loaded\n",
      "shard_11913 loaded\n",
      "shard_17981 loaded\n",
      "shard_14515 loaded\n",
      "shard_47791 loaded\n",
      "shard_47501 loaded\n",
      "shard_1280 loaded\n",
      "shard_13439 loaded\n",
      "shard_22620 loaded\n",
      "shard_49288 loaded\n",
      "shard_21567 loaded\n",
      "shard_17299 loaded\n",
      "shard_40209 loaded\n",
      "shard_46952 loaded\n",
      "shard_5526 loaded\n",
      "shard_15485 loaded\n",
      "shard_49992 loaded\n",
      "shard_28911 loaded\n",
      "shard_9718 loaded\n",
      "shard_5389 loaded\n",
      "shard_8376 loaded\n",
      "shard_46339 loaded\n",
      "shard_49678 loaded\n",
      "shard_30094 loaded\n",
      "shard_26181 loaded\n",
      "shard_382 loaded\n",
      "shard_6814 loaded\n",
      "shard_38699 loaded\n",
      "shard_44950 loaded\n",
      "shard_30880 loaded\n",
      "shard_17803 loaded\n",
      "shard_26254 loaded\n",
      "shard_37222 loaded\n",
      "shard_35206 loaded\n",
      "shard_40072 loaded\n",
      "shard_11404 loaded\n",
      "shard_11130 loaded\n",
      "shard_43040 loaded\n",
      "shard_42814 loaded\n",
      "shard_47684 loaded\n",
      "shard_33361 loaded\n",
      "shard_32424 loaded\n",
      "shard_24423 loaded\n",
      "shard_47762 loaded\n",
      "shard_43647 loaded\n",
      "shard_29276 loaded\n",
      "shard_29249 loaded\n",
      "shard_23924 loaded\n",
      "shard_32730 loaded\n",
      "shard_3392 loaded\n",
      "shard_42347 loaded\n",
      "shard_8827 loaded\n",
      "shard_27999 loaded\n",
      "shard_10420 loaded\n",
      "shard_11183 loaded\n",
      "shard_44357 loaded\n",
      "shard_1327 loaded\n",
      "shard_17360 loaded\n",
      "shard_2800 loaded\n",
      "shard_5097 loaded\n",
      "shard_44429 loaded\n",
      "shard_4105 loaded\n",
      "shard_32970 loaded\n",
      "shard_31733 loaded\n",
      "shard_48336 loaded\n",
      "shard_8389 loaded\n",
      "shard_30463 loaded\n",
      "shard_19217 loaded\n",
      "shard_42816 loaded\n",
      "shard_26967 loaded\n",
      "shard_38533 loaded\n",
      "shard_885 loaded\n",
      "shard_41423 loaded\n",
      "shard_34331 loaded\n",
      "shard_45193 loaded\n",
      "shard_15367 loaded\n",
      "shard_21710 loaded\n",
      "shard_42660 loaded\n",
      "shard_26359 loaded\n",
      "shard_5217 loaded\n",
      "shard_40218 loaded\n",
      "shard_10328 loaded\n",
      "shard_34217 loaded\n",
      "shard_37909 loaded\n",
      "shard_26324 loaded\n",
      "shard_12427 loaded\n",
      "shard_8582 loaded\n",
      "shard_40350 loaded\n",
      "shard_26409 loaded\n",
      "shard_5352 loaded\n",
      "shard_37636 loaded\n",
      "shard_10235 loaded\n",
      "shard_40657 loaded\n",
      "shard_14794 loaded\n",
      "shard_38136 loaded\n",
      "shard_49695 loaded\n",
      "shard_49499 loaded\n",
      "shard_16731 loaded\n",
      "shard_15248 loaded\n",
      "shard_37260 loaded\n",
      "shard_14844 loaded\n",
      "shard_39793 loaded\n",
      "shard_36796 loaded\n",
      "shard_29743 loaded\n",
      "shard_2878 loaded\n",
      "shard_27173 loaded\n",
      "shard_4373 loaded\n",
      "shard_26560 loaded\n",
      "shard_8047 loaded\n",
      "shard_37136 loaded\n",
      "shard_47064 loaded\n",
      "shard_26634 loaded\n",
      "shard_7540 loaded\n",
      "shard_37764 loaded\n",
      "shard_5873 loaded\n",
      "shard_7481 loaded\n",
      "shard_28868 loaded\n",
      "shard_49787 loaded\n",
      "shard_27624 loaded\n",
      "shard_1866 loaded\n",
      "shard_14524 loaded\n",
      "shard_13470 loaded\n",
      "shard_42785 loaded\n",
      "shard_7844 loaded\n",
      "shard_11654 loaded\n",
      "shard_34981 loaded\n",
      "shard_47866 loaded\n",
      "shard_42962 loaded\n",
      "shard_45247 loaded\n",
      "shard_43765 loaded\n",
      "shard_1013 loaded\n",
      "shard_12692 loaded\n",
      "shard_33510 loaded\n",
      "shard_13588 loaded\n",
      "shard_33859 loaded\n",
      "shard_1899 loaded\n",
      "shard_1212 loaded\n",
      "shard_23160 loaded\n",
      "shard_30491 loaded\n",
      "shard_2806 loaded\n",
      "shard_8793 loaded\n",
      "shard_6548 loaded\n",
      "shard_39250 loaded\n",
      "shard_470 loaded\n",
      "shard_48612 loaded\n",
      "shard_11482 loaded\n",
      "shard_3084 loaded\n",
      "shard_9641 loaded\n",
      "shard_36810 loaded\n",
      "shard_32394 loaded\n",
      "shard_30316 loaded\n",
      "shard_12801 loaded\n",
      "shard_29391 loaded\n",
      "shard_33827 loaded\n",
      "shard_17328 loaded\n",
      "shard_27723 loaded\n",
      "shard_41104 loaded\n",
      "shard_10646 loaded\n",
      "shard_21207 loaded\n",
      "shard_19102 loaded\n",
      "shard_37457 loaded\n",
      "shard_48683 loaded\n",
      "shard_2643 loaded\n",
      "shard_28553 loaded\n",
      "shard_13016 loaded\n",
      "shard_29608 loaded\n",
      "shard_23458 loaded\n",
      "shard_11226 loaded\n",
      "shard_13700 loaded\n",
      "shard_7004 loaded\n",
      "shard_1158 loaded\n",
      "shard_4532 loaded\n",
      "shard_3035 loaded\n",
      "shard_6297 loaded\n",
      "shard_26258 loaded\n",
      "shard_2891 loaded\n",
      "shard_15014 loaded\n",
      "shard_1883 loaded\n",
      "shard_15993 loaded\n",
      "shard_42624 loaded\n",
      "shard_25546 loaded\n",
      "shard_22815 loaded\n",
      "shard_37680 loaded\n",
      "shard_22995 loaded\n",
      "shard_12196 loaded\n",
      "shard_1625 loaded\n",
      "shard_15650 loaded\n",
      "shard_5647 loaded\n",
      "shard_13467 loaded\n",
      "shard_5734 loaded\n",
      "shard_1048 loaded\n",
      "shard_33208 loaded\n",
      "shard_31508 loaded\n",
      "shard_24997 loaded\n",
      "shard_19328 loaded\n",
      "shard_4846 loaded\n",
      "shard_1470 loaded\n",
      "shard_46309 loaded\n",
      "shard_15325 loaded\n",
      "shard_7467 loaded\n",
      "shard_12352 loaded\n",
      "shard_34690 loaded\n",
      "shard_7815 loaded\n",
      "shard_34171 loaded\n",
      "shard_5343 loaded\n",
      "shard_19321 loaded\n",
      "shard_23523 loaded\n",
      "shard_18435 loaded\n",
      "shard_15461 loaded\n",
      "shard_1180 loaded\n",
      "shard_31671 loaded\n",
      "shard_40018 loaded\n",
      "shard_20337 loaded\n",
      "shard_30265 loaded\n",
      "shard_14353 loaded\n",
      "shard_24630 loaded\n",
      "shard_44643 loaded\n",
      "shard_47968 loaded\n",
      "shard_43230 loaded\n",
      "shard_29972 loaded\n",
      "shard_22390 loaded\n",
      "shard_33792 loaded\n",
      "shard_6967 loaded\n",
      "shard_23553 loaded\n",
      "shard_40246 loaded\n",
      "shard_13607 loaded\n",
      "shard_25031 loaded\n",
      "shard_44256 loaded\n",
      "shard_13091 loaded\n",
      "shard_24164 loaded\n",
      "shard_41864 loaded\n",
      "shard_21272 loaded\n",
      "shard_35222 loaded\n",
      "shard_46540 loaded\n",
      "shard_7929 loaded\n",
      "shard_46647 loaded\n",
      "shard_45385 loaded\n",
      "shard_43051 loaded\n",
      "shard_25092 loaded\n",
      "shard_48487 loaded\n",
      "shard_2786 loaded\n",
      "shard_47505 loaded\n",
      "shard_5565 loaded\n",
      "shard_11901 loaded\n",
      "shard_38388 loaded\n",
      "shard_12966 loaded\n",
      "shard_18238 loaded\n",
      "shard_32339 loaded\n",
      "shard_30675 loaded\n",
      "shard_28626 loaded\n",
      "shard_34245 loaded\n",
      "shard_4425 loaded\n",
      "shard_47419 loaded\n",
      "shard_23280 loaded\n",
      "shard_4531 loaded\n",
      "shard_8720 loaded\n",
      "shard_34447 loaded\n",
      "shard_20078 loaded\n",
      "shard_49469 loaded\n",
      "shard_15818 loaded\n",
      "shard_18840 loaded\n",
      "shard_35656 loaded\n",
      "shard_23704 loaded\n",
      "shard_19949 loaded\n",
      "shard_42317 loaded\n",
      "shard_16280 loaded\n",
      "shard_17261 loaded\n",
      "shard_17363 loaded\n",
      "shard_1613 loaded\n",
      "shard_32327 loaded\n",
      "shard_5984 loaded\n",
      "shard_20074 loaded\n",
      "shard_9997 loaded\n",
      "shard_32476 loaded\n",
      "shard_24917 loaded\n",
      "shard_47016 loaded\n",
      "shard_13759 loaded\n",
      "shard_17481 loaded\n",
      "shard_40395 loaded\n",
      "shard_23742 loaded\n",
      "shard_12541 loaded\n",
      "shard_26922 loaded\n",
      "shard_14555 loaded\n",
      "shard_10247 loaded\n",
      "shard_37413 loaded\n",
      "shard_32144 loaded\n",
      "shard_44416 loaded\n",
      "shard_27089 loaded\n",
      "shard_12731 loaded\n",
      "shard_38691 loaded\n",
      "shard_35287 loaded\n",
      "shard_6199 loaded\n",
      "shard_21973 loaded\n",
      "shard_18043 loaded\n",
      "shard_201 loaded\n",
      "shard_19375 loaded\n",
      "shard_29655 loaded\n",
      "shard_39705 loaded\n",
      "shard_1461 loaded\n",
      "shard_13651 loaded\n",
      "shard_37353 loaded\n",
      "shard_45620 loaded\n",
      "shard_17983 loaded\n",
      "shard_751 loaded\n",
      "shard_31310 loaded\n",
      "shard_48383 loaded\n",
      "shard_48120 loaded\n",
      "shard_25384 loaded\n",
      "shard_11954 loaded\n",
      "shard_10157 loaded\n",
      "shard_8545 loaded\n",
      "shard_46137 loaded\n",
      "shard_14822 loaded\n",
      "shard_7276 loaded\n",
      "shard_36398 loaded\n",
      "shard_11403 loaded\n",
      "shard_20919 loaded\n",
      "shard_9338 loaded\n",
      "shard_4343 loaded\n",
      "shard_24957 loaded\n",
      "shard_27972 loaded\n",
      "shard_44130 loaded\n",
      "shard_10671 loaded\n",
      "shard_38884 loaded\n",
      "shard_39365 loaded\n",
      "shard_41039 loaded\n",
      "shard_44482 loaded\n",
      "shard_487 loaded\n",
      "shard_32002 loaded\n",
      "shard_6595 loaded\n",
      "shard_22646 loaded\n",
      "shard_39620 loaded\n",
      "shard_6554 loaded\n",
      "shard_39014 loaded\n",
      "shard_29043 loaded\n",
      "shard_34499 loaded\n",
      "shard_14010 loaded\n",
      "shard_38129 loaded\n",
      "shard_42405 loaded\n",
      "shard_44542 loaded\n",
      "shard_18702 loaded\n",
      "shard_14612 loaded\n",
      "shard_34311 loaded\n",
      "shard_8823 loaded\n",
      "shard_46485 loaded\n",
      "shard_8065 loaded\n",
      "shard_9110 loaded\n",
      "shard_16860 loaded\n",
      "shard_23465 loaded\n",
      "shard_13891 loaded\n",
      "shard_10883 loaded\n",
      "shard_21877 loaded\n",
      "shard_11559 loaded\n",
      "shard_18513 loaded\n",
      "shard_22489 loaded\n",
      "shard_48040 loaded\n",
      "shard_33008 loaded\n",
      "shard_47265 loaded\n",
      "shard_2139 loaded\n",
      "shard_11249 loaded\n",
      "shard_21605 loaded\n",
      "shard_37165 loaded\n",
      "shard_5654 loaded\n",
      "shard_14573 loaded\n",
      "shard_43338 loaded\n",
      "shard_43398 loaded\n",
      "shard_636 loaded\n",
      "shard_26117 loaded\n",
      "shard_31450 loaded\n",
      "shard_13585 loaded\n",
      "shard_32841 loaded\n",
      "shard_32644 loaded\n",
      "shard_14597 loaded\n",
      "shard_31143 loaded\n",
      "shard_31460 loaded\n",
      "shard_46548 loaded\n",
      "shard_19429 loaded\n",
      "shard_5405 loaded\n",
      "shard_46258 loaded\n",
      "shard_7463 loaded\n",
      "shard_42986 loaded\n",
      "shard_23484 loaded\n",
      "shard_5197 loaded\n",
      "shard_544 loaded\n",
      "shard_38573 loaded\n",
      "shard_16344 loaded\n",
      "shard_15083 loaded\n",
      "shard_48086 loaded\n",
      "shard_46824 loaded\n",
      "shard_30852 loaded\n",
      "shard_10262 loaded\n",
      "shard_28787 loaded\n",
      "shard_13580 loaded\n",
      "shard_40770 loaded\n",
      "shard_37868 loaded\n",
      "shard_36476 loaded\n",
      "shard_1379 loaded\n",
      "shard_23020 loaded\n",
      "shard_22878 loaded\n",
      "shard_16725 loaded\n",
      "shard_37046 loaded\n",
      "shard_8818 loaded\n",
      "shard_34532 loaded\n",
      "shard_44723 loaded\n",
      "shard_6128 loaded\n",
      "shard_45294 loaded\n",
      "shard_38042 loaded\n",
      "shard_31725 loaded\n",
      "shard_7247 loaded\n",
      "shard_36498 loaded\n",
      "shard_30964 loaded\n",
      "shard_19016 loaded\n",
      "shard_2260 loaded\n",
      "shard_39953 loaded\n",
      "shard_9888 loaded\n",
      "shard_36432 loaded\n",
      "shard_25343 loaded\n",
      "shard_47284 loaded\n",
      "shard_45381 loaded\n",
      "shard_49807 loaded\n",
      "shard_46896 loaded\n",
      "shard_8751 loaded\n",
      "shard_15086 loaded\n",
      "shard_48056 loaded\n",
      "shard_20171 loaded\n",
      "shard_47141 loaded\n",
      "shard_1972 loaded\n",
      "shard_19746 loaded\n",
      "shard_46326 loaded\n",
      "shard_35637 loaded\n",
      "shard_27514 loaded\n",
      "shard_46575 loaded\n",
      "shard_33851 loaded\n",
      "shard_12877 loaded\n",
      "shard_31034 loaded\n",
      "shard_30150 loaded\n",
      "shard_28763 loaded\n",
      "shard_27189 loaded\n",
      "shard_41663 loaded\n",
      "shard_49963 loaded\n",
      "shard_31684 loaded\n",
      "shard_38957 loaded\n",
      "shard_12999 loaded\n",
      "shard_16365 loaded\n",
      "shard_34302 loaded\n",
      "shard_47390 loaded\n",
      "shard_41612 loaded\n",
      "shard_9080 loaded\n",
      "shard_22318 loaded\n",
      "shard_6447 loaded\n",
      "shard_30855 loaded\n",
      "shard_12937 loaded\n",
      "shard_38681 loaded\n",
      "shard_28178 loaded\n",
      "shard_40535 loaded\n",
      "shard_17811 loaded\n",
      "shard_42794 loaded\n",
      "shard_40416 loaded\n",
      "shard_8344 loaded\n",
      "shard_31410 loaded\n",
      "shard_19212 loaded\n",
      "shard_31457 loaded\n",
      "shard_36750 loaded\n",
      "shard_48057 loaded\n",
      "shard_31078 loaded\n",
      "shard_32984 loaded\n",
      "shard_46893 loaded\n",
      "shard_20969 loaded\n",
      "shard_13229 loaded\n",
      "shard_44879 loaded\n",
      "shard_20784 loaded\n",
      "shard_36629 loaded\n",
      "shard_45191 loaded\n",
      "shard_23495 loaded\n",
      "shard_3144 loaded\n",
      "shard_11093 loaded\n",
      "shard_30768 loaded\n",
      "shard_12518 loaded\n",
      "shard_1319 loaded\n",
      "shard_9409 loaded\n",
      "shard_19698 loaded\n",
      "shard_46681 loaded\n",
      "shard_41243 loaded\n",
      "shard_32080 loaded\n",
      "shard_1071 loaded\n",
      "shard_45450 loaded\n",
      "shard_42800 loaded\n",
      "shard_34689 loaded\n",
      "shard_18304 loaded\n",
      "shard_16601 loaded\n",
      "shard_5377 loaded\n",
      "shard_10971 loaded\n",
      "shard_3028 loaded\n",
      "shard_10529 loaded\n",
      "shard_31334 loaded\n",
      "shard_28811 loaded\n",
      "shard_26502 loaded\n",
      "shard_18019 loaded\n",
      "shard_4248 loaded\n",
      "shard_15938 loaded\n",
      "shard_24125 loaded\n",
      "shard_27215 loaded\n",
      "shard_31928 loaded\n",
      "shard_2040 loaded\n",
      "shard_44067 loaded\n",
      "shard_11422 loaded\n",
      "shard_18734 loaded\n",
      "shard_38801 loaded\n",
      "shard_31295 loaded\n",
      "shard_49430 loaded\n",
      "shard_28525 loaded\n",
      "shard_49236 loaded\n",
      "shard_31578 loaded\n",
      "shard_2528 loaded\n",
      "shard_21065 loaded\n",
      "shard_19974 loaded\n",
      "shard_32079 loaded\n",
      "shard_41725 loaded\n",
      "shard_21385 loaded\n",
      "shard_40602 loaded\n",
      "shard_40240 loaded\n",
      "shard_15610 loaded\n",
      "shard_17236 loaded\n",
      "shard_11487 loaded\n",
      "shard_47951 loaded\n",
      "shard_20937 loaded\n",
      "shard_44131 loaded\n",
      "shard_21331 loaded\n",
      "shard_23936 loaded\n",
      "shard_1741 loaded\n",
      "shard_3682 loaded\n",
      "shard_39384 loaded\n",
      "shard_13976 loaded\n",
      "shard_47407 loaded\n",
      "shard_34549 loaded\n",
      "shard_48273 loaded\n",
      "shard_43262 loaded\n",
      "shard_26110 loaded\n",
      "shard_46325 loaded\n",
      "shard_27632 loaded\n",
      "shard_31590 loaded\n",
      "shard_34307 loaded\n",
      "shard_45662 loaded\n",
      "shard_27648 loaded\n",
      "shard_38469 loaded\n",
      "shard_28675 loaded\n",
      "shard_21295 loaded\n",
      "shard_45708 loaded\n",
      "shard_45102 loaded\n",
      "shard_23666 loaded\n",
      "shard_26361 loaded\n",
      "shard_48431 loaded\n",
      "shard_4116 loaded\n",
      "shard_49460 loaded\n",
      "shard_44799 loaded\n",
      "shard_18619 loaded\n",
      "shard_23944 loaded\n",
      "shard_2747 loaded\n",
      "shard_4528 loaded\n",
      "shard_15015 loaded\n",
      "shard_6796 loaded\n",
      "shard_20639 loaded\n",
      "shard_3080 loaded\n",
      "shard_3836 loaded\n",
      "shard_37474 loaded\n",
      "shard_11162 loaded\n",
      "shard_16000 loaded\n",
      "shard_38216 loaded\n",
      "shard_24080 loaded\n",
      "shard_31815 loaded\n",
      "shard_2275 loaded\n",
      "shard_3420 loaded\n",
      "shard_42100 loaded\n",
      "shard_12493 loaded\n",
      "shard_6555 loaded\n",
      "shard_30446 loaded\n",
      "shard_10495 loaded\n",
      "shard_33022 loaded\n",
      "shard_10098 loaded\n",
      "shard_1882 loaded\n",
      "shard_49090 loaded\n",
      "shard_4224 loaded\n",
      "shard_40966 loaded\n",
      "shard_13975 loaded\n",
      "shard_34811 loaded\n",
      "shard_21713 loaded\n",
      "shard_5366 loaded\n",
      "shard_30465 loaded\n",
      "shard_32255 loaded\n",
      "shard_23692 loaded\n",
      "shard_20501 loaded\n",
      "shard_11600 loaded\n",
      "shard_33276 loaded\n",
      "shard_43452 loaded\n",
      "shard_15840 loaded\n",
      "shard_42735 loaded\n",
      "shard_19828 loaded\n",
      "shard_31795 loaded\n",
      "shard_37823 loaded\n",
      "shard_17451 loaded\n",
      "shard_18359 loaded\n",
      "shard_42211 loaded\n",
      "shard_33892 loaded\n",
      "shard_17991 loaded\n",
      "shard_49414 loaded\n",
      "shard_21106 loaded\n",
      "shard_7022 loaded\n",
      "shard_9428 loaded\n",
      "shard_46189 loaded\n",
      "shard_4090 loaded\n",
      "shard_8548 loaded\n",
      "shard_25724 loaded\n",
      "shard_43377 loaded\n",
      "shard_5952 loaded\n",
      "shard_44954 loaded\n",
      "shard_8923 loaded\n",
      "shard_5966 loaded\n",
      "shard_24306 loaded\n",
      "shard_19578 loaded\n",
      "shard_5805 loaded\n",
      "shard_47066 loaded\n",
      "shard_39942 loaded\n",
      "shard_6740 loaded\n",
      "shard_32495 loaded\n",
      "shard_19338 loaded\n",
      "shard_46705 loaded\n",
      "shard_22566 loaded\n",
      "shard_25628 loaded\n",
      "shard_39823 loaded\n",
      "shard_23702 loaded\n",
      "shard_8745 loaded\n",
      "shard_43445 loaded\n",
      "shard_46434 loaded\n",
      "shard_32373 loaded\n",
      "shard_5181 loaded\n",
      "shard_28643 loaded\n",
      "shard_31265 loaded\n",
      "shard_30885 loaded\n",
      "shard_6353 loaded\n",
      "shard_32466 loaded\n",
      "shard_18319 loaded\n",
      "shard_29864 loaded\n",
      "shard_22365 loaded\n",
      "shard_45187 loaded\n",
      "shard_38635 loaded\n",
      "shard_24009 loaded\n",
      "shard_3507 loaded\n",
      "shard_7647 loaded\n",
      "shard_11920 loaded\n",
      "shard_39177 loaded\n",
      "shard_32243 loaded\n",
      "shard_38420 loaded\n",
      "shard_29747 loaded\n",
      "shard_37833 loaded\n",
      "shard_41254 loaded\n",
      "shard_5636 loaded\n",
      "shard_11230 loaded\n",
      "shard_17868 loaded\n",
      "shard_24606 loaded\n",
      "shard_46463 loaded\n",
      "shard_1268 loaded\n",
      "shard_34955 loaded\n",
      "shard_22987 loaded\n",
      "shard_46196 loaded\n",
      "shard_43271 loaded\n",
      "shard_15976 loaded\n",
      "shard_4883 loaded\n",
      "shard_34244 loaded\n",
      "shard_18381 loaded\n",
      "shard_39312 loaded\n",
      "shard_30935 loaded\n",
      "shard_25327 loaded\n",
      "shard_9504 loaded\n",
      "shard_34783 loaded\n",
      "shard_39395 loaded\n",
      "shard_41110 loaded\n",
      "shard_40855 loaded\n",
      "shard_47829 loaded\n",
      "shard_48533 loaded\n",
      "shard_4844 loaded\n",
      "shard_3915 loaded\n",
      "shard_26735 loaded\n",
      "shard_39991 loaded\n",
      "shard_34016 loaded\n",
      "shard_10200 loaded\n",
      "shard_26773 loaded\n",
      "shard_10230 loaded\n",
      "shard_3957 loaded\n",
      "shard_36247 loaded\n",
      "shard_985 loaded\n",
      "shard_179 loaded\n",
      "shard_31146 loaded\n",
      "shard_43969 loaded\n",
      "shard_42092 loaded\n",
      "shard_8021 loaded\n",
      "shard_29543 loaded\n",
      "shard_2452 loaded\n",
      "shard_10052 loaded\n",
      "shard_33417 loaded\n",
      "shard_34768 loaded\n",
      "shard_30560 loaded\n",
      "shard_1744 loaded\n",
      "shard_7073 loaded\n",
      "shard_6705 loaded\n",
      "shard_24292 loaded\n",
      "shard_24048 loaded\n",
      "shard_45456 loaded\n",
      "shard_42590 loaded\n",
      "shard_35245 loaded\n",
      "shard_1948 loaded\n",
      "shard_18740 loaded\n",
      "shard_22388 loaded\n",
      "shard_25164 loaded\n",
      "shard_35048 loaded\n",
      "shard_14069 loaded\n",
      "shard_31352 loaded\n",
      "shard_23271 loaded\n",
      "shard_14784 loaded\n",
      "shard_18942 loaded\n",
      "shard_8288 loaded\n",
      "shard_35358 loaded\n",
      "shard_8894 loaded\n",
      "shard_28617 loaded\n",
      "shard_17999 loaded\n",
      "shard_33065 loaded\n",
      "shard_46318 loaded\n",
      "shard_19579 loaded\n",
      "shard_27346 loaded\n",
      "shard_40814 loaded\n",
      "shard_14809 loaded\n",
      "shard_12326 loaded\n",
      "shard_45448 loaded\n",
      "shard_21975 loaded\n",
      "shard_49557 loaded\n",
      "shard_45714 loaded\n",
      "shard_27805 loaded\n",
      "shard_27225 loaded\n",
      "shard_18671 loaded\n",
      "shard_11138 loaded\n",
      "shard_30692 loaded\n",
      "shard_13463 loaded\n",
      "shard_48897 loaded\n",
      "shard_38166 loaded\n",
      "shard_33316 loaded\n",
      "shard_20471 loaded\n",
      "shard_11109 loaded\n",
      "shard_47693 loaded\n",
      "shard_42400 loaded\n",
      "shard_45408 loaded\n",
      "shard_18145 loaded\n",
      "shard_20364 loaded\n",
      "shard_39361 loaded\n",
      "shard_43862 loaded\n",
      "shard_46345 loaded\n",
      "shard_26558 loaded\n",
      "shard_44798 loaded\n",
      "shard_26700 loaded\n",
      "shard_2366 loaded\n",
      "shard_6307 loaded\n",
      "shard_19891 loaded\n",
      "shard_2319 loaded\n",
      "shard_26813 loaded\n",
      "shard_14799 loaded\n",
      "shard_24035 loaded\n",
      "shard_37389 loaded\n",
      "shard_49609 loaded\n",
      "shard_49346 loaded\n",
      "shard_44725 loaded\n",
      "shard_19876 loaded\n",
      "shard_35102 loaded\n",
      "shard_35097 loaded\n",
      "shard_31321 loaded\n",
      "shard_49150 loaded\n",
      "shard_13993 loaded\n",
      "shard_1090 loaded\n",
      "shard_46384 loaded\n",
      "shard_17196 loaded\n",
      "shard_5811 loaded\n",
      "shard_3195 loaded\n",
      "shard_35037 loaded\n",
      "shard_39640 loaded\n",
      "shard_36005 loaded\n",
      "shard_15392 loaded\n",
      "shard_21661 loaded\n",
      "shard_29246 loaded\n",
      "shard_2547 loaded\n",
      "shard_39660 loaded\n",
      "shard_19913 loaded\n",
      "shard_40222 loaded\n",
      "shard_28951 loaded\n",
      "shard_43205 loaded\n",
      "shard_37851 loaded\n",
      "shard_25949 loaded\n",
      "shard_28446 loaded\n",
      "shard_958 loaded\n",
      "shard_34212 loaded\n",
      "shard_9950 loaded\n",
      "shard_8102 loaded\n",
      "shard_17980 loaded\n",
      "shard_12899 loaded\n",
      "shard_33499 loaded\n",
      "shard_33893 loaded\n",
      "shard_5991 loaded\n",
      "shard_46357 loaded\n",
      "shard_47426 loaded\n",
      "shard_30175 loaded\n",
      "shard_6811 loaded\n",
      "shard_36350 loaded\n",
      "shard_38951 loaded\n",
      "shard_16173 loaded\n",
      "shard_11565 loaded\n",
      "shard_8512 loaded\n",
      "shard_10669 loaded\n",
      "shard_35900 loaded\n",
      "shard_1963 loaded\n",
      "shard_42619 loaded\n",
      "shard_41192 loaded\n",
      "shard_12070 loaded\n",
      "shard_29683 loaded\n",
      "shard_25052 loaded\n",
      "shard_32452 loaded\n",
      "shard_38051 loaded\n",
      "shard_28980 loaded\n",
      "shard_39688 loaded\n",
      "shard_3352 loaded\n",
      "shard_5766 loaded\n",
      "shard_21260 loaded\n",
      "shard_554 loaded\n",
      "shard_44871 loaded\n",
      "shard_16716 loaded\n",
      "shard_4943 loaded\n",
      "shard_22996 loaded\n",
      "shard_28719 loaded\n",
      "shard_1922 loaded\n",
      "shard_49736 loaded\n",
      "shard_13266 loaded\n",
      "shard_31939 loaded\n",
      "shard_33450 loaded\n",
      "shard_14020 loaded\n",
      "shard_44 loaded\n",
      "shard_8163 loaded\n",
      "shard_14735 loaded\n",
      "shard_28018 loaded\n",
      "shard_16821 loaded\n",
      "shard_31545 loaded\n",
      "shard_30186 loaded\n",
      "shard_36275 loaded\n",
      "shard_3660 loaded\n",
      "shard_1543 loaded\n",
      "shard_9624 loaded\n",
      "shard_7089 loaded\n",
      "shard_21211 loaded\n",
      "shard_48580 loaded\n",
      "shard_39501 loaded\n",
      "shard_37935 loaded\n",
      "shard_43872 loaded\n",
      "shard_36300 loaded\n",
      "shard_9621 loaded\n",
      "shard_14820 loaded\n",
      "shard_23791 loaded\n",
      "shard_25393 loaded\n",
      "shard_18990 loaded\n",
      "shard_46257 loaded\n",
      "shard_32169 loaded\n",
      "shard_27432 loaded\n",
      "shard_14601 loaded\n",
      "shard_45949 loaded\n",
      "shard_26150 loaded\n",
      "shard_23207 loaded\n",
      "shard_4398 loaded\n",
      "shard_15746 loaded\n",
      "shard_30208 loaded\n",
      "shard_30806 loaded\n",
      "shard_40838 loaded\n",
      "shard_40010 loaded\n",
      "shard_35226 loaded\n",
      "shard_2098 loaded\n",
      "shard_10825 loaded\n",
      "shard_9702 loaded\n",
      "shard_46424 loaded\n",
      "shard_30865 loaded\n",
      "shard_44492 loaded\n",
      "shard_6537 loaded\n",
      "shard_2421 loaded\n",
      "shard_46935 loaded\n",
      "shard_729 loaded\n",
      "shard_29670 loaded\n",
      "shard_21519 loaded\n",
      "shard_31670 loaded\n",
      "shard_18249 loaded\n",
      "shard_15635 loaded\n",
      "shard_34420 loaded\n",
      "shard_27242 loaded\n",
      "shard_5281 loaded\n",
      "shard_27177 loaded\n",
      "shard_25720 loaded\n",
      "shard_28780 loaded\n",
      "shard_6272 loaded\n",
      "shard_40203 loaded\n",
      "shard_11500 loaded\n",
      "shard_27856 loaded\n",
      "shard_46457 loaded\n",
      "shard_25669 loaded\n",
      "shard_20059 loaded\n",
      "shard_40090 loaded\n",
      "shard_6999 loaded\n",
      "shard_42078 loaded\n",
      "shard_10545 loaded\n",
      "shard_34319 loaded\n",
      "shard_20457 loaded\n",
      "shard_17797 loaded\n",
      "shard_43426 loaded\n",
      "shard_16212 loaded\n",
      "shard_7827 loaded\n",
      "shard_29367 loaded\n",
      "shard_33096 loaded\n",
      "shard_30537 loaded\n",
      "shard_41761 loaded\n",
      "shard_2813 loaded\n",
      "shard_22419 loaded\n",
      "shard_20229 loaded\n",
      "shard_32072 loaded\n",
      "shard_8645 loaded\n",
      "shard_20816 loaded\n",
      "shard_17542 loaded\n",
      "shard_19199 loaded\n",
      "shard_8532 loaded\n",
      "shard_25504 loaded\n",
      "shard_10196 loaded\n",
      "shard_650 loaded\n",
      "shard_5511 loaded\n",
      "shard_34017 loaded\n",
      "shard_36668 loaded\n",
      "shard_1537 loaded\n",
      "shard_22534 loaded\n",
      "shard_27464 loaded\n",
      "shard_20545 loaded\n",
      "shard_34200 loaded\n",
      "shard_15848 loaded\n",
      "shard_22941 loaded\n",
      "shard_7436 loaded\n",
      "shard_43891 loaded\n",
      "shard_24050 loaded\n",
      "shard_27270 loaded\n",
      "shard_34541 loaded\n",
      "shard_20460 loaded\n",
      "shard_25957 loaded\n",
      "shard_9779 loaded\n",
      "shard_27153 loaded\n",
      "shard_37745 loaded\n",
      "shard_31045 loaded\n",
      "shard_37477 loaded\n",
      "shard_22031 loaded\n",
      "shard_39003 loaded\n",
      "shard_29971 loaded\n",
      "shard_14631 loaded\n",
      "shard_35227 loaded\n",
      "shard_1351 loaded\n",
      "shard_35283 loaded\n",
      "shard_22628 loaded\n",
      "shard_49810 loaded\n",
      "shard_8126 loaded\n",
      "shard_2772 loaded\n",
      "shard_47618 loaded\n",
      "shard_4009 loaded\n",
      "shard_29871 loaded\n",
      "shard_30605 loaded\n",
      "shard_17814 loaded\n",
      "shard_10191 loaded\n",
      "shard_16424 loaded\n",
      "shard_40599 loaded\n",
      "shard_10713 loaded\n",
      "shard_24224 loaded\n",
      "shard_35853 loaded\n",
      "shard_34875 loaded\n",
      "shard_49454 loaded\n",
      "shard_47717 loaded\n",
      "shard_47045 loaded\n",
      "shard_39760 loaded\n",
      "shard_22474 loaded\n",
      "shard_12028 loaded\n",
      "shard_7548 loaded\n",
      "shard_40117 loaded\n",
      "shard_19093 loaded\n",
      "shard_23017 loaded\n",
      "shard_30776 loaded\n",
      "shard_32763 loaded\n",
      "shard_40304 loaded\n",
      "shard_25179 loaded\n",
      "shard_37835 loaded\n",
      "shard_11444 loaded\n",
      "shard_27096 loaded\n",
      "shard_23554 loaded\n",
      "shard_23472 loaded\n",
      "shard_47978 loaded\n",
      "shard_37775 loaded\n",
      "shard_14335 loaded\n",
      "shard_978 loaded\n",
      "shard_3039 loaded\n",
      "shard_18597 loaded\n",
      "shard_41694 loaded\n",
      "shard_40404 loaded\n",
      "shard_47945 loaded\n",
      "shard_21149 loaded\n",
      "shard_32276 loaded\n",
      "shard_929 loaded\n",
      "shard_47596 loaded\n",
      "shard_14390 loaded\n",
      "shard_28858 loaded\n",
      "shard_15626 loaded\n",
      "shard_6160 loaded\n",
      "shard_47763 loaded\n",
      "shard_17766 loaded\n",
      "shard_4617 loaded\n",
      "shard_40191 loaded\n",
      "shard_40048 loaded\n",
      "shard_38867 loaded\n",
      "shard_49099 loaded\n",
      "shard_4566 loaded\n",
      "shard_24555 loaded\n",
      "shard_29098 loaded\n",
      "shard_33886 loaded\n",
      "shard_49208 loaded\n",
      "shard_13387 loaded\n",
      "shard_531 loaded\n",
      "shard_23931 loaded\n",
      "shard_260 loaded\n",
      "shard_48143 loaded\n",
      "shard_28822 loaded\n",
      "shard_38684 loaded\n",
      "shard_41540 loaded\n",
      "shard_13824 loaded\n",
      "shard_4493 loaded\n",
      "shard_2135 loaded\n",
      "shard_11470 loaded\n",
      "shard_13241 loaded\n",
      "shard_32214 loaded\n",
      "shard_44026 loaded\n",
      "shard_49932 loaded\n",
      "shard_25580 loaded\n",
      "shard_35935 loaded\n",
      "shard_45273 loaded\n",
      "shard_7251 loaded\n",
      "shard_16698 loaded\n",
      "shard_42625 loaded\n",
      "shard_10214 loaded\n",
      "shard_13269 loaded\n",
      "shard_49037 loaded\n",
      "shard_19954 loaded\n",
      "shard_8029 loaded\n",
      "shard_35491 loaded\n",
      "shard_10551 loaded\n",
      "shard_42133 loaded\n",
      "shard_19669 loaded\n",
      "shard_36115 loaded\n",
      "shard_42088 loaded\n",
      "shard_28006 loaded\n",
      "shard_30859 loaded\n",
      "shard_8876 loaded\n",
      "shard_40905 loaded\n",
      "shard_32837 loaded\n",
      "shard_49056 loaded\n",
      "shard_38998 loaded\n",
      "shard_37824 loaded\n",
      "shard_10131 loaded\n",
      "shard_29701 loaded\n",
      "shard_6552 loaded\n",
      "shard_25290 loaded\n",
      "shard_24312 loaded\n",
      "shard_40823 loaded\n",
      "shard_37141 loaded\n",
      "shard_24044 loaded\n",
      "shard_22241 loaded\n",
      "shard_48589 loaded\n",
      "shard_15760 loaded\n",
      "shard_4725 loaded\n",
      "shard_7155 loaded\n",
      "shard_30177 loaded\n",
      "shard_35300 loaded\n",
      "shard_14064 loaded\n",
      "shard_42978 loaded\n",
      "shard_11673 loaded\n",
      "shard_34920 loaded\n",
      "shard_13768 loaded\n",
      "shard_30147 loaded\n",
      "shard_49931 loaded\n",
      "shard_19072 loaded\n",
      "shard_45142 loaded\n",
      "shard_44063 loaded\n",
      "shard_13137 loaded\n",
      "shard_33923 loaded\n",
      "shard_8140 loaded\n",
      "shard_19391 loaded\n",
      "shard_33068 loaded\n",
      "shard_47060 loaded\n",
      "shard_26021 loaded\n",
      "shard_5855 loaded\n",
      "shard_20531 loaded\n",
      "shard_32866 loaded\n",
      "shard_14556 loaded\n",
      "shard_12408 loaded\n",
      "shard_40530 loaded\n",
      "shard_1364 loaded\n",
      "shard_11477 loaded\n",
      "shard_17681 loaded\n",
      "shard_22160 loaded\n",
      "shard_29380 loaded\n",
      "shard_15269 loaded\n",
      "shard_42269 loaded\n",
      "shard_24765 loaded\n",
      "shard_46081 loaded\n",
      "shard_12988 loaded\n",
      "shard_4129 loaded\n",
      "shard_15972 loaded\n",
      "shard_17235 loaded\n",
      "shard_39655 loaded\n",
      "shard_29704 loaded\n",
      "shard_1707 loaded\n",
      "shard_17821 loaded\n",
      "shard_47753 loaded\n",
      "shard_39936 loaded\n",
      "shard_16345 loaded\n",
      "shard_22326 loaded\n",
      "shard_26092 loaded\n",
      "shard_4002 loaded\n",
      "shard_2513 loaded\n",
      "shard_45730 loaded\n",
      "shard_42942 loaded\n",
      "shard_31200 loaded\n",
      "shard_1429 loaded\n",
      "shard_11425 loaded\n",
      "shard_42006 loaded\n",
      "shard_25663 loaded\n",
      "shard_36186 loaded\n",
      "shard_14609 loaded\n",
      "shard_34743 loaded\n",
      "shard_29855 loaded\n",
      "shard_15817 loaded\n",
      "shard_30535 loaded\n",
      "shard_29419 loaded\n",
      "shard_36599 loaded\n",
      "shard_15486 loaded\n",
      "shard_42843 loaded\n",
      "shard_7720 loaded\n",
      "shard_33820 loaded\n",
      "shard_8266 loaded\n",
      "shard_34717 loaded\n",
      "shard_48405 loaded\n",
      "shard_20673 loaded\n",
      "shard_7970 loaded\n",
      "shard_18918 loaded\n",
      "shard_2977 loaded\n",
      "shard_7768 loaded\n",
      "shard_36813 loaded\n",
      "shard_8790 loaded\n",
      "shard_2514 loaded\n",
      "shard_45520 loaded\n",
      "shard_45055 loaded\n",
      "shard_39466 loaded\n",
      "shard_8217 loaded\n",
      "shard_37195 loaded\n",
      "shard_43971 loaded\n",
      "shard_48001 loaded\n",
      "shard_8634 loaded\n",
      "shard_49159 loaded\n",
      "shard_8712 loaded\n",
      "shard_20043 loaded\n",
      "shard_40849 loaded\n",
      "shard_32675 loaded\n",
      "shard_1298 loaded\n",
      "shard_43981 loaded\n",
      "shard_14667 loaded\n",
      "shard_2035 loaded\n",
      "shard_43526 loaded\n",
      "shard_2401 loaded\n",
      "shard_31315 loaded\n",
      "shard_18105 loaded\n",
      "shard_33838 loaded\n",
      "shard_45979 loaded\n",
      "shard_43029 loaded\n",
      "shard_12807 loaded\n",
      "shard_38861 loaded\n",
      "shard_35218 loaded\n",
      "shard_3607 loaded\n",
      "shard_21517 loaded\n",
      "shard_13003 loaded\n",
      "shard_31447 loaded\n",
      "shard_12252 loaded\n",
      "shard_32387 loaded\n",
      "shard_24120 loaded\n",
      "shard_2107 loaded\n",
      "shard_43141 loaded\n",
      "shard_11417 loaded\n",
      "shard_39680 loaded\n",
      "shard_20084 loaded\n",
      "shard_12554 loaded\n",
      "shard_21769 loaded\n",
      "shard_28904 loaded\n",
      "shard_37842 loaded\n",
      "shard_38710 loaded\n",
      "shard_18656 loaded\n",
      "shard_22239 loaded\n",
      "shard_49041 loaded\n",
      "shard_9197 loaded\n",
      "shard_22853 loaded\n",
      "shard_3851 loaded\n",
      "shard_12973 loaded\n",
      "shard_49869 loaded\n",
      "shard_45518 loaded\n",
      "shard_5135 loaded\n",
      "shard_35709 loaded\n",
      "shard_43200 loaded\n",
      "shard_31855 loaded\n",
      "shard_27450 loaded\n",
      "shard_33408 loaded\n",
      "shard_32488 loaded\n",
      "shard_45009 loaded\n",
      "shard_43142 loaded\n",
      "shard_33587 loaded\n",
      "shard_30288 loaded\n",
      "shard_30137 loaded\n",
      "shard_35592 loaded\n",
      "shard_18053 loaded\n",
      "shard_45759 loaded\n",
      "shard_8468 loaded\n",
      "shard_14221 loaded\n",
      "shard_23805 loaded\n",
      "shard_576 loaded\n",
      "shard_7074 loaded\n",
      "shard_22567 loaded\n",
      "shard_5994 loaded\n",
      "shard_46469 loaded\n",
      "shard_21584 loaded\n",
      "shard_6354 loaded\n",
      "shard_39869 loaded\n",
      "shard_38210 loaded\n",
      "shard_41981 loaded\n",
      "shard_42349 loaded\n",
      "shard_33118 loaded\n",
      "shard_12526 loaded\n",
      "shard_35359 loaded\n",
      "shard_19999 loaded\n",
      "shard_44079 loaded\n",
      "shard_169 loaded\n",
      "shard_30189 loaded\n",
      "shard_5610 loaded\n",
      "shard_1284 loaded\n",
      "shard_27419 loaded\n",
      "shard_185 loaded\n",
      "shard_11886 loaded\n",
      "shard_22367 loaded\n",
      "shard_29522 loaded\n",
      "shard_33817 loaded\n",
      "shard_47981 loaded\n",
      "shard_49441 loaded\n",
      "shard_44257 loaded\n",
      "shard_9601 loaded\n",
      "shard_48912 loaded\n",
      "shard_4639 loaded\n",
      "shard_39772 loaded\n",
      "shard_42194 loaded\n",
      "shard_23726 loaded\n",
      "shard_13644 loaded\n",
      "shard_48680 loaded\n",
      "shard_46293 loaded\n",
      "shard_24477 loaded\n",
      "shard_4391 loaded\n",
      "shard_14818 loaded\n",
      "shard_1267 loaded\n",
      "shard_17462 loaded\n",
      "shard_27421 loaded\n",
      "shard_33739 loaded\n",
      "shard_32005 loaded\n",
      "shard_39733 loaded\n",
      "shard_48184 loaded\n",
      "shard_41832 loaded\n",
      "shard_3662 loaded\n",
      "shard_44991 loaded\n",
      "shard_43876 loaded\n",
      "shard_41282 loaded\n",
      "shard_21164 loaded\n",
      "shard_22974 loaded\n",
      "shard_20073 loaded\n",
      "shard_4258 loaded\n",
      "shard_40661 loaded\n",
      "shard_13333 loaded\n",
      "shard_48396 loaded\n",
      "shard_48654 loaded\n",
      "shard_48432 loaded\n",
      "shard_10658 loaded\n",
      "shard_19418 loaded\n",
      "shard_49240 loaded\n",
      "shard_37161 loaded\n",
      "shard_20886 loaded\n",
      "shard_41513 loaded\n",
      "shard_38150 loaded\n",
      "shard_47818 loaded\n",
      "shard_40467 loaded\n",
      "shard_48257 loaded\n",
      "shard_41366 loaded\n",
      "shard_44892 loaded\n",
      "shard_37021 loaded\n",
      "shard_4317 loaded\n",
      "shard_1191 loaded\n",
      "shard_9857 loaded\n",
      "shard_24247 loaded\n",
      "shard_11614 loaded\n",
      "shard_24950 loaded\n",
      "shard_40472 loaded\n",
      "shard_18225 loaded\n",
      "shard_31914 loaded\n",
      "shard_49192 loaded\n",
      "shard_2508 loaded\n",
      "shard_33586 loaded\n",
      "shard_47746 loaded\n",
      "shard_15905 loaded\n",
      "shard_11390 loaded\n",
      "shard_27365 loaded\n",
      "shard_15704 loaded\n",
      "shard_34716 loaded\n",
      "shard_48699 loaded\n",
      "shard_9195 loaded\n",
      "shard_14669 loaded\n",
      "shard_16691 loaded\n",
      "shard_24165 loaded\n",
      "shard_26231 loaded\n",
      "shard_4746 loaded\n",
      "shard_29841 loaded\n",
      "shard_31059 loaded\n",
      "shard_40716 loaded\n",
      "shard_39912 loaded\n",
      "shard_5677 loaded\n",
      "shard_28025 loaded\n",
      "shard_11552 loaded\n",
      "shard_40603 loaded\n",
      "shard_22209 loaded\n",
      "shard_41557 loaded\n",
      "shard_33401 loaded\n",
      "shard_31693 loaded\n",
      "shard_9873 loaded\n",
      "shard_27343 loaded\n",
      "shard_35981 loaded\n",
      "shard_28680 loaded\n",
      "shard_23063 loaded\n",
      "shard_18067 loaded\n",
      "shard_17825 loaded\n",
      "shard_5757 loaded\n",
      "shard_43415 loaded\n",
      "shard_25750 loaded\n",
      "shard_5627 loaded\n",
      "shard_22520 loaded\n",
      "shard_300 loaded\n",
      "shard_14871 loaded\n",
      "shard_8678 loaded\n",
      "shard_46277 loaded\n",
      "shard_8438 loaded\n",
      "shard_48896 loaded\n",
      "shard_17617 loaded\n",
      "shard_36794 loaded\n",
      "shard_26846 loaded\n",
      "shard_46551 loaded\n",
      "shard_20756 loaded\n",
      "shard_11700 loaded\n",
      "shard_39519 loaded\n",
      "shard_46601 loaded\n",
      "shard_40036 loaded\n",
      "shard_14180 loaded\n",
      "shard_25780 loaded\n",
      "shard_11582 loaded\n",
      "shard_45029 loaded\n",
      "shard_22491 loaded\n",
      "shard_2545 loaded\n",
      "shard_33532 loaded\n",
      "shard_40656 loaded\n",
      "shard_16668 loaded\n",
      "shard_33505 loaded\n",
      "shard_8007 loaded\n",
      "shard_32224 loaded\n",
      "shard_26909 loaded\n",
      "shard_47577 loaded\n",
      "shard_48537 loaded\n",
      "shard_3652 loaded\n",
      "shard_20828 loaded\n",
      "shard_21839 loaded\n",
      "shard_29836 loaded\n",
      "shard_27212 loaded\n",
      "shard_39255 loaded\n",
      "shard_16229 loaded\n",
      "shard_39349 loaded\n",
      "shard_11316 loaded\n",
      "shard_44874 loaded\n",
      "shard_3822 loaded\n",
      "shard_27475 loaded\n",
      "shard_11715 loaded\n",
      "shard_1039 loaded\n",
      "shard_38238 loaded\n",
      "shard_34011 loaded\n",
      "shard_36909 loaded\n",
      "shard_41123 loaded\n",
      "shard_6262 loaded\n",
      "shard_23776 loaded\n",
      "shard_40970 loaded\n",
      "shard_15830 loaded\n",
      "shard_28103 loaded\n",
      "shard_23426 loaded\n",
      "shard_30618 loaded\n",
      "shard_48386 loaded\n",
      "shard_8032 loaded\n",
      "shard_26011 loaded\n",
      "shard_13031 loaded\n",
      "shard_36112 loaded\n",
      "shard_32788 loaded\n",
      "shard_19244 loaded\n",
      "shard_13842 loaded\n",
      "shard_9237 loaded\n",
      "shard_3210 loaded\n",
      "shard_6584 loaded\n",
      "shard_28300 loaded\n",
      "shard_30407 loaded\n",
      "shard_39837 loaded\n",
      "shard_8542 loaded\n",
      "shard_39731 loaded\n",
      "shard_19677 loaded\n",
      "shard_39287 loaded\n",
      "shard_43291 loaded\n",
      "shard_31298 loaded\n",
      "shard_47309 loaded\n",
      "shard_28585 loaded\n",
      "shard_6075 loaded\n",
      "shard_21979 loaded\n",
      "shard_7995 loaded\n",
      "shard_17382 loaded\n",
      "shard_18791 loaded\n",
      "shard_10929 loaded\n",
      "shard_47892 loaded\n",
      "shard_13032 loaded\n",
      "shard_30329 loaded\n",
      "shard_19170 loaded\n",
      "shard_15087 loaded\n",
      "shard_19494 loaded\n",
      "shard_36430 loaded\n",
      "shard_47255 loaded\n",
      "shard_30528 loaded\n",
      "shard_20616 loaded\n",
      "shard_29562 loaded\n",
      "shard_37076 loaded\n",
      "shard_33773 loaded\n",
      "shard_41011 loaded\n",
      "shard_2027 loaded\n",
      "shard_21806 loaded\n",
      "shard_22874 loaded\n",
      "shard_13982 loaded\n",
      "shard_6422 loaded\n",
      "shard_39748 loaded\n",
      "shard_43630 loaded\n",
      "shard_35000 loaded\n",
      "shard_31130 loaded\n",
      "shard_43289 loaded\n",
      "shard_7438 loaded\n",
      "shard_33133 loaded\n",
      "shard_4251 loaded\n",
      "shard_40514 loaded\n",
      "shard_26904 loaded\n",
      "shard_17742 loaded\n",
      "shard_33278 loaded\n",
      "shard_10592 loaded\n",
      "shard_34841 loaded\n",
      "shard_47308 loaded\n",
      "shard_4164 loaded\n",
      "shard_45832 loaded\n",
      "shard_25785 loaded\n",
      "shard_35674 loaded\n",
      "shard_42472 loaded\n",
      "shard_35486 loaded\n",
      "shard_16896 loaded\n",
      "shard_18235 loaded\n",
      "shard_25239 loaded\n",
      "shard_15140 loaded\n",
      "shard_14907 loaded\n",
      "shard_10604 loaded\n",
      "shard_21546 loaded\n",
      "shard_8872 loaded\n",
      "shard_7 loaded\n",
      "shard_47606 loaded\n",
      "shard_43065 loaded\n",
      "shard_47821 loaded\n",
      "shard_48756 loaded\n",
      "shard_3114 loaded\n",
      "shard_27165 loaded\n",
      "shard_24737 loaded\n",
      "shard_32370 loaded\n",
      "shard_251 loaded\n",
      "shard_13375 loaded\n",
      "shard_22762 loaded\n",
      "shard_16226 loaded\n",
      "shard_35020 loaded\n",
      "shard_6853 loaded\n",
      "shard_28341 loaded\n",
      "shard_32260 loaded\n",
      "shard_47982 loaded\n",
      "shard_49216 loaded\n",
      "shard_19128 loaded\n",
      "shard_45838 loaded\n",
      "shard_34275 loaded\n",
      "shard_26290 loaded\n",
      "shard_27935 loaded\n",
      "shard_42838 loaded\n",
      "shard_22458 loaded\n",
      "shard_46943 loaded\n",
      "shard_35500 loaded\n",
      "shard_17801 loaded\n",
      "shard_10080 loaded\n",
      "shard_4762 loaded\n",
      "shard_12378 loaded\n",
      "shard_7365 loaded\n",
      "shard_49658 loaded\n",
      "shard_3464 loaded\n",
      "shard_43387 loaded\n",
      "shard_15093 loaded\n",
      "shard_9143 loaded\n",
      "shard_32109 loaded\n",
      "shard_3267 loaded\n",
      "shard_7457 loaded\n",
      "shard_49844 loaded\n",
      "shard_21969 loaded\n",
      "shard_34344 loaded\n",
      "shard_15908 loaded\n",
      "shard_44972 loaded\n",
      "shard_18470 loaded\n",
      "shard_19276 loaded\n",
      "shard_19670 loaded\n",
      "shard_39491 loaded\n",
      "shard_45864 loaded\n",
      "shard_25138 loaded\n",
      "shard_3399 loaded\n",
      "shard_36386 loaded\n",
      "shard_12301 loaded\n",
      "shard_41113 loaded\n",
      "shard_14879 loaded\n",
      "shard_48281 loaded\n",
      "shard_29390 loaded\n",
      "shard_2059 loaded\n",
      "shard_19851 loaded\n",
      "shard_28182 loaded\n",
      "shard_33028 loaded\n",
      "shard_44398 loaded\n",
      "shard_45692 loaded\n",
      "shard_19798 loaded\n",
      "shard_23486 loaded\n",
      "shard_12416 loaded\n",
      "shard_2559 loaded\n",
      "shard_39248 loaded\n",
      "shard_17547 loaded\n",
      "shard_30511 loaded\n",
      "shard_7494 loaded\n",
      "shard_312 loaded\n",
      "shard_1340 loaded\n",
      "shard_43000 loaded\n",
      "shard_41749 loaded\n",
      "shard_15916 loaded\n",
      "shard_37786 loaded\n",
      "shard_38004 loaded\n",
      "shard_45826 loaded\n",
      "shard_48631 loaded\n",
      "shard_20848 loaded\n",
      "shard_35378 loaded\n",
      "shard_20957 loaded\n",
      "shard_16305 loaded\n",
      "shard_27934 loaded\n",
      "shard_26570 loaded\n",
      "shard_38919 loaded\n",
      "shard_20351 loaded\n",
      "shard_8083 loaded\n",
      "shard_12454 loaded\n",
      "shard_5163 loaded\n",
      "shard_17717 loaded\n",
      "shard_30136 loaded\n",
      "shard_43281 loaded\n",
      "shard_4092 loaded\n",
      "shard_18056 loaded\n",
      "shard_10654 loaded\n",
      "shard_16880 loaded\n",
      "shard_30620 loaded\n",
      "shard_26372 loaded\n",
      "shard_37875 loaded\n",
      "shard_12339 loaded\n",
      "shard_25435 loaded\n",
      "shard_12306 loaded\n",
      "shard_39860 loaded\n",
      "shard_4018 loaded\n",
      "shard_41797 loaded\n",
      "shard_2048 loaded\n",
      "shard_15353 loaded\n",
      "shard_21367 loaded\n",
      "shard_2316 loaded\n",
      "shard_43945 loaded\n",
      "shard_43309 loaded\n",
      "shard_6215 loaded\n",
      "shard_20607 loaded\n",
      "shard_3669 loaded\n",
      "shard_23184 loaded\n",
      "shard_2315 loaded\n",
      "shard_23438 loaded\n",
      "shard_12017 loaded\n",
      "shard_21226 loaded\n",
      "shard_36974 loaded\n",
      "shard_40004 loaded\n",
      "shard_18025 loaded\n",
      "shard_26873 loaded\n",
      "shard_39583 loaded\n",
      "shard_34372 loaded\n",
      "shard_970 loaded\n",
      "shard_7011 loaded\n",
      "shard_14672 loaded\n",
      "shard_46726 loaded\n",
      "shard_8604 loaded\n",
      "shard_27295 loaded\n",
      "shard_10026 loaded\n",
      "shard_20644 loaded\n",
      "shard_12770 loaded\n",
      "shard_3683 loaded\n",
      "shard_41370 loaded\n",
      "shard_48216 loaded\n",
      "shard_1935 loaded\n",
      "shard_39560 loaded\n",
      "shard_40396 loaded\n",
      "shard_15939 loaded\n",
      "shard_20013 loaded\n",
      "shard_8207 loaded\n",
      "shard_27655 loaded\n",
      "shard_48384 loaded\n",
      "shard_26062 loaded\n",
      "shard_33946 loaded\n",
      "shard_47532 loaded\n",
      "shard_48986 loaded\n",
      "shard_11498 loaded\n",
      "shard_23265 loaded\n",
      "shard_6373 loaded\n",
      "shard_31080 loaded\n",
      "shard_45386 loaded\n",
      "shard_49682 loaded\n",
      "shard_9667 loaded\n",
      "shard_42928 loaded\n",
      "shard_21676 loaded\n",
      "shard_3497 loaded\n",
      "shard_32400 loaded\n",
      "shard_8506 loaded\n",
      "shard_24777 loaded\n",
      "shard_4027 loaded\n",
      "shard_46351 loaded\n",
      "shard_24391 loaded\n",
      "shard_26748 loaded\n",
      "shard_46274 loaded\n",
      "shard_38949 loaded\n",
      "shard_23439 loaded\n",
      "shard_2816 loaded\n",
      "shard_7095 loaded\n",
      "shard_26529 loaded\n",
      "shard_13590 loaded\n",
      "shard_13231 loaded\n",
      "shard_3066 loaded\n",
      "shard_44803 loaded\n",
      "shard_21709 loaded\n",
      "shard_41479 loaded\n",
      "shard_9327 loaded\n",
      "shard_31626 loaded\n",
      "shard_26296 loaded\n",
      "shard_13600 loaded\n",
      "shard_37862 loaded\n",
      "shard_27226 loaded\n",
      "shard_32838 loaded\n",
      "shard_31308 loaded\n",
      "shard_8755 loaded\n",
      "shard_45183 loaded\n",
      "shard_10109 loaded\n",
      "shard_48522 loaded\n",
      "shard_10640 loaded\n",
      "shard_3713 loaded\n",
      "shard_13433 loaded\n",
      "shard_3534 loaded\n",
      "shard_40243 loaded\n",
      "shard_20819 loaded\n",
      "shard_28233 loaded\n",
      "shard_45156 loaded\n",
      "shard_8761 loaded\n",
      "shard_18531 loaded\n",
      "shard_47119 loaded\n",
      "shard_31728 loaded\n",
      "shard_5310 loaded\n",
      "shard_49368 loaded\n",
      "shard_46009 loaded\n",
      "shard_5945 loaded\n",
      "shard_5272 loaded\n",
      "shard_48210 loaded\n",
      "shard_15737 loaded\n",
      "shard_47187 loaded\n",
      "shard_40361 loaded\n",
      "shard_11607 loaded\n",
      "shard_16514 loaded\n",
      "shard_17730 loaded\n",
      "shard_37383 loaded\n",
      "shard_8296 loaded\n",
      "shard_10284 loaded\n",
      "shard_12574 loaded\n",
      "shard_40422 loaded\n",
      "shard_40625 loaded\n",
      "shard_24489 loaded\n",
      "shard_17933 loaded\n",
      "shard_30442 loaded\n",
      "shard_42680 loaded\n",
      "shard_21633 loaded\n",
      "shard_973 loaded\n",
      "shard_35484 loaded\n",
      "shard_40573 loaded\n",
      "shard_24990 loaded\n",
      "shard_27575 loaded\n",
      "shard_13670 loaded\n",
      "shard_36967 loaded\n",
      "shard_5965 loaded\n",
      "shard_32045 loaded\n",
      "shard_31239 loaded\n",
      "shard_27465 loaded\n",
      "shard_10617 loaded\n",
      "shard_49887 loaded\n",
      "shard_24503 loaded\n",
      "shard_10818 loaded\n",
      "shard_27426 loaded\n",
      "shard_44962 loaded\n",
      "shard_43308 loaded\n",
      "shard_47929 loaded\n",
      "shard_39296 loaded\n",
      "shard_11010 loaded\n",
      "shard_42906 loaded\n",
      "shard_38404 loaded\n",
      "shard_37657 loaded\n",
      "shard_48626 loaded\n",
      "shard_16642 loaded\n",
      "shard_22433 loaded\n",
      "shard_10624 loaded\n",
      "shard_45588 loaded\n",
      "shard_2572 loaded\n",
      "shard_33512 loaded\n",
      "shard_26943 loaded\n",
      "shard_45614 loaded\n",
      "shard_21693 loaded\n",
      "shard_3292 loaded\n",
      "shard_14570 loaded\n",
      "shard_24516 loaded\n",
      "shard_14350 loaded\n",
      "shard_38169 loaded\n",
      "shard_1844 loaded\n",
      "shard_46146 loaded\n",
      "shard_17452 loaded\n",
      "shard_24570 loaded\n",
      "shard_27466 loaded\n",
      "shard_7459 loaded\n",
      "shard_27750 loaded\n",
      "shard_45624 loaded\n",
      "shard_46499 loaded\n",
      "shard_19861 loaded\n",
      "shard_35169 loaded\n",
      "shard_15108 loaded\n",
      "shard_5421 loaded\n",
      "shard_3590 loaded\n",
      "shard_30521 loaded\n",
      "shard_10177 loaded\n",
      "shard_21124 loaded\n",
      "shard_38192 loaded\n",
      "shard_7512 loaded\n",
      "shard_15632 loaded\n",
      "shard_45599 loaded\n",
      "shard_25271 loaded\n",
      "shard_43559 loaded\n",
      "shard_20291 loaded\n",
      "shard_32670 loaded\n",
      "shard_15076 loaded\n",
      "shard_44838 loaded\n",
      "shard_3215 loaded\n",
      "shard_20162 loaded\n",
      "shard_37039 loaded\n",
      "shard_25912 loaded\n",
      "shard_15310 loaded\n",
      "shard_7847 loaded\n",
      "shard_29643 loaded\n",
      "shard_5708 loaded\n",
      "shard_47738 loaded\n",
      "shard_11243 loaded\n",
      "shard_35069 loaded\n",
      "shard_35156 loaded\n",
      "shard_30727 loaded\n",
      "shard_42484 loaded\n",
      "shard_36526 loaded\n",
      "shard_33935 loaded\n",
      "shard_16161 loaded\n",
      "shard_1138 loaded\n",
      "shard_5864 loaded\n",
      "shard_4146 loaded\n",
      "shard_7420 loaded\n",
      "shard_14066 loaded\n",
      "shard_14479 loaded\n",
      "shard_21279 loaded\n",
      "shard_30014 loaded\n",
      "shard_15786 loaded\n",
      "shard_35516 loaded\n",
      "shard_42256 loaded\n",
      "shard_25036 loaded\n",
      "shard_4518 loaded\n",
      "shard_25111 loaded\n",
      "shard_35995 loaded\n",
      "shard_46036 loaded\n",
      "shard_21732 loaded\n",
      "shard_7911 loaded\n",
      "shard_37274 loaded\n",
      "shard_5836 loaded\n",
      "shard_7715 loaded\n",
      "shard_30261 loaded\n",
      "shard_47607 loaded\n",
      "shard_17128 loaded\n",
      "shard_5725 loaded\n",
      "shard_19523 loaded\n",
      "shard_15079 loaded\n",
      "shard_23945 loaded\n",
      "shard_35561 loaded\n",
      "shard_8528 loaded\n",
      "shard_3594 loaded\n",
      "shard_28612 loaded\n",
      "shard_1444 loaded\n",
      "shard_29475 loaded\n",
      "shard_22835 loaded\n",
      "shard_25123 loaded\n",
      "shard_26554 loaded\n",
      "shard_16104 loaded\n",
      "shard_35380 loaded\n",
      "shard_30976 loaded\n",
      "shard_26756 loaded\n",
      "shard_5530 loaded\n",
      "shard_49351 loaded\n",
      "shard_20233 loaded\n",
      "shard_12671 loaded\n",
      "shard_22260 loaded\n",
      "shard_31429 loaded\n",
      "shard_18430 loaded\n",
      "shard_38977 loaded\n",
      "shard_7531 loaded\n",
      "shard_19373 loaded\n",
      "shard_8648 loaded\n",
      "shard_20983 loaded\n",
      "shard_43125 loaded\n",
      "shard_38223 loaded\n",
      "shard_37163 loaded\n",
      "shard_39090 loaded\n",
      "shard_46946 loaded\n",
      "shard_11729 loaded\n",
      "shard_30034 loaded\n",
      "shard_3510 loaded\n",
      "shard_23824 loaded\n",
      "shard_23878 loaded\n",
      "shard_26871 loaded\n",
      "shard_32213 loaded\n",
      "shard_40569 loaded\n",
      "shard_40019 loaded\n",
      "shard_34752 loaded\n",
      "shard_29951 loaded\n",
      "shard_47561 loaded\n",
      "shard_45270 loaded\n",
      "shard_18484 loaded\n",
      "shard_40493 loaded\n",
      "shard_29120 loaded\n",
      "shard_25450 loaded\n",
      "shard_15285 loaded\n",
      "shard_23918 loaded\n",
      "shard_10024 loaded\n",
      "shard_35368 loaded\n",
      "shard_19135 loaded\n",
      "shard_22685 loaded\n",
      "shard_3623 loaded\n",
      "shard_4513 loaded\n",
      "shard_41378 loaded\n",
      "shard_35463 loaded\n",
      "shard_21274 loaded\n",
      "shard_27128 loaded\n",
      "shard_4189 loaded\n",
      "shard_23768 loaded\n",
      "shard_23482 loaded\n",
      "shard_27193 loaded\n",
      "shard_42448 loaded\n",
      "shard_42884 loaded\n",
      "shard_26001 loaded\n",
      "shard_10638 loaded\n",
      "shard_18338 loaded\n",
      "shard_46228 loaded\n",
      "shard_12120 loaded\n",
      "shard_15062 loaded\n",
      "shard_35246 loaded\n",
      "shard_17608 loaded\n",
      "shard_30804 loaded\n",
      "shard_32341 loaded\n",
      "shard_19678 loaded\n",
      "shard_41284 loaded\n",
      "shard_48971 loaded\n",
      "shard_16004 loaded\n",
      "shard_315 loaded\n",
      "shard_17246 loaded\n",
      "shard_48507 loaded\n",
      "shard_21863 loaded\n",
      "shard_41894 loaded\n",
      "shard_34317 loaded\n",
      "shard_19462 loaded\n",
      "shard_21793 loaded\n",
      "shard_25675 loaded\n",
      "shard_26832 loaded\n",
      "shard_13833 loaded\n",
      "shard_25872 loaded\n",
      "shard_26327 loaded\n",
      "shard_22072 loaded\n",
      "shard_4638 loaded\n",
      "shard_10165 loaded\n",
      "shard_20029 loaded\n",
      "shard_15856 loaded\n",
      "shard_17887 loaded\n",
      "shard_14937 loaded\n",
      "shard_4104 loaded\n",
      "shard_7446 loaded\n",
      "shard_32003 loaded\n",
      "shard_21733 loaded\n",
      "shard_47342 loaded\n",
      "shard_37176 loaded\n",
      "shard_41272 loaded\n",
      "shard_49251 loaded\n",
      "shard_5473 loaded\n",
      "shard_23761 loaded\n",
      "shard_11491 loaded\n",
      "shard_19793 loaded\n",
      "shard_20257 loaded\n",
      "shard_48878 loaded\n",
      "shard_23915 loaded\n",
      "shard_474 loaded\n",
      "shard_39154 loaded\n",
      "shard_34970 loaded\n",
      "shard_20786 loaded\n",
      "shard_19402 loaded\n",
      "shard_40372 loaded\n",
      "shard_2006 loaded\n",
      "shard_33346 loaded\n",
      "shard_43337 loaded\n",
      "shard_833 loaded\n",
      "shard_12285 loaded\n",
      "shard_27946 loaded\n",
      "shard_21233 loaded\n",
      "shard_25931 loaded\n",
      "shard_11418 loaded\n",
      "shard_49453 loaded\n",
      "shard_14503 loaded\n",
      "shard_25967 loaded\n",
      "shard_15790 loaded\n",
      "shard_4255 loaded\n",
      "shard_24360 loaded\n",
      "shard_35892 loaded\n",
      "shard_31803 loaded\n",
      "shard_28457 loaded\n",
      "shard_17160 loaded\n",
      "shard_8134 loaded\n",
      "shard_38964 loaded\n",
      "shard_44262 loaded\n",
      "shard_15910 loaded\n",
      "shard_19650 loaded\n",
      "shard_14677 loaded\n",
      "shard_20137 loaded\n",
      "shard_13063 loaded\n",
      "shard_14466 loaded\n",
      "shard_39087 loaded\n",
      "shard_46403 loaded\n",
      "shard_10910 loaded\n",
      "shard_25975 loaded\n",
      "shard_532 loaded\n",
      "shard_25479 loaded\n",
      "shard_29738 loaded\n",
      "shard_49877 loaded\n",
      "shard_19619 loaded\n",
      "shard_28114 loaded\n",
      "shard_10118 loaded\n",
      "shard_13611 loaded\n",
      "shard_30237 loaded\n",
      "shard_3374 loaded\n",
      "shard_45279 loaded\n",
      "shard_34272 loaded\n",
      "shard_18817 loaded\n",
      "shard_5759 loaded\n",
      "shard_48014 loaded\n",
      "shard_5069 loaded\n",
      "shard_40847 loaded\n",
      "shard_8881 loaded\n",
      "shard_42736 loaded\n",
      "shard_8128 loaded\n",
      "shard_23422 loaded\n",
      "shard_29274 loaded\n",
      "shard_11690 loaded\n",
      "shard_37817 loaded\n",
      "shard_16578 loaded\n",
      "shard_38700 loaded\n",
      "shard_49704 loaded\n",
      "shard_49247 loaded\n",
      "shard_22314 loaded\n",
      "shard_2392 loaded\n",
      "shard_20463 loaded\n",
      "shard_17690 loaded\n",
      "shard_24601 loaded\n",
      "shard_27106 loaded\n",
      "shard_41760 loaded\n",
      "shard_43928 loaded\n",
      "shard_25416 loaded\n",
      "shard_12968 loaded\n",
      "shard_7800 loaded\n",
      "shard_29720 loaded\n",
      "shard_19329 loaded\n",
      "shard_13584 loaded\n",
      "shard_5543 loaded\n",
      "shard_41331 loaded\n",
      "shard_44621 loaded\n",
      "shard_20312 loaded\n",
      "shard_18848 loaded\n",
      "shard_10730 loaded\n",
      "shard_27831 loaded\n",
      "shard_23477 loaded\n",
      "shard_45986 loaded\n",
      "shard_793 loaded\n",
      "shard_5921 loaded\n",
      "shard_35978 loaded\n",
      "shard_36610 loaded\n",
      "shard_30107 loaded\n",
      "shard_27283 loaded\n",
      "shard_39124 loaded\n",
      "shard_15628 loaded\n",
      "shard_4205 loaded\n",
      "shard_37589 loaded\n",
      "shard_42366 loaded\n",
      "shard_127 loaded\n",
      "shard_13012 loaded\n",
      "shard_11902 loaded\n",
      "shard_24713 loaded\n",
      "shard_18103 loaded\n",
      "shard_36246 loaded\n",
      "shard_24356 loaded\n",
      "shard_3085 loaded\n",
      "shard_10475 loaded\n",
      "shard_36096 loaded\n",
      "shard_16058 loaded\n",
      "shard_7452 loaded\n",
      "shard_33211 loaded\n",
      "shard_42164 loaded\n",
      "shard_11430 loaded\n",
      "shard_33202 loaded\n",
      "shard_35272 loaded\n",
      "shard_47752 loaded\n",
      "shard_4012 loaded\n",
      "shard_2515 loaded\n",
      "shard_31256 loaded\n",
      "shard_38186 loaded\n",
      "shard_15090 loaded\n",
      "shard_1159 loaded\n",
      "shard_22505 loaded\n",
      "shard_24375 loaded\n",
      "shard_15544 loaded\n",
      "shard_30982 loaded\n",
      "shard_40133 loaded\n",
      "shard_14641 loaded\n",
      "shard_18974 loaded\n",
      "shard_31945 loaded\n",
      "shard_47512 loaded\n",
      "shard_31572 loaded\n",
      "shard_32797 loaded\n",
      "shard_6863 loaded\n",
      "shard_47772 loaded\n",
      "shard_28692 loaded\n",
      "shard_33784 loaded\n",
      "shard_22082 loaded\n",
      "shard_1904 loaded\n",
      "shard_24112 loaded\n",
      "shard_27476 loaded\n",
      "shard_38584 loaded\n",
      "shard_24635 loaded\n",
      "shard_13771 loaded\n",
      "shard_3813 loaded\n",
      "shard_38827 loaded\n",
      "shard_24429 loaded\n",
      "shard_5681 loaded\n",
      "shard_45351 loaded\n",
      "shard_443 loaded\n",
      "shard_32361 loaded\n",
      "shard_34619 loaded\n",
      "shard_3023 loaded\n",
      "shard_1206 loaded\n",
      "shard_21946 loaded\n",
      "shard_30771 loaded\n",
      "shard_7527 loaded\n",
      "shard_45707 loaded\n",
      "shard_4414 loaded\n",
      "shard_31764 loaded\n",
      "shard_12428 loaded\n",
      "shard_44935 loaded\n",
      "shard_7940 loaded\n",
      "shard_10435 loaded\n",
      "shard_27122 loaded\n",
      "shard_47101 loaded\n",
      "shard_646 loaded\n",
      "shard_49415 loaded\n",
      "shard_16034 loaded\n",
      "shard_6460 loaded\n",
      "shard_21911 loaded\n",
      "shard_2318 loaded\n",
      "shard_11807 loaded\n",
      "shard_14890 loaded\n",
      "shard_15342 loaded\n",
      "shard_15239 loaded\n",
      "shard_2561 loaded\n",
      "shard_16842 loaded\n",
      "shard_5312 loaded\n",
      "shard_27780 loaded\n",
      "shard_2986 loaded\n",
      "shard_39729 loaded\n",
      "shard_21112 loaded\n",
      "shard_4777 loaded\n",
      "shard_49005 loaded\n",
      "shard_16452 loaded\n",
      "shard_34736 loaded\n",
      "shard_34850 loaded\n",
      "shard_13837 loaded\n",
      "shard_3729 loaded\n",
      "shard_49853 loaded\n",
      "shard_10631 loaded\n",
      "shard_10668 loaded\n",
      "shard_18146 loaded\n",
      "shard_19598 loaded\n",
      "shard_21632 loaded\n",
      "shard_26725 loaded\n",
      "shard_47706 loaded\n",
      "shard_4043 loaded\n",
      "shard_40957 loaded\n",
      "shard_43720 loaded\n",
      "shard_28974 loaded\n",
      "shard_49226 loaded\n",
      "shard_44641 loaded\n",
      "shard_32785 loaded\n",
      "shard_26319 loaded\n",
      "shard_9266 loaded\n",
      "shard_30737 loaded\n",
      "shard_38591 loaded\n",
      "shard_42290 loaded\n",
      "shard_35910 loaded\n",
      "shard_7091 loaded\n",
      "shard_36925 loaded\n",
      "shard_7584 loaded\n",
      "shard_14354 loaded\n",
      "shard_29684 loaded\n",
      "shard_38206 loaded\n",
      "shard_9387 loaded\n",
      "shard_8730 loaded\n",
      "shard_10533 loaded\n",
      "shard_28620 loaded\n",
      "shard_10994 loaded\n",
      "shard_33717 loaded\n",
      "shard_24339 loaded\n",
      "shard_13331 loaded\n",
      "shard_49598 loaded\n",
      "shard_12074 loaded\n",
      "shard_21398 loaded\n",
      "shard_32949 loaded\n",
      "shard_14317 loaded\n",
      "shard_16275 loaded\n",
      "shard_3498 loaded\n",
      "shard_21465 loaded\n",
      "shard_5434 loaded\n",
      "shard_34917 loaded\n",
      "shard_45174 loaded\n",
      "shard_16937 loaded\n",
      "shard_12740 loaded\n",
      "shard_3637 loaded\n",
      "shard_29442 loaded\n",
      "shard_25544 loaded\n",
      "shard_24725 loaded\n",
      "shard_20963 loaded\n",
      "shard_40044 loaded\n",
      "shard_22333 loaded\n",
      "shard_16471 loaded\n",
      "shard_25981 loaded\n",
      "shard_29006 loaded\n",
      "shard_4667 loaded\n",
      "shard_9728 loaded\n",
      "shard_17773 loaded\n",
      "shard_33554 loaded\n",
      "shard_21085 loaded\n",
      "shard_13715 loaded\n",
      "shard_37693 loaded\n",
      "shard_31047 loaded\n",
      "shard_46260 loaded\n",
      "shard_12098 loaded\n",
      "shard_49263 loaded\n",
      "shard_4818 loaded\n",
      "shard_49466 loaded\n",
      "shard_33260 loaded\n",
      "shard_22353 loaded\n",
      "shard_37866 loaded\n",
      "shard_35822 loaded\n",
      "shard_11769 loaded\n",
      "shard_24746 loaded\n",
      "shard_162 loaded\n",
      "shard_21583 loaded\n",
      "shard_45416 loaded\n",
      "shard_46810 loaded\n",
      "shard_31844 loaded\n",
      "shard_11036 loaded\n",
      "shard_13212 loaded\n",
      "shard_3133 loaded\n",
      "shard_38927 loaded\n",
      "shard_5720 loaded\n",
      "shard_14956 loaded\n",
      "shard_8123 loaded\n",
      "shard_44694 loaded\n",
      "shard_28310 loaded\n",
      "shard_11089 loaded\n",
      "shard_30874 loaded\n",
      "shard_43539 loaded\n",
      "shard_30480 loaded\n",
      "shard_23367 loaded\n",
      "shard_6257 loaded\n",
      "shard_4079 loaded\n",
      "shard_34414 loaded\n",
      "shard_13812 loaded\n",
      "shard_7335 loaded\n",
      "shard_36044 loaded\n",
      "shard_30176 loaded\n",
      "shard_32310 loaded\n",
      "shard_22769 loaded\n",
      "shard_5748 loaded\n",
      "shard_25392 loaded\n",
      "shard_20850 loaded\n",
      "shard_40921 loaded\n",
      "shard_21024 loaded\n",
      "shard_22004 loaded\n",
      "shard_13624 loaded\n",
      "shard_46380 loaded\n",
      "shard_19081 loaded\n",
      "shard_28570 loaded\n",
      "shard_34794 loaded\n",
      "shard_21699 loaded\n",
      "shard_45758 loaded\n",
      "shard_40516 loaded\n",
      "shard_45049 loaded\n",
      "shard_36385 loaded\n",
      "shard_25288 loaded\n",
      "shard_44192 loaded\n",
      "shard_49993 loaded\n",
      "shard_37997 loaded\n",
      "shard_9463 loaded\n",
      "shard_22924 loaded\n",
      "shard_2620 loaded\n",
      "shard_8731 loaded\n",
      "shard_34728 loaded\n",
      "shard_44259 loaded\n",
      "shard_38755 loaded\n",
      "shard_20136 loaded\n",
      "shard_11041 loaded\n",
      "shard_41151 loaded\n",
      "shard_17986 loaded\n",
      "shard_7059 loaded\n",
      "shard_5914 loaded\n",
      "shard_21507 loaded\n",
      "shard_39319 loaded\n",
      "shard_18060 loaded\n",
      "shard_23575 loaded\n",
      "shard_35078 loaded\n",
      "shard_49353 loaded\n",
      "shard_38734 loaded\n",
      "shard_3664 loaded\n",
      "shard_8906 loaded\n",
      "shard_16640 loaded\n",
      "shard_4362 loaded\n",
      "shard_17651 loaded\n",
      "shard_38481 loaded\n",
      "shard_27256 loaded\n",
      "shard_31237 loaded\n",
      "shard_49872 loaded\n",
      "shard_3756 loaded\n",
      "shard_49423 loaded\n",
      "shard_37243 loaded\n",
      "shard_24664 loaded\n",
      "shard_34893 loaded\n",
      "shard_33201 loaded\n",
      "shard_1275 loaded\n",
      "shard_2902 loaded\n",
      "shard_2282 loaded\n",
      "shard_5801 loaded\n",
      "shard_33448 loaded\n",
      "shard_45794 loaded\n",
      "shard_13878 loaded\n",
      "shard_2198 loaded\n",
      "shard_6969 loaded\n",
      "shard_5018 loaded\n",
      "shard_19640 loaded\n",
      "shard_19799 loaded\n",
      "shard_41886 loaded\n",
      "shard_7913 loaded\n",
      "shard_31534 loaded\n",
      "shard_14804 loaded\n",
      "shard_46498 loaded\n",
      "shard_26316 loaded\n",
      "shard_25681 loaded\n",
      "shard_46636 loaded\n",
      "shard_17490 loaded\n",
      "shard_45996 loaded\n",
      "shard_30459 loaded\n",
      "shard_46532 loaded\n",
      "shard_14380 loaded\n",
      "shard_5961 loaded\n",
      "shard_34229 loaded\n",
      "shard_6903 loaded\n",
      "shard_32264 loaded\n",
      "shard_35918 loaded\n",
      "shard_5594 loaded\n",
      "shard_28096 loaded\n",
      "shard_38341 loaded\n",
      "shard_49738 loaded\n",
      "shard_46914 loaded\n",
      "shard_6677 loaded\n",
      "shard_25154 loaded\n",
      "shard_44565 loaded\n",
      "shard_28087 loaded\n",
      "shard_20727 loaded\n",
      "shard_11923 loaded\n",
      "shard_5749 loaded\n",
      "shard_1850 loaded\n",
      "shard_36421 loaded\n",
      "shard_46042 loaded\n",
      "shard_26913 loaded\n",
      "shard_40458 loaded\n",
      "shard_24296 loaded\n",
      "shard_13802 loaded\n",
      "shard_4473 loaded\n",
      "shard_1682 loaded\n",
      "shard_31971 loaded\n",
      "shard_21974 loaded\n",
      "shard_35676 loaded\n",
      "shard_18718 loaded\n",
      "shard_46569 loaded\n",
      "shard_48311 loaded\n",
      "shard_15524 loaded\n",
      "shard_18591 loaded\n",
      "shard_44796 loaded\n",
      "shard_33604 loaded\n",
      "shard_14756 loaded\n",
      "shard_1464 loaded\n",
      "shard_15777 loaded\n",
      "shard_9074 loaded\n",
      "shard_38759 loaded\n",
      "shard_47916 loaded\n",
      "shard_41800 loaded\n",
      "shard_13870 loaded\n",
      "shard_29169 loaded\n",
      "shard_38873 loaded\n",
      "shard_21161 loaded\n",
      "shard_13504 loaded\n",
      "shard_29682 loaded\n",
      "shard_25295 loaded\n",
      "shard_23078 loaded\n",
      "shard_48457 loaded\n",
      "shard_45143 loaded\n",
      "shard_14495 loaded\n",
      "shard_21248 loaded\n",
      "shard_24204 loaded\n",
      "shard_46732 loaded\n",
      "shard_39056 loaded\n",
      "shard_22589 loaded\n",
      "shard_31180 loaded\n",
      "shard_8791 loaded\n",
      "shard_12699 loaded\n",
      "shard_33341 loaded\n",
      "shard_15708 loaded\n",
      "shard_16760 loaded\n",
      "shard_39478 loaded\n",
      "shard_12422 loaded\n",
      "shard_7021 loaded\n",
      "shard_48950 loaded\n",
      "shard_28406 loaded\n",
      "shard_29544 loaded\n",
      "shard_40448 loaded\n",
      "shard_11353 loaded\n",
      "shard_25202 loaded\n",
      "shard_7741 loaded\n",
      "shard_24091 loaded\n",
      "shard_1753 loaded\n",
      "shard_47722 loaded\n",
      "shard_31532 loaded\n",
      "shard_29563 loaded\n",
      "shard_36488 loaded\n",
      "shard_39597 loaded\n",
      "shard_32148 loaded\n",
      "shard_28074 loaded\n",
      "shard_16404 loaded\n",
      "shard_46012 loaded\n",
      "shard_25843 loaded\n",
      "shard_47848 loaded\n",
      "shard_27768 loaded\n",
      "shard_44277 loaded\n",
      "shard_33513 loaded\n",
      "shard_45804 loaded\n",
      "shard_47197 loaded\n",
      "shard_28425 loaded\n",
      "shard_19259 loaded\n",
      "shard_34545 loaded\n",
      "shard_5619 loaded\n",
      "shard_21184 loaded\n",
      "shard_43786 loaded\n",
      "shard_17590 loaded\n",
      "shard_14709 loaded\n",
      "shard_24944 loaded\n",
      "shard_9415 loaded\n",
      "shard_8173 loaded\n",
      "shard_32161 loaded\n",
      "shard_24033 loaded\n",
      "shard_9882 loaded\n",
      "shard_7708 loaded\n",
      "shard_49725 loaded\n",
      "shard_18881 loaded\n",
      "shard_21735 loaded\n",
      "shard_33575 loaded\n",
      "shard_8422 loaded\n",
      "shard_30164 loaded\n",
      "shard_13487 loaded\n",
      "shard_17057 loaded\n",
      "shard_44574 loaded\n",
      "shard_15440 loaded\n",
      "shard_2136 loaded\n",
      "shard_47602 loaded\n",
      "shard_29964 loaded\n",
      "shard_49693 loaded\n",
      "shard_20822 loaded\n",
      "shard_34606 loaded\n",
      "shard_42924 loaded\n",
      "shard_16976 loaded\n",
      "shard_34249 loaded\n",
      "shard_29649 loaded\n",
      "shard_5131 loaded\n",
      "shard_9881 loaded\n",
      "shard_36684 loaded\n",
      "shard_30475 loaded\n",
      "shard_22562 loaded\n",
      "shard_28496 loaded\n",
      "shard_30369 loaded\n",
      "shard_23430 loaded\n",
      "shard_25999 loaded\n",
      "shard_21547 loaded\n",
      "shard_32955 loaded\n",
      "shard_20519 loaded\n",
      "shard_27310 loaded\n",
      "shard_42784 loaded\n",
      "shard_38716 loaded\n",
      "shard_31469 loaded\n",
      "shard_45711 loaded\n",
      "shard_3304 loaded\n",
      "shard_11839 loaded\n",
      "shard_23298 loaded\n",
      "shard_49925 loaded\n",
      "shard_33614 loaded\n",
      "shard_3068 loaded\n",
      "shard_24383 loaded\n",
      "shard_38003 loaded\n",
      "shard_4735 loaded\n",
      "shard_2386 loaded\n",
      "shard_44487 loaded\n",
      "shard_1116 loaded\n",
      "shard_20396 loaded\n",
      "shard_29517 loaded\n",
      "shard_28417 loaded\n",
      "shard_35240 loaded\n",
      "shard_33490 loaded\n",
      "shard_21935 loaded\n",
      "shard_35479 loaded\n",
      "shard_9330 loaded\n",
      "shard_15627 loaded\n",
      "shard_12917 loaded\n",
      "shard_11834 loaded\n",
      "shard_46161 loaded\n",
      "shard_5192 loaded\n",
      "shard_38632 loaded\n",
      "shard_22824 loaded\n",
      "shard_48576 loaded\n",
      "shard_31495 loaded\n",
      "shard_18775 loaded\n",
      "shard_43444 loaded\n",
      "shard_33017 loaded\n",
      "shard_24825 loaded\n",
      "shard_31421 loaded\n",
      "shard_14173 loaded\n",
      "shard_23399 loaded\n",
      "shard_22669 loaded\n",
      "shard_33836 loaded\n",
      "shard_14428 loaded\n",
      "shard_19304 loaded\n",
      "shard_10822 loaded\n",
      "shard_48864 loaded\n",
      "shard_46753 loaded\n",
      "shard_15958 loaded\n",
      "shard_34789 loaded\n",
      "shard_17491 loaded\n",
      "shard_34205 loaded\n",
      "shard_5406 loaded\n",
      "shard_32167 loaded\n",
      "shard_3697 loaded\n",
      "shard_13971 loaded\n",
      "shard_6011 loaded\n",
      "shard_15820 loaded\n",
      "shard_33895 loaded\n",
      "shard_263 loaded\n",
      "shard_18260 loaded\n",
      "shard_18515 loaded\n",
      "shard_33871 loaded\n",
      "shard_25501 loaded\n",
      "shard_20900 loaded\n",
      "shard_15934 loaded\n",
      "shard_10999 loaded\n",
      "shard_16301 loaded\n",
      "shard_13178 loaded\n",
      "shard_6443 loaded\n",
      "shard_22627 loaded\n",
      "shard_14194 loaded\n",
      "shard_34869 loaded\n",
      "shard_43904 loaded\n",
      "shard_19371 loaded\n",
      "shard_31094 loaded\n",
      "shard_25753 loaded\n",
      "shard_33033 loaded\n",
      "shard_45748 loaded\n",
      "shard_33344 loaded\n",
      "shard_18407 loaded\n",
      "shard_39091 loaded\n",
      "shard_10000 loaded\n",
      "shard_47790 loaded\n",
      "shard_38720 loaded\n",
      "shard_16137 loaded\n",
      "shard_26959 loaded\n",
      "shard_47213 loaded\n",
      "shard_11533 loaded\n",
      "shard_29774 loaded\n",
      "shard_3617 loaded\n",
      "shard_28339 loaded\n",
      "shard_23850 loaded\n",
      "shard_13797 loaded\n",
      "shard_49739 loaded\n",
      "shard_13176 loaded\n",
      "shard_3963 loaded\n",
      "shard_12615 loaded\n",
      "shard_31843 loaded\n",
      "shard_24465 loaded\n",
      "shard_31796 loaded\n",
      "shard_31607 loaded\n",
      "shard_42214 loaded\n",
      "shard_22236 loaded\n",
      "shard_48886 loaded\n",
      "shard_4484 loaded\n",
      "shard_8164 loaded\n",
      "shard_12424 loaded\n",
      "shard_24382 loaded\n",
      "shard_42385 loaded\n",
      "shard_46327 loaded\n",
      "shard_15315 loaded\n",
      "shard_40794 loaded\n",
      "shard_33337 loaded\n",
      "shard_33617 loaded\n",
      "shard_23546 loaded\n",
      "shard_28533 loaded\n",
      "shard_37888 loaded\n",
      "shard_21673 loaded\n",
      "shard_25503 loaded\n",
      "shard_17864 loaded\n",
      "shard_43320 loaded\n",
      "shard_153 loaded\n",
      "shard_45138 loaded\n",
      "shard_39468 loaded\n",
      "shard_37736 loaded\n",
      "shard_30029 loaded\n",
      "shard_24462 loaded\n",
      "shard_35526 loaded\n",
      "shard_40736 loaded\n",
      "shard_24412 loaded\n",
      "shard_7545 loaded\n",
      "shard_8439 loaded\n",
      "shard_40143 loaded\n",
      "shard_30884 loaded\n",
      "shard_29674 loaded\n",
      "shard_36729 loaded\n",
      "shard_22707 loaded\n",
      "shard_24810 loaded\n",
      "shard_37643 loaded\n",
      "shard_7591 loaded\n",
      "shard_20023 loaded\n",
      "shard_33884 loaded\n",
      "shard_32057 loaded\n",
      "shard_22708 loaded\n",
      "shard_16959 loaded\n",
      "shard_10572 loaded\n",
      "shard_38768 loaded\n",
      "shard_48502 loaded\n",
      "shard_49022 loaded\n",
      "shard_47180 loaded\n",
      "shard_43252 loaded\n",
      "shard_47557 loaded\n",
      "shard_15761 loaded\n",
      "shard_35042 loaded\n",
      "shard_7395 loaded\n",
      "shard_844 loaded\n",
      "shard_14094 loaded\n",
      "shard_20292 loaded\n",
      "shard_3560 loaded\n",
      "shard_18092 loaded\n",
      "shard_24261 loaded\n",
      "shard_47526 loaded\n",
      "shard_7135 loaded\n",
      "shard_25885 loaded\n",
      "shard_6281 loaded\n",
      "shard_28126 loaded\n",
      "shard_31218 loaded\n",
      "shard_35152 loaded\n",
      "shard_3422 loaded\n",
      "shard_3356 loaded\n",
      "shard_42587 loaded\n",
      "shard_23747 loaded\n",
      "shard_10253 loaded\n",
      "shard_19709 loaded\n",
      "shard_701 loaded\n",
      "shard_44668 loaded\n",
      "shard_34121 loaded\n",
      "shard_9536 loaded\n",
      "shard_23716 loaded\n",
      "shard_39973 loaded\n",
      "shard_43137 loaded\n",
      "shard_44811 loaded\n",
      "shard_10278 loaded\n",
      "shard_9715 loaded\n",
      "shard_29460 loaded\n",
      "shard_38976 loaded\n",
      "shard_6651 loaded\n",
      "shard_20288 loaded\n",
      "shard_32956 loaded\n",
      "shard_3453 loaded\n",
      "shard_49703 loaded\n",
      "shard_9401 loaded\n",
      "shard_7504 loaded\n",
      "shard_4936 loaded\n",
      "shard_32736 loaded\n",
      "shard_46743 loaded\n",
      "shard_47135 loaded\n",
      "shard_11669 loaded\n",
      "shard_47420 loaded\n",
      "shard_43422 loaded\n",
      "shard_42397 loaded\n",
      "shard_7915 loaded\n",
      "shard_37516 loaded\n",
      "shard_44507 loaded\n",
      "shard_8442 loaded\n",
      "shard_2370 loaded\n",
      "shard_15596 loaded\n",
      "shard_35249 loaded\n",
      "shard_48844 loaded\n",
      "shard_12638 loaded\n",
      "shard_10350 loaded\n",
      "shard_36261 loaded\n",
      "shard_7993 loaded\n",
      "shard_8662 loaded\n",
      "shard_37751 loaded\n",
      "shard_4913 loaded\n",
      "shard_29943 loaded\n",
      "shard_5754 loaded\n",
      "shard_34562 loaded\n",
      "shard_32960 loaded\n",
      "shard_36929 loaded\n",
      "shard_48076 loaded\n",
      "shard_18909 loaded\n",
      "shard_12644 loaded\n",
      "shard_19695 loaded\n",
      "shard_25618 loaded\n",
      "shard_2948 loaded\n",
      "shard_42990 loaded\n",
      "shard_20087 loaded\n",
      "shard_46127 loaded\n",
      "shard_45365 loaded\n",
      "shard_29002 loaded\n",
      "shard_38990 loaded\n",
      "shard_18643 loaded\n",
      "shard_44109 loaded\n",
      "shard_46234 loaded\n",
      "shard_32699 loaded\n",
      "shard_42581 loaded\n",
      "shard_5256 loaded\n",
      "shard_10161 loaded\n",
      "shard_14035 loaded\n",
      "shard_25363 loaded\n",
      "shard_46445 loaded\n",
      "shard_28697 loaded\n",
      "shard_8569 loaded\n",
      "shard_28246 loaded\n",
      "shard_47922 loaded\n",
      "shard_24523 loaded\n",
      "shard_49820 loaded\n",
      "shard_29359 loaded\n",
      "shard_9314 loaded\n",
      "shard_30647 loaded\n",
      "shard_32480 loaded\n",
      "shard_27105 loaded\n",
      "shard_31648 loaded\n",
      "shard_14668 loaded\n",
      "shard_29586 loaded\n",
      "shard_18469 loaded\n",
      "shard_11360 loaded\n",
      "shard_3854 loaded\n",
      "shard_26441 loaded\n",
      "shard_5221 loaded\n",
      "shard_9711 loaded\n",
      "shard_38266 loaded\n",
      "shard_16840 loaded\n",
      "shard_39510 loaded\n",
      "shard_38227 loaded\n",
      "shard_9483 loaded\n",
      "shard_35941 loaded\n",
      "shard_25754 loaded\n",
      "shard_4850 loaded\n",
      "shard_17027 loaded\n",
      "shard_26894 loaded\n",
      "shard_9889 loaded\n",
      "shard_35229 loaded\n",
      "shard_44031 loaded\n",
      "shard_44216 loaded\n",
      "shard_27865 loaded\n",
      "shard_40679 loaded\n",
      "shard_32288 loaded\n",
      "shard_20367 loaded\n",
      "shard_38848 loaded\n",
      "shard_17193 loaded\n",
      "shard_4209 loaded\n",
      "shard_9809 loaded\n",
      "shard_41302 loaded\n",
      "shard_6100 loaded\n",
      "shard_10313 loaded\n",
      "shard_44095 loaded\n",
      "shard_855 loaded\n",
      "shard_7393 loaded\n",
      "shard_36190 loaded\n",
      "shard_49870 loaded\n",
      "shard_28961 loaded\n",
      "shard_39541 loaded\n",
      "shard_27172 loaded\n",
      "shard_29843 loaded\n",
      "shard_30092 loaded\n",
      "shard_35663 loaded\n",
      "shard_29585 loaded\n",
      "shard_38202 loaded\n",
      "shard_25870 loaded\n",
      "shard_49837 loaded\n",
      "shard_25236 loaded\n",
      "shard_32098 loaded\n",
      "shard_37970 loaded\n",
      "shard_27721 loaded\n",
      "shard_45190 loaded\n",
      "shard_23337 loaded\n",
      "shard_31346 loaded\n",
      "shard_34005 loaded\n",
      "shard_41996 loaded\n",
      "shard_32225 loaded\n",
      "shard_27519 loaded\n",
      "shard_49101 loaded\n",
      "shard_24638 loaded\n",
      "shard_46173 loaded\n",
      "shard_31214 loaded\n",
      "shard_175 loaded\n",
      "shard_39575 loaded\n",
      "shard_16431 loaded\n",
      "shard_34248 loaded\n",
      "shard_11104 loaded\n",
      "shard_30958 loaded\n",
      "shard_49324 loaded\n",
      "shard_16583 loaded\n",
      "shard_41571 loaded\n",
      "shard_42856 loaded\n",
      "shard_38189 loaded\n",
      "shard_22154 loaded\n",
      "shard_45163 loaded\n",
      "shard_17099 loaded\n",
      "shard_43662 loaded\n",
      "shard_35248 loaded\n",
      "shard_27324 loaded\n",
      "shard_17970 loaded\n",
      "shard_8303 loaded\n",
      "shard_49829 loaded\n",
      "shard_46104 loaded\n",
      "shard_32172 loaded\n",
      "shard_17055 loaded\n",
      "shard_37406 loaded\n",
      "shard_7405 loaded\n",
      "shard_7905 loaded\n",
      "shard_23132 loaded\n",
      "shard_16113 loaded\n",
      "shard_41119 loaded\n",
      "shard_38899 loaded\n",
      "shard_33205 loaded\n",
      "shard_45491 loaded\n",
      "shard_28748 loaded\n",
      "shard_38925 loaded\n",
      "shard_43154 loaded\n",
      "shard_2988 loaded\n",
      "shard_2060 loaded\n",
      "shard_8461 loaded\n",
      "shard_47102 loaded\n",
      "shard_22872 loaded\n",
      "shard_33451 loaded\n",
      "shard_18026 loaded\n",
      "shard_28374 loaded\n",
      "shard_48910 loaded\n",
      "shard_8398 loaded\n",
      "shard_11986 loaded\n",
      "shard_32678 loaded\n",
      "shard_12048 loaded\n",
      "shard_22309 loaded\n",
      "shard_5525 loaded\n",
      "shard_37991 loaded\n",
      "shard_48219 loaded\n",
      "shard_25745 loaded\n",
      "shard_2428 loaded\n",
      "shard_1467 loaded\n",
      "shard_34638 loaded\n",
      "shard_29411 loaded\n",
      "shard_39006 loaded\n",
      "shard_7291 loaded\n",
      "shard_41885 loaded\n",
      "shard_11724 loaded\n",
      "shard_47072 loaded\n",
      "shard_28699 loaded\n",
      "shard_25427 loaded\n",
      "shard_44372 loaded\n",
      "shard_32236 loaded\n",
      "shard_11149 loaded\n",
      "shard_8054 loaded\n",
      "shard_15859 loaded\n",
      "shard_20732 loaded\n",
      "shard_25174 loaded\n",
      "shard_40638 loaded\n",
      "shard_33237 loaded\n",
      "shard_13758 loaded\n",
      "shard_20522 loaded\n",
      "shard_12687 loaded\n",
      "shard_16050 loaded\n",
      "shard_11546 loaded\n",
      "shard_37238 loaded\n",
      "shard_16517 loaded\n",
      "shard_7925 loaded\n",
      "shard_23062 loaded\n",
      "shard_16491 loaded\n",
      "shard_40990 loaded\n",
      "shard_32741 loaded\n",
      "shard_10260 loaded\n",
      "shard_11567 loaded\n",
      "shard_19369 loaded\n",
      "shard_21137 loaded\n",
      "shard_25844 loaded\n",
      "shard_2215 loaded\n",
      "shard_5253 loaded\n",
      "shard_19397 loaded\n",
      "shard_12152 loaded\n",
      "shard_17054 loaded\n",
      "shard_13046 loaded\n",
      "shard_31424 loaded\n",
      "shard_11007 loaded\n",
      "shard_846 loaded\n",
      "shard_7331 loaded\n",
      "shard_11207 loaded\n",
      "shard_45469 loaded\n",
      "shard_13131 loaded\n",
      "shard_35785 loaded\n",
      "shard_14435 loaded\n",
      "shard_20041 loaded\n",
      "shard_10881 loaded\n",
      "shard_8620 loaded\n",
      "shard_13224 loaded\n",
      "shard_28505 loaded\n",
      "shard_46612 loaded\n",
      "shard_20553 loaded\n",
      "shard_33960 loaded\n",
      "shard_7210 loaded\n",
      "shard_16656 loaded\n",
      "shard_26417 loaded\n",
      "shard_28062 loaded\n",
      "shard_6968 loaded\n",
      "shard_20448 loaded\n",
      "shard_9161 loaded\n",
      "shard_20788 loaded\n",
      "shard_18654 loaded\n",
      "shard_12961 loaded\n",
      "shard_6070 loaded\n",
      "shard_28029 loaded\n",
      "shard_1999 loaded\n",
      "shard_40338 loaded\n",
      "shard_11719 loaded\n",
      "shard_46875 loaded\n",
      "shard_40385 loaded\n",
      "shard_7778 loaded\n",
      "shard_31615 loaded\n",
      "shard_30191 loaded\n",
      "shard_47054 loaded\n",
      "shard_11175 loaded\n",
      "shard_31420 loaded\n",
      "shard_7057 loaded\n",
      "shard_6423 loaded\n",
      "shard_28238 loaded\n",
      "shard_47726 loaded\n",
      "shard_8132 loaded\n",
      "shard_33293 loaded\n",
      "shard_18951 loaded\n",
      "shard_40345 loaded\n",
      "shard_44526 loaded\n",
      "shard_10251 loaded\n",
      "shard_16300 loaded\n",
      "shard_3460 loaded\n",
      "shard_32350 loaded\n",
      "shard_36194 loaded\n",
      "shard_46386 loaded\n",
      "shard_19139 loaded\n",
      "shard_49539 loaded\n",
      "shard_16890 loaded\n",
      "shard_34044 loaded\n",
      "shard_2741 loaded\n",
      "shard_28516 loaded\n",
      "shard_9118 loaded\n",
      "shard_29203 loaded\n",
      "shard_35221 loaded\n",
      "shard_26213 loaded\n",
      "shard_35132 loaded\n",
      "shard_9637 loaded\n",
      "shard_36992 loaded\n",
      "shard_23339 loaded\n",
      "shard_21069 loaded\n",
      "shard_49851 loaded\n",
      "shard_2272 loaded\n",
      "shard_32475 loaded\n",
      "shard_27411 loaded\n",
      "shard_24561 loaded\n",
      "shard_27558 loaded\n",
      "shard_37998 loaded\n",
      "shard_17197 loaded\n",
      "shard_944 loaded\n",
      "shard_17521 loaded\n",
      "shard_35116 loaded\n",
      "shard_25672 loaded\n",
      "shard_10360 loaded\n",
      "shard_39329 loaded\n",
      "shard_6261 loaded\n",
      "shard_10182 loaded\n",
      "shard_182 loaded\n",
      "shard_33156 loaded\n",
      "shard_7832 loaded\n",
      "shard_16965 loaded\n",
      "shard_40153 loaded\n",
      "shard_39614 loaded\n",
      "shard_17129 loaded\n",
      "shard_4592 loaded\n",
      "shard_28455 loaded\n",
      "shard_43023 loaded\n",
      "shard_28311 loaded\n",
      "shard_3322 loaded\n",
      "shard_37009 loaded\n",
      "shard_971 loaded\n",
      "shard_33004 loaded\n",
      "shard_1792 loaded\n",
      "shard_5777 loaded\n",
      "shard_33588 loaded\n",
      "shard_48140 loaded\n",
      "shard_4282 loaded\n",
      "shard_43819 loaded\n",
      "shard_15537 loaded\n",
      "shard_15198 loaded\n",
      "shard_6986 loaded\n",
      "shard_6336 loaded\n",
      "shard_43523 loaded\n",
      "shard_4329 loaded\n",
      "shard_785 loaded\n",
      "shard_37147 loaded\n",
      "shard_46391 loaded\n",
      "shard_35024 loaded\n",
      "shard_41315 loaded\n",
      "shard_7572 loaded\n",
      "shard_36860 loaded\n",
      "shard_11826 loaded\n",
      "shard_17861 loaded\n",
      "shard_48541 loaded\n",
      "shard_8538 loaded\n",
      "shard_35385 loaded\n",
      "shard_48277 loaded\n",
      "shard_38739 loaded\n",
      "shard_3691 loaded\n",
      "shard_25480 loaded\n",
      "shard_33534 loaded\n",
      "shard_40645 loaded\n",
      "shard_13951 loaded\n",
      "shard_47674 loaded\n",
      "shard_14703 loaded\n",
      "shard_22466 loaded\n",
      "shard_16359 loaded\n",
      "shard_19335 loaded\n",
      "shard_42898 loaded\n",
      "shard_6090 loaded\n",
      "shard_47759 loaded\n",
      "shard_30551 loaded\n",
      "shard_2335 loaded\n",
      "shard_14115 loaded\n",
      "shard_8329 loaded\n",
      "shard_25790 loaded\n",
      "shard_41198 loaded\n",
      "shard_24315 loaded\n",
      "shard_35768 loaded\n",
      "shard_29809 loaded\n",
      "shard_21879 loaded\n",
      "shard_81 loaded\n",
      "shard_2410 loaded\n",
      "shard_4541 loaded\n",
      "shard_7076 loaded\n",
      "shard_16459 loaded\n",
      "shard_34795 loaded\n",
      "shard_16876 loaded\n",
      "shard_24548 loaded\n",
      "shard_22021 loaded\n",
      "shard_16945 loaded\n",
      "shard_6311 loaded\n",
      "shard_6515 loaded\n",
      "shard_5237 loaded\n",
      "shard_45139 loaded\n",
      "shard_3314 loaded\n",
      "shard_7158 loaded\n",
      "shard_19810 loaded\n",
      "shard_44634 loaded\n",
      "shard_18335 loaded\n",
      "shard_13412 loaded\n",
      "shard_35305 loaded\n",
      "shard_3252 loaded\n",
      "shard_11324 loaded\n",
      "shard_32784 loaded\n",
      "shard_4495 loaded\n",
      "shard_23223 loaded\n",
      "shard_19615 loaded\n",
      "shard_24514 loaded\n",
      "shard_36299 loaded\n",
      "shard_47134 loaded\n",
      "shard_23158 loaded\n",
      "shard_21189 loaded\n",
      "shard_28157 loaded\n",
      "shard_11085 loaded\n",
      "shard_16003 loaded\n",
      "shard_31402 loaded\n",
      "shard_31504 loaded\n",
      "shard_39422 loaded\n",
      "shard_4140 loaded\n",
      "shard_26479 loaded\n",
      "shard_45855 loaded\n",
      "shard_11357 loaded\n",
      "shard_34464 loaded\n",
      "shard_28307 loaded\n",
      "shard_28083 loaded\n",
      "shard_41077 loaded\n",
      "shard_11431 loaded\n",
      "shard_15277 loaded\n",
      "shard_24983 loaded\n",
      "shard_28091 loaded\n",
      "shard_13603 loaded\n",
      "shard_39674 loaded\n",
      "shard_841 loaded\n",
      "shard_46872 loaded\n",
      "shard_16128 loaded\n",
      "shard_43475 loaded\n",
      "shard_26051 loaded\n",
      "shard_25451 loaded\n",
      "shard_30418 loaded\n",
      "shard_3767 loaded\n",
      "shard_25390 loaded\n",
      "shard_39085 loaded\n",
      "shard_47511 loaded\n",
      "shard_27430 loaded\n",
      "shard_25984 loaded\n",
      "shard_45086 loaded\n",
      "shard_1655 loaded\n",
      "shard_36494 loaded\n",
      "shard_39015 loaded\n",
      "shard_16355 loaded\n",
      "shard_9610 loaded\n",
      "shard_4019 loaded\n",
      "shard_5791 loaded\n",
      "shard_46710 loaded\n",
      "shard_43206 loaded\n",
      "shard_10100 loaded\n",
      "shard_41078 loaded\n",
      "shard_6493 loaded\n",
      "shard_21745 loaded\n",
      "shard_33445 loaded\n",
      "shard_35712 loaded\n",
      "shard_47672 loaded\n",
      "shard_45663 loaded\n",
      "shard_47993 loaded\n",
      "shard_24844 loaded\n",
      "shard_39424 loaded\n",
      "shard_2217 loaded\n",
      "shard_32428 loaded\n",
      "shard_11505 loaded\n",
      "shard_3558 loaded\n",
      "shard_36961 loaded\n",
      "shard_45013 loaded\n",
      "shard_8955 loaded\n",
      "shard_5633 loaded\n",
      "shard_1099 loaded\n",
      "shard_23641 loaded\n",
      "shard_19634 loaded\n",
      "shard_46792 loaded\n",
      "shard_19285 loaded\n",
      "shard_37563 loaded\n",
      "shard_22421 loaded\n",
      "shard_16334 loaded\n",
      "shard_26944 loaded\n",
      "shard_30527 loaded\n",
      "shard_18968 loaded\n",
      "shard_5319 loaded\n",
      "shard_38950 loaded\n",
      "shard_32431 loaded\n",
      "shard_14246 loaded\n",
      "shard_3869 loaded\n",
      "shard_25464 loaded\n",
      "shard_40880 loaded\n",
      "shard_4607 loaded\n",
      "shard_29650 loaded\n",
      "shard_30371 loaded\n",
      "shard_34176 loaded\n",
      "shard_15487 loaded\n",
      "shard_36806 loaded\n",
      "shard_14989 loaded\n",
      "shard_6474 loaded\n",
      "shard_35897 loaded\n",
      "shard_37055 loaded\n",
      "shard_17945 loaded\n",
      "shard_8053 loaded\n",
      "shard_1955 loaded\n",
      "shard_12058 loaded\n",
      "shard_22014 loaded\n",
      "shard_89 loaded\n",
      "shard_26403 loaded\n",
      "shard_6378 loaded\n",
      "shard_13004 loaded\n",
      "shard_49153 loaded\n",
      "shard_25685 loaded\n",
      "shard_4094 loaded\n",
      "shard_10786 loaded\n",
      "shard_39846 loaded\n",
      "shard_44885 loaded\n",
      "shard_38349 loaded\n",
      "shard_19569 loaded\n",
      "shard_5872 loaded\n",
      "shard_20859 loaded\n",
      "shard_6333 loaded\n",
      "shard_20167 loaded\n",
      "shard_8600 loaded\n",
      "shard_37784 loaded\n",
      "shard_13873 loaded\n",
      "shard_7267 loaded\n",
      "shard_24355 loaded\n",
      "shard_18551 loaded\n",
      "shard_18483 loaded\n",
      "shard_26067 loaded\n",
      "shard_37530 loaded\n",
      "shard_46538 loaded\n",
      "shard_24993 loaded\n",
      "shard_18884 loaded\n",
      "shard_25326 loaded\n",
      "shard_10013 loaded\n",
      "shard_8402 loaded\n",
      "shard_24450 loaded\n",
      "shard_42185 loaded\n",
      "shard_31363 loaded\n",
      "shard_2052 loaded\n",
      "shard_29410 loaded\n",
      "shard_34006 loaded\n",
      "shard_14419 loaded\n",
      "shard_11081 loaded\n",
      "shard_26752 loaded\n",
      "shard_33913 loaded\n",
      "shard_38054 loaded\n",
      "shard_40114 loaded\n",
      "shard_26671 loaded\n",
      "shard_49605 loaded\n",
      "shard_44881 loaded\n",
      "shard_32263 loaded\n",
      "shard_35807 loaded\n",
      "shard_24189 loaded\n",
      "shard_32671 loaded\n",
      "shard_14646 loaded\n",
      "shard_42408 loaded\n",
      "shard_32914 loaded\n",
      "shard_40676 loaded\n",
      "shard_24819 loaded\n",
      "shard_30689 loaded\n",
      "shard_37090 loaded\n",
      "shard_8443 loaded\n",
      "shard_11058 loaded\n",
      "shard_36771 loaded\n",
      "shard_30195 loaded\n",
      "shard_7955 loaded\n",
      "shard_44246 loaded\n",
      "shard_13168 loaded\n",
      "shard_10404 loaded\n",
      "shard_29206 loaded\n",
      "shard_30886 loaded\n",
      "shard_28316 loaded\n",
      "shard_13755 loaded\n",
      "shard_495 loaded\n",
      "shard_13972 loaded\n",
      "shard_33229 loaded\n",
      "shard_6587 loaded\n",
      "shard_9254 loaded\n",
      "shard_23188 loaded\n",
      "shard_30631 loaded\n",
      "shard_30188 loaded\n",
      "shard_45648 loaded\n",
      "shard_35562 loaded\n",
      "shard_21332 loaded\n",
      "shard_45165 loaded\n",
      "shard_23311 loaded\n",
      "shard_49012 loaded\n",
      "shard_21479 loaded\n",
      "shard_1435 loaded\n",
      "shard_33413 loaded\n",
      "shard_37422 loaded\n",
      "shard_37814 loaded\n",
      "shard_32775 loaded\n",
      "shard_5638 loaded\n",
      "shard_48610 loaded\n",
      "shard_11314 loaded\n",
      "shard_6009 loaded\n",
      "shard_6361 loaded\n",
      "shard_46851 loaded\n",
      "shard_46120 loaded\n",
      "shard_43449 loaded\n",
      "shard_34602 loaded\n",
      "shard_16972 loaded\n",
      "shard_12660 loaded\n",
      "shard_25810 loaded\n",
      "shard_41564 loaded\n",
      "shard_29796 loaded\n",
      "shard_20654 loaded\n",
      "shard_32354 loaded\n",
      "shard_20127 loaded\n",
      "shard_5165 loaded\n",
      "shard_10282 loaded\n",
      "shard_32532 loaded\n",
      "shard_38000 loaded\n",
      "shard_18076 loaded\n",
      "shard_25261 loaded\n",
      "shard_45137 loaded\n",
      "shard_21160 loaded\n",
      "shard_9834 loaded\n",
      "shard_3980 loaded\n",
      "shard_28124 loaded\n",
      "shard_18450 loaded\n",
      "shard_40813 loaded\n",
      "shard_39654 loaded\n",
      "shard_43970 loaded\n",
      "shard_27317 loaded\n",
      "shard_47345 loaded\n",
      "shard_47052 loaded\n",
      "shard_35784 loaded\n",
      "shard_30041 loaded\n",
      "shard_42860 loaded\n",
      "shard_11838 loaded\n",
      "shard_38318 loaded\n",
      "shard_21402 loaded\n",
      "shard_25391 loaded\n",
      "shard_31441 loaded\n",
      "shard_17174 loaded\n",
      "shard_49525 loaded\n",
      "shard_1587 loaded\n",
      "shard_29689 loaded\n",
      "shard_24258 loaded\n",
      "shard_44335 loaded\n",
      "shard_31258 loaded\n",
      "shard_14235 loaded\n",
      "shard_48529 loaded\n",
      "shard_2732 loaded\n",
      "shard_48272 loaded\n",
      "shard_15462 loaded\n",
      "shard_43139 loaded\n",
      "shard_36256 loaded\n",
      "shard_4396 loaded\n",
      "shard_33138 loaded\n",
      "shard_36749 loaded\n",
      "shard_48124 loaded\n",
      "shard_22584 loaded\n",
      "shard_26284 loaded\n",
      "shard_37798 loaded\n",
      "shard_23505 loaded\n",
      "shard_39539 loaded\n",
      "shard_6193 loaded\n",
      "shard_25057 loaded\n",
      "shard_49865 loaded\n",
      "shard_22740 loaded\n",
      "shard_14021 loaded\n",
      "shard_38376 loaded\n",
      "shard_27875 loaded\n",
      "shard_38857 loaded\n",
      "shard_8948 loaded\n",
      "shard_20070 loaded\n",
      "shard_32735 loaded\n",
      "shard_17580 loaded\n",
      "shard_658 loaded\n",
      "shard_21853 loaded\n",
      "shard_25891 loaded\n",
      "shard_40135 loaded\n",
      "shard_17916 loaded\n",
      "shard_10488 loaded\n",
      "shard_19430 loaded\n",
      "shard_30876 loaded\n",
      "shard_16333 loaded\n",
      "shard_43295 loaded\n",
      "shard_5871 loaded\n",
      "shard_10449 loaded\n",
      "shard_17405 loaded\n",
      "shard_44003 loaded\n",
      "shard_45978 loaded\n",
      "shard_39877 loaded\n",
      "shard_10536 loaded\n",
      "shard_29600 loaded\n",
      "shard_47870 loaded\n",
      "shard_6285 loaded\n",
      "shard_14712 loaded\n",
      "shard_25003 loaded\n",
      "shard_13084 loaded\n",
      "shard_7684 loaded\n",
      "shard_31967 loaded\n",
      "shard_21931 loaded\n",
      "shard_7124 loaded\n",
      "shard_17067 loaded\n",
      "shard_23007 loaded\n",
      "shard_5226 loaded\n",
      "shard_4759 loaded\n",
      "shard_1794 loaded\n",
      "shard_36600 loaded\n",
      "shard_6389 loaded\n",
      "shard_44557 loaded\n",
      "shard_10139 loaded\n",
      "shard_11694 loaded\n",
      "shard_46030 loaded\n",
      "shard_22286 loaded\n",
      "shard_34579 loaded\n",
      "shard_45329 loaded\n",
      "shard_46495 loaded\n",
      "shard_39350 loaded\n",
      "shard_32592 loaded\n",
      "shard_16306 loaded\n",
      "shard_28460 loaded\n",
      "shard_7432 loaded\n",
      "shard_18769 loaded\n",
      "shard_37632 loaded\n",
      "shard_43785 loaded\n",
      "shard_12483 loaded\n",
      "shard_14891 loaded\n",
      "shard_36831 loaded\n",
      "shard_9942 loaded\n",
      "shard_41976 loaded\n",
      "shard_4692 loaded\n",
      "shard_19340 loaded\n",
      "shard_8809 loaded\n",
      "shard_16991 loaded\n",
      "shard_18720 loaded\n",
      "shard_39205 loaded\n",
      "shard_3155 loaded\n",
      "shard_22830 loaded\n",
      "shard_19074 loaded\n",
      "shard_23930 loaded\n",
      "shard_41750 loaded\n",
      "shard_39048 loaded\n",
      "shard_33416 loaded\n",
      "shard_36109 loaded\n",
      "shard_15767 loaded\n",
      "shard_21718 loaded\n",
      "shard_6536 loaded\n",
      "shard_29659 loaded\n",
      "shard_31680 loaded\n",
      "shard_25405 loaded\n",
      "shard_36368 loaded\n",
      "shard_41099 loaded\n",
      "shard_8978 loaded\n",
      "shard_32969 loaded\n",
      "shard_11667 loaded\n",
      "shard_39036 loaded\n",
      "shard_32842 loaded\n",
      "shard_13981 loaded\n",
      "shard_22698 loaded\n",
      "shard_15332 loaded\n",
      "shard_33762 loaded\n",
      "shard_38585 loaded\n",
      "shard_8135 loaded\n",
      "shard_6725 loaded\n",
      "shard_47521 loaded\n",
      "shard_12926 loaded\n",
      "shard_27587 loaded\n",
      "shard_48697 loaded\n",
      "shard_4763 loaded\n",
      "shard_47564 loaded\n",
      "shard_6343 loaded\n",
      "shard_33481 loaded\n",
      "shard_26078 loaded\n",
      "shard_48089 loaded\n",
      "shard_286 loaded\n",
      "shard_21928 loaded\n",
      "shard_17289 loaded\n",
      "shard_36798 loaded\n",
      "shard_35326 loaded\n",
      "shard_39195 loaded\n",
      "shard_15518 loaded\n",
      "shard_864 loaded\n",
      "shard_30373 loaded\n",
      "shard_45721 loaded\n",
      "shard_28217 loaded\n",
      "shard_40264 loaded\n",
      "shard_755 loaded\n",
      "shard_44000 loaded\n",
      "shard_35108 loaded\n",
      "shard_1310 loaded\n",
      "shard_14034 loaded\n",
      "shard_14449 loaded\n",
      "shard_13893 loaded\n",
      "shard_32762 loaded\n",
      "shard_37498 loaded\n",
      "shard_2668 loaded\n",
      "shard_11038 loaded\n",
      "shard_27661 loaded\n",
      "shard_26274 loaded\n",
      "shard_27775 loaded\n",
      "shard_16062 loaded\n",
      "shard_15597 loaded\n",
      "shard_19927 loaded\n",
      "shard_47260 loaded\n",
      "shard_41765 loaded\n",
      "shard_37686 loaded\n",
      "shard_22280 loaded\n",
      "shard_24698 loaded\n",
      "shard_48958 loaded\n",
      "shard_18179 loaded\n",
      "shard_3293 loaded\n",
      "shard_48461 loaded\n",
      "shard_14319 loaded\n",
      "shard_24088 loaded\n",
      "shard_26334 loaded\n",
      "shard_31586 loaded\n",
      "shard_12734 loaded\n",
      "shard_23786 loaded\n",
      "shard_29187 loaded\n",
      "shard_48145 loaded\n",
      "shard_11053 loaded\n",
      "shard_22900 loaded\n",
      "shard_27077 loaded\n",
      "shard_13862 loaded\n",
      "shard_28975 loaded\n",
      "shard_19827 loaded\n",
      "shard_46390 loaded\n",
      "shard_22 loaded\n",
      "shard_38980 loaded\n",
      "shard_14357 loaded\n",
      "shard_19662 loaded\n",
      "shard_28924 loaded\n",
      "shard_408 loaded\n",
      "shard_15728 loaded\n",
      "shard_19357 loaded\n",
      "shard_44410 loaded\n",
      "shard_23317 loaded\n",
      "shard_11235 loaded\n",
      "shard_34674 loaded\n",
      "shard_4058 loaded\n",
      "shard_44316 loaded\n",
      "shard_32272 loaded\n",
      "shard_41244 loaded\n",
      "shard_16609 loaded\n",
      "shard_10228 loaded\n",
      "shard_19986 loaded\n",
      "shard_34353 loaded\n",
      "shard_12259 loaded\n",
      "shard_25635 loaded\n",
      "shard_36524 loaded\n",
      "shard_47621 loaded\n",
      "shard_41966 loaded\n",
      "shard_41030 loaded\n",
      "shard_49405 loaded\n",
      "shard_34569 loaded\n",
      "shard_14469 loaded\n",
      "shard_27517 loaded\n",
      "shard_7588 loaded\n",
      "shard_48559 loaded\n",
      "shard_49422 loaded\n",
      "shard_23068 loaded\n",
      "shard_809 loaded\n",
      "shard_34941 loaded\n",
      "shard_22235 loaded\n",
      "shard_27060 loaded\n",
      "shard_46004 loaded\n",
      "shard_13153 loaded\n",
      "shard_11555 loaded\n",
      "shard_9658 loaded\n",
      "shard_22565 loaded\n",
      "shard_9970 loaded\n",
      "shard_4966 loaded\n",
      "shard_30372 loaded\n",
      "shard_41016 loaded\n",
      "shard_19100 loaded\n",
      "shard_38472 loaded\n",
      "shard_7817 loaded\n",
      "shard_43340 loaded\n",
      "shard_46933 loaded\n",
      "shard_27936 loaded\n",
      "shard_44768 loaded\n",
      "shard_9395 loaded\n",
      "shard_32760 loaded\n",
      "shard_27452 loaded\n",
      "shard_5626 loaded\n",
      "shard_40410 loaded\n",
      "shard_22292 loaded\n",
      "shard_26137 loaded\n",
      "shard_30458 loaded\n",
      "shard_47565 loaded\n",
      "shard_37843 loaded\n",
      "shard_6736 loaded\n",
      "shard_49210 loaded\n",
      "shard_28669 loaded\n",
      "shard_45228 loaded\n",
      "shard_24214 loaded\n",
      "shard_8273 loaded\n",
      "shard_13065 loaded\n",
      "shard_16853 loaded\n",
      "shard_20456 loaded\n",
      "shard_21421 loaded\n",
      "shard_28840 loaded\n",
      "shard_12356 loaded\n",
      "shard_39010 loaded\n",
      "shard_33929 loaded\n",
      "shard_24350 loaded\n",
      "shard_28423 loaded\n",
      "shard_41860 loaded\n",
      "shard_41682 loaded\n",
      "shard_27545 loaded\n",
      "shard_11289 loaded\n",
      "shard_6467 loaded\n",
      "shard_32952 loaded\n",
      "shard_35302 loaded\n",
      "shard_45808 loaded\n",
      "shard_6944 loaded\n",
      "shard_48870 loaded\n",
      "shard_31617 loaded\n",
      "shard_35354 loaded\n",
      "shard_41102 loaded\n",
      "shard_34170 loaded\n",
      "shard_25563 loaded\n",
      "shard_44606 loaded\n",
      "shard_27668 loaded\n",
      "shard_34914 loaded\n",
      "shard_5243 loaded\n",
      "shard_25088 loaded\n",
      "shard_37674 loaded\n",
      "shard_19119 loaded\n",
      "shard_848 loaded\n",
      "shard_11861 loaded\n",
      "shard_2454 loaded\n",
      "shard_21985 loaded\n",
      "shard_48341 loaded\n",
      "shard_6046 loaded\n",
      "shard_12936 loaded\n",
      "shard_41204 loaded\n",
      "shard_14583 loaded\n",
      "shard_44534 loaded\n",
      "shard_2148 loaded\n",
      "shard_6786 loaded\n",
      "shard_37019 loaded\n",
      "shard_22836 loaded\n",
      "shard_47374 loaded\n",
      "shard_29315 loaded\n",
      "shard_44629 loaded\n",
      "shard_7315 loaded\n",
      "shard_11796 loaded\n",
      "shard_5769 loaded\n",
      "shard_26278 loaded\n",
      "shard_34026 loaded\n",
      "shard_49861 loaded\n",
      "shard_5120 loaded\n",
      "shard_33369 loaded\n",
      "shard_10728 loaded\n",
      "shard_8251 loaded\n",
      "shard_7384 loaded\n",
      "shard_9743 loaded\n",
      "shard_30627 loaded\n",
      "shard_16029 loaded\n",
      "shard_45719 loaded\n",
      "shard_102 loaded\n",
      "shard_19392 loaded\n",
      "shard_13473 loaded\n",
      "shard_5884 loaded\n",
      "shard_25328 loaded\n",
      "shard_7754 loaded\n",
      "shard_18309 loaded\n",
      "shard_2074 loaded\n",
      "shard_21521 loaded\n",
      "shard_2360 loaded\n",
      "shard_32267 loaded\n",
      "shard_21107 loaded\n",
      "shard_42368 loaded\n",
      "shard_18733 loaded\n",
      "shard_16097 loaded\n",
      "shard_16566 loaded\n",
      "shard_35309 loaded\n",
      "shard_35490 loaded\n",
      "shard_38178 loaded\n",
      "shard_9120 loaded\n",
      "shard_23191 loaded\n",
      "shard_34710 loaded\n",
      "shard_37583 loaded\n",
      "shard_17649 loaded\n",
      "shard_37663 loaded\n",
      "shard_34892 loaded\n",
      "shard_33328 loaded\n",
      "shard_12856 loaded\n",
      "shard_4523 loaded\n",
      "shard_26010 loaded\n",
      "shard_41706 loaded\n",
      "shard_46992 loaded\n",
      "shard_13071 loaded\n",
      "shard_1244 loaded\n",
      "shard_39585 loaded\n",
      "shard_18823 loaded\n",
      "shard_12509 loaded\n",
      "shard_7520 loaded\n",
      "shard_19008 loaded\n",
      "shard_21580 loaded\n",
      "shard_1128 loaded\n",
      "shard_20122 loaded\n",
      "shard_23574 loaded\n",
      "shard_14242 loaded\n",
      "shard_12908 loaded\n",
      "shard_49968 loaded\n",
      "shard_2184 loaded\n",
      "shard_34802 loaded\n",
      "shard_5888 loaded\n",
      "shard_41803 loaded\n",
      "shard_49914 loaded\n",
      "shard_319 loaded\n",
      "shard_5204 loaded\n",
      "shard_47456 loaded\n",
      "shard_22799 loaded\n",
      "shard_25528 loaded\n",
      "shard_37414 loaded\n",
      "shard_1534 loaded\n",
      "shard_12650 loaded\n",
      "shard_31557 loaded\n",
      "shard_38302 loaded\n",
      "shard_44780 loaded\n",
      "shard_33663 loaded\n",
      "shard_18398 loaded\n",
      "shard_33842 loaded\n",
      "shard_22449 loaded\n",
      "shard_47261 loaded\n",
      "shard_2469 loaded\n",
      "shard_28284 loaded\n",
      "shard_32201 loaded\n",
      "shard_36690 loaded\n",
      "shard_47077 loaded\n",
      "shard_2721 loaded\n",
      "shard_47150 loaded\n",
      "shard_16563 loaded\n",
      "shard_29000 loaded\n",
      "shard_48492 loaded\n",
      "shard_44934 loaded\n",
      "shard_34489 loaded\n",
      "shard_3244 loaded\n",
      "shard_5449 loaded\n",
      "shard_18749 loaded\n",
      "shard_49049 loaded\n",
      "shard_46712 loaded\n",
      "shard_13577 loaded\n",
      "shard_40257 loaded\n",
      "shard_47994 loaded\n",
      "shard_19546 loaded\n",
      "shard_20164 loaded\n",
      "shard_6615 loaded\n",
      "shard_23069 loaded\n",
      "shard_2540 loaded\n",
      "shard_10865 loaded\n",
      "shard_9980 loaded\n",
      "shard_27447 loaded\n",
      "shard_26870 loaded\n",
      "shard_46951 loaded\n",
      "shard_35988 loaded\n",
      "shard_419 loaded\n",
      "shard_47788 loaded\n",
      "shard_27701 loaded\n",
      "shard_29712 loaded\n",
      "shard_48337 loaded\n",
      "shard_20261 loaded\n",
      "shard_31631 loaded\n",
      "shard_31404 loaded\n",
      "shard_46812 loaded\n",
      "shard_40452 loaded\n",
      "shard_3136 loaded\n",
      "shard_10845 loaded\n",
      "shard_37588 loaded\n",
      "shard_5450 loaded\n",
      "shard_13247 loaded\n",
      "shard_27716 loaded\n",
      "shard_11442 loaded\n",
      "shard_17384 loaded\n",
      "shard_23687 loaded\n",
      "shard_8773 loaded\n",
      "shard_1551 loaded\n",
      "shard_25313 loaded\n",
      "shard_30292 loaded\n",
      "shard_42925 loaded\n",
      "shard_49986 loaded\n",
      "shard_45941 loaded\n",
      "shard_14951 loaded\n",
      "shard_17459 loaded\n",
      "shard_39440 loaded\n",
      "shard_30918 loaded\n",
      "shard_24472 loaded\n",
      "shard_29877 loaded\n",
      "shard_13942 loaded\n",
      "shard_4864 loaded\n",
      "shard_47652 loaded\n",
      "shard_8451 loaded\n",
      "shard_17736 loaded\n",
      "shard_25124 loaded\n",
      "shard_21197 loaded\n",
      "shard_45119 loaded\n",
      "shard_2789 loaded\n",
      "shard_45782 loaded\n",
      "shard_16165 loaded\n",
      "shard_1178 loaded\n",
      "shard_45236 loaded\n",
      "shard_8980 loaded\n",
      "shard_16682 loaded\n",
      "shard_34589 loaded\n",
      "shard_35906 loaded\n",
      "shard_5402 loaded\n",
      "shard_241 loaded\n",
      "shard_33883 loaded\n",
      "shard_44506 loaded\n",
      "shard_37397 loaded\n",
      "shard_49533 loaded\n",
      "shard_37585 loaded\n",
      "shard_33701 loaded\n",
      "shard_21812 loaded\n",
      "shard_40006 loaded\n",
      "shard_17163 loaded\n",
      "shard_31016 loaded\n",
      "shard_16038 loaded\n",
      "shard_45068 loaded\n",
      "shard_48193 loaded\n",
      "shard_24974 loaded\n",
      "shard_24340 loaded\n",
      "shard_40914 loaded\n",
      "shard_27094 loaded\n",
      "shard_16858 loaded\n",
      "shard_42446 loaded\n",
      "shard_42620 loaded\n",
      "shard_47355 loaded\n",
      "shard_5643 loaded\n",
      "shard_10546 loaded\n",
      "shard_33157 loaded\n",
      "shard_33916 loaded\n",
      "shard_33460 loaded\n",
      "shard_33394 loaded\n",
      "shard_42616 loaded\n",
      "shard_31006 loaded\n",
      "shard_23178 loaded\n",
      "shard_49308 loaded\n",
      "shard_7376 loaded\n",
      "shard_1105 loaded\n",
      "shard_17777 loaded\n",
      "shard_16596 loaded\n",
      "shard_23443 loaded\n",
      "shard_387 loaded\n",
      "shard_41821 loaded\n",
      "shard_45240 loaded\n",
      "shard_39449 loaded\n",
      "shard_16234 loaded\n",
      "shard_1440 loaded\n",
      "shard_41962 loaded\n",
      "shard_42428 loaded\n",
      "shard_10209 loaded\n",
      "shard_30587 loaded\n",
      "shard_15003 loaded\n",
      "shard_21893 loaded\n",
      "shard_20566 loaded\n",
      "shard_33556 loaded\n",
      "shard_47163 loaded\n",
      "shard_13929 loaded\n",
      "shard_21271 loaded\n",
      "shard_32651 loaded\n",
      "shard_22071 loaded\n",
      "shard_41029 loaded\n",
      "shard_17749 loaded\n",
      "shard_27742 loaded\n",
      "shard_48952 loaded\n",
      "shard_33872 loaded\n",
      "shard_2889 loaded\n",
      "shard_37135 loaded\n",
      "shard_8760 loaded\n",
      "shard_9227 loaded\n",
      "shard_2900 loaded\n",
      "shard_30078 loaded\n",
      "shard_11133 loaded\n",
      "shard_20989 loaded\n",
      "shard_7033 loaded\n",
      "shard_36975 loaded\n",
      "shard_21035 loaded\n",
      "shard_19822 loaded\n",
      "shard_36652 loaded\n",
      "shard_34152 loaded\n",
      "shard_3044 loaded\n",
      "shard_8109 loaded\n",
      "shard_23230 loaded\n",
      "shard_9913 loaded\n",
      "shard_9107 loaded\n",
      "shard_44521 loaded\n",
      "shard_17583 loaded\n",
      "shard_161 loaded\n",
      "shard_1143 loaded\n",
      "shard_39593 loaded\n",
      "shard_2160 loaded\n",
      "shard_45761 loaded\n",
      "shard_11542 loaded\n",
      "shard_8148 loaded\n",
      "shard_35872 loaded\n",
      "shard_16444 loaded\n",
      "shard_40241 loaded\n",
      "shard_31507 loaded\n",
      "shard_1803 loaded\n",
      "shard_21320 loaded\n",
      "shard_39937 loaded\n",
      "shard_8958 loaded\n",
      "shard_23385 loaded\n",
      "shard_21551 loaded\n",
      "shard_13388 loaded\n",
      "shard_664 loaded\n",
      "shard_8650 loaded\n",
      "shard_8249 loaded\n",
      "shard_47536 loaded\n",
      "shard_13105 loaded\n",
      "shard_43170 loaded\n",
      "shard_13886 loaded\n",
      "shard_27135 loaded\n",
      "shard_4784 loaded\n",
      "shard_39730 loaded\n",
      "shard_27311 loaded\n",
      "shard_48516 loaded\n",
      "shard_30815 loaded\n",
      "shard_26850 loaded\n",
      "shard_26590 loaded\n",
      "shard_19313 loaded\n",
      "shard_35367 loaded\n",
      "shard_14392 loaded\n",
      "shard_31448 loaded\n",
      "shard_48788 loaded\n",
      "shard_30471 loaded\n",
      "shard_34305 loaded\n",
      "shard_5385 loaded\n",
      "shard_45640 loaded\n",
      "shard_9611 loaded\n",
      "shard_31874 loaded\n",
      "shard_8246 loaded\n",
      "shard_49646 loaded\n",
      "shard_39527 loaded\n",
      "shard_24573 loaded\n",
      "shard_48200 loaded\n",
      "shard_12618 loaded\n",
      "shard_23887 loaded\n",
      "shard_35498 loaded\n",
      "shard_45282 loaded\n",
      "shard_34325 loaded\n",
      "shard_20542 loaded\n",
      "shard_18458 loaded\n",
      "shard_23240 loaded\n",
      "shard_24837 loaded\n",
      "shard_20008 loaded\n",
      "shard_821 loaded\n",
      "shard_25993 loaded\n",
      "shard_15449 loaded\n",
      "shard_41537 loaded\n",
      "shard_26127 loaded\n",
      "shard_6241 loaded\n",
      "shard_31220 loaded\n",
      "shard_44260 loaded\n",
      "shard_2172 loaded\n",
      "shard_1795 loaded\n",
      "shard_5745 loaded\n",
      "shard_29888 loaded\n",
      "shard_47552 loaded\n",
      "shard_30183 loaded\n",
      "shard_19516 loaded\n",
      "shard_44581 loaded\n",
      "shard_7751 loaded\n",
      "shard_37348 loaded\n",
      "shard_43964 loaded\n",
      "shard_8631 loaded\n",
      "shard_38655 loaded\n",
      "shard_18935 loaded\n",
      "shard_13937 loaded\n",
      "shard_43763 loaded\n",
      "shard_22907 loaded\n",
      "shard_13904 loaded\n",
      "shard_139 loaded\n",
      "shard_24329 loaded\n",
      "shard_47280 loaded\n",
      "shard_45581 loaded\n",
      "shard_32202 loaded\n",
      "shard_3803 loaded\n",
      "shard_6048 loaded\n",
      "shard_29769 loaded\n",
      "shard_32293 loaded\n",
      "shard_27889 loaded\n",
      "shard_21746 loaded\n",
      "shard_48394 loaded\n",
      "shard_29573 loaded\n",
      "shard_2621 loaded\n",
      "shard_43639 loaded\n",
      "shard_26046 loaded\n",
      "shard_41274 loaded\n",
      "shard_35027 loaded\n",
      "shard_10018 loaded\n",
      "shard_27794 loaded\n",
      "shard_24912 loaded\n",
      "shard_31422 loaded\n",
      "shard_11087 loaded\n",
      "shard_10310 loaded\n",
      "shard_10550 loaded\n",
      "shard_30075 loaded\n",
      "shard_14611 loaded\n",
      "shard_45863 loaded\n",
      "shard_24800 loaded\n",
      "shard_49477 loaded\n",
      "shard_33626 loaded\n",
      "shard_30212 loaded\n",
      "shard_46683 loaded\n",
      "shard_36982 loaded\n",
      "shard_42014 loaded\n",
      "shard_15924 loaded\n",
      "shard_31497 loaded\n",
      "shard_33479 loaded\n",
      "shard_38246 loaded\n",
      "shard_21722 loaded\n",
      "shard_23095 loaded\n",
      "shard_47627 loaded\n",
      "shard_46923 loaded\n",
      "shard_19632 loaded\n",
      "shard_37359 loaded\n",
      "shard_42112 loaded\n",
      "shard_46341 loaded\n",
      "shard_49195 loaded\n",
      "shard_39694 loaded\n",
      "shard_33970 loaded\n",
      "shard_4554 loaded\n",
      "shard_9988 loaded\n",
      "shard_13214 loaded\n",
      "shard_19521 loaded\n",
      "shard_12369 loaded\n",
      "shard_27066 loaded\n",
      "shard_42463 loaded\n",
      "shard_22887 loaded\n",
      "shard_40115 loaded\n",
      "shard_37229 loaded\n",
      "shard_38228 loaded\n",
      "shard_30328 loaded\n",
      "shard_36965 loaded\n",
      "shard_15476 loaded\n",
      "shard_27833 loaded\n",
      "shard_27163 loaded\n",
      "shard_30052 loaded\n",
      "shard_39631 loaded\n",
      "shard_42654 loaded\n",
      "shard_32407 loaded\n",
      "shard_8887 loaded\n",
      "shard_38885 loaded\n",
      "shard_25108 loaded\n",
      "shard_41889 loaded\n",
      "shard_35307 loaded\n",
      "shard_28783 loaded\n",
      "shard_24722 loaded\n",
      "shard_38034 loaded\n",
      "shard_7183 loaded\n",
      "shard_42137 loaded\n",
      "shard_13547 loaded\n",
      "shard_18616 loaded\n",
      "shard_29856 loaded\n",
      "shard_32621 loaded\n",
      "shard_29343 loaded\n",
      "shard_29046 loaded\n",
      "shard_42427 loaded\n",
      "shard_3168 loaded\n",
      "shard_21222 loaded\n",
      "shard_28704 loaded\n",
      "shard_24318 loaded\n",
      "shard_10982 loaded\n",
      "shard_36094 loaded\n",
      "shard_10538 loaded\n",
      "shard_36764 loaded\n",
      "shard_10361 loaded\n",
      "shard_34923 loaded\n",
      "shard_31195 loaded\n",
      "shard_37340 loaded\n",
      "shard_41074 loaded\n",
      "shard_29060 loaded\n",
      "shard_17177 loaded\n",
      "shard_10963 loaded\n",
      "shard_15562 loaded\n",
      "shard_38140 loaded\n",
      "shard_9310 loaded\n",
      "shard_6683 loaded\n",
      "shard_45673 loaded\n",
      "shard_2778 loaded\n",
      "shard_32929 loaded\n",
      "shard_36272 loaded\n",
      "shard_20870 loaded\n",
      "shard_2584 loaded\n",
      "shard_23540 loaded\n",
      "shard_38401 loaded\n",
      "shard_27459 loaded\n",
      "shard_37282 loaded\n",
      "shard_14785 loaded\n",
      "shard_32579 loaded\n",
      "shard_21199 loaded\n",
      "shard_45693 loaded\n",
      "shard_23762 loaded\n",
      "shard_45503 loaded\n",
      "shard_42267 loaded\n",
      "shard_26798 loaded\n",
      "shard_32454 loaded\n",
      "shard_32625 loaded\n",
      "shard_44074 loaded\n",
      "shard_20208 loaded\n",
      "shard_13941 loaded\n",
      "shard_13556 loaded\n",
      "shard_14633 loaded\n",
      "shard_47429 loaded\n",
      "shard_43425 loaded\n",
      "shard_44836 loaded\n",
      "shard_9960 loaded\n",
      "shard_45613 loaded\n",
      "shard_46143 loaded\n",
      "shard_26125 loaded\n",
      "shard_39129 loaded\n",
      "shard_12106 loaded\n",
      "shard_28337 loaded\n",
      "shard_7237 loaded\n",
      "shard_23971 loaded\n",
      "shard_20890 loaded\n",
      "shard_35184 loaded\n",
      "shard_32218 loaded\n",
      "shard_41978 loaded\n",
      "shard_34024 loaded\n",
      "shard_46947 loaded\n",
      "shard_6947 loaded\n",
      "shard_4809 loaded\n",
      "shard_5996 loaded\n",
      "shard_43192 loaded\n",
      "shard_11866 loaded\n",
      "shard_14766 loaded\n",
      "shard_33113 loaded\n",
      "shard_21128 loaded\n",
      "shard_30447 loaded\n",
      "shard_30276 loaded\n",
      "shard_27336 loaded\n",
      "shard_44119 loaded\n",
      "shard_13223 loaded\n",
      "shard_3687 loaded\n",
      "shard_18896 loaded\n",
      "shard_40394 loaded\n",
      "shard_42751 loaded\n",
      "shard_39924 loaded\n",
      "shard_17765 loaded\n",
      "shard_24249 loaded\n",
      "shard_26018 loaded\n",
      "shard_28652 loaded\n",
      "shard_22741 loaded\n",
      "shard_7532 loaded\n",
      "shard_8382 loaded\n",
      "shard_6222 loaded\n",
      "shard_34862 loaded\n",
      "shard_31040 loaded\n",
      "shard_25705 loaded\n",
      "shard_22831 loaded\n",
      "shard_37880 loaded\n",
      "shard_11737 loaded\n",
      "shard_41191 loaded\n",
      "shard_14076 loaded\n",
      "shard_43007 loaded\n",
      "shard_17784 loaded\n",
      "shard_9280 loaded\n",
      "shard_40509 loaded\n",
      "shard_1343 loaded\n",
      "shard_22527 loaded\n",
      "shard_47465 loaded\n",
      "shard_11696 loaded\n",
      "shard_20123 loaded\n",
      "shard_43975 loaded\n",
      "shard_4656 loaded\n",
      "shard_18408 loaded\n",
      "shard_13514 loaded\n",
      "shard_32110 loaded\n",
      "shard_18856 loaded\n",
      "shard_28732 loaded\n",
      "shard_28169 loaded\n",
      "shard_33327 loaded\n",
      "shard_35288 loaded\n",
      "shard_26244 loaded\n",
      "shard_42855 loaded\n",
      "shard_17684 loaded\n",
      "shard_28277 loaded\n",
      "shard_9209 loaded\n",
      "shard_42558 loaded\n",
      "shard_30110 loaded\n",
      "shard_6097 loaded\n",
      "shard_17219 loaded\n",
      "shard_42244 loaded\n",
      "shard_12368 loaded\n",
      "shard_49570 loaded\n",
      "shard_41843 loaded\n",
      "shard_1968 loaded\n",
      "shard_2758 loaded\n",
      "shard_24118 loaded\n",
      "shard_44824 loaded\n",
      "shard_49387 loaded\n",
      "shard_28054 loaded\n",
      "shard_1367 loaded\n",
      "shard_13182 loaded\n",
      "shard_16797 loaded\n",
      "shard_48023 loaded\n",
      "shard_33878 loaded\n",
      "shard_16489 loaded\n",
      "shard_27093 loaded\n",
      "shard_30632 loaded\n",
      "shard_49094 loaded\n",
      "shard_47228 loaded\n",
      "shard_3113 loaded\n",
      "shard_13666 loaded\n",
      "shard_21859 loaded\n",
      "shard_6784 loaded\n",
      "shard_43381 loaded\n",
      "shard_21884 loaded\n",
      "shard_26881 loaded\n",
      "shard_43616 loaded\n",
      "shard_24921 loaded\n",
      "shard_6014 loaded\n",
      "shard_44876 loaded\n",
      "shard_8332 loaded\n",
      "shard_13608 loaded\n",
      "shard_7270 loaded\n",
      "shard_21934 loaded\n",
      "shard_11237 loaded\n",
      "shard_36471 loaded\n",
      "shard_3325 loaded\n",
      "shard_41845 loaded\n",
      "shard_22664 loaded\n",
      "shard_22821 loaded\n",
      "shard_49505 loaded\n",
      "shard_49011 loaded\n",
      "shard_46757 loaded\n",
      "shard_3779 loaded\n",
      "shard_8498 loaded\n",
      "shard_28535 loaded\n",
      "shard_37432 loaded\n",
      "shard_42819 loaded\n",
      "shard_19705 loaded\n",
      "shard_22593 loaded\n",
      "shard_24977 loaded\n",
      "shard_49816 loaded\n",
      "shard_6315 loaded\n",
      "shard_49283 loaded\n",
      "shard_43793 loaded\n",
      "shard_39345 loaded\n",
      "shard_18143 loaded\n",
      "shard_36885 loaded\n",
      "shard_38438 loaded\n",
      "shard_48326 loaded\n",
      "shard_19738 loaded\n",
      "shard_11759 loaded\n",
      "shard_25133 loaded\n",
      "shard_27151 loaded\n",
      "shard_35977 loaded\n",
      "shard_13620 loaded\n",
      "shard_42212 loaded\n",
      "shard_45318 loaded\n",
      "shard_39219 loaded\n",
      "shard_21850 loaded\n",
      "shard_19181 loaded\n",
      "shard_28721 loaded\n",
      "shard_39390 loaded\n",
      "shard_29632 loaded\n",
      "shard_9399 loaded\n",
      "shard_35292 loaded\n",
      "shard_46836 loaded\n",
      "shard_38511 loaded\n",
      "shard_691 loaded\n",
      "shard_44417 loaded\n",
      "shard_14237 loaded\n",
      "shard_49804 loaded\n",
      "shard_16997 loaded\n",
      "shard_350 loaded\n",
      "shard_26965 loaded\n",
      "shard_42946 loaded\n",
      "shard_45196 loaded\n",
      "shard_20156 loaded\n",
      "shard_29861 loaded\n",
      "shard_39557 loaded\n",
      "shard_36712 loaded\n",
      "shard_11789 loaded\n",
      "shard_979 loaded\n",
      "shard_26451 loaded\n",
      "shard_28765 loaded\n",
      "shard_43224 loaded\n",
      "shard_34756 loaded\n",
      "shard_6718 loaded\n",
      "shard_8832 loaded\n",
      "shard_20867 loaded\n",
      "shard_19091 loaded\n",
      "shard_1220 loaded\n",
      "shard_47106 loaded\n",
      "shard_26433 loaded\n",
      "shard_14382 loaded\n",
      "shard_16707 loaded\n",
      "shard_27043 loaded\n",
      "shard_9703 loaded\n",
      "shard_25543 loaded\n",
      "shard_6149 loaded\n",
      "shard_870 loaded\n",
      "shard_28350 loaded\n",
      "shard_8327 loaded\n",
      "shard_1949 loaded\n",
      "shard_39039 loaded\n",
      "shard_26289 loaded\n",
      "shard_1223 loaded\n",
      "shard_30057 loaded\n",
      "shard_49487 loaded\n",
      "shard_33811 loaded\n",
      "shard_19589 loaded\n",
      "shard_3736 loaded\n",
      "shard_16628 loaded\n",
      "shard_5168 loaded\n",
      "shard_42932 loaded\n",
      "shard_12953 loaded\n",
      "shard_45394 loaded\n",
      "shard_4881 loaded\n",
      "shard_5255 loaded\n",
      "shard_34668 loaded\n",
      "shard_41491 loaded\n",
      "shard_35710 loaded\n",
      "shard_5764 loaded\n",
      "shard_31966 loaded\n",
      "shard_32821 loaded\n",
      "shard_34284 loaded\n",
      "shard_29959 loaded\n",
      "shard_26997 loaded\n",
      "shard_22105 loaded\n",
      "shard_12672 loaded\n",
      "shard_41490 loaded\n",
      "shard_13357 loaded\n",
      "shard_43057 loaded\n",
      "shard_38619 loaded\n",
      "shard_21993 loaded\n",
      "shard_26297 loaded\n",
      "shard_181 loaded\n",
      "shard_38583 loaded\n",
      "shard_11657 loaded\n",
      "shard_12150 loaded\n",
      "shard_40445 loaded\n",
      "shard_1912 loaded\n",
      "shard_13642 loaded\n",
      "shard_13095 loaded\n",
      "shard_39383 loaded\n",
      "shard_38862 loaded\n",
      "shard_38153 loaded\n",
      "shard_30047 loaded\n",
      "shard_4665 loaded\n",
      "shard_32810 loaded\n",
      "shard_30253 loaded\n",
      "shard_45361 loaded\n",
      "shard_17358 loaded\n",
      "shard_7691 loaded\n",
      "shard_8782 loaded\n",
      "shard_35922 loaded\n",
      "shard_15964 loaded\n",
      "shard_2396 loaded\n",
      "shard_29733 loaded\n",
      "shard_4797 loaded\n",
      "shard_15444 loaded\n",
      "shard_27792 loaded\n",
      "shard_1680 loaded\n",
      "shard_12539 loaded\n",
      "shard_19433 loaded\n",
      "shard_35105 loaded\n",
      "shard_48260 loaded\n",
      "shard_30133 loaded\n",
      "shard_8499 loaded\n",
      "shard_29278 loaded\n",
      "shard_6084 loaded\n",
      "shard_38364 loaded\n",
      "shard_13635 loaded\n",
      "shard_36931 loaded\n",
      "shard_40564 loaded\n",
      "shard_38613 loaded\n",
      "shard_41013 loaded\n",
      "shard_8836 loaded\n",
      "shard_4637 loaded\n",
      "shard_26070 loaded\n",
      "shard_43483 loaded\n",
      "shard_44519 loaded\n",
      "shard_34949 loaded\n",
      "shard_905 loaded\n",
      "shard_38930 loaded\n",
      "shard_36274 loaded\n",
      "shard_44530 loaded\n",
      "shard_17420 loaded\n",
      "shard_40054 loaded\n",
      "shard_14201 loaded\n",
      "shard_9260 loaded\n",
      "shard_7748 loaded\n",
      "shard_8553 loaded\n",
      "shard_43346 loaded\n",
      "shard_17148 loaded\n",
      "shard_43725 loaded\n",
      "shard_31525 loaded\n",
      "shard_11736 loaded\n",
      "shard_31757 loaded\n",
      "shard_41715 loaded\n",
      "shard_16464 loaded\n",
      "shard_18699 loaded\n",
      "shard_2486 loaded\n",
      "shard_281 loaded\n",
      "shard_9271 loaded\n",
      "shard_24266 loaded\n",
      "shard_15982 loaded\n",
      "shard_17389 loaded\n",
      "shard_25889 loaded\n",
      "shard_38868 loaded\n",
      "shard_36032 loaded\n",
      "shard_21939 loaded\n",
      "shard_15711 loaded\n",
      "shard_28676 loaded\n",
      "shard_3457 loaded\n",
      "shard_38547 loaded\n",
      "shard_20736 loaded\n",
      "shard_49795 loaded\n",
      "shard_37428 loaded\n",
      "shard_31518 loaded\n",
      "shard_6716 loaded\n",
      "shard_42943 loaded\n",
      "shard_5814 loaded\n",
      "shard_41188 loaded\n",
      "shard_29920 loaded\n",
      "shard_11610 loaded\n",
      "shard_21905 loaded\n",
      "shard_44014 loaded\n",
      "shard_19809 loaded\n",
      "shard_41782 loaded\n",
      "shard_8537 loaded\n",
      "shard_34075 loaded\n",
      "shard_28140 loaded\n",
      "shard_10583 loaded\n",
      "shard_14614 loaded\n",
      "shard_28631 loaded\n",
      "shard_30949 loaded\n",
      "shard_14264 loaded\n",
      "shard_16920 loaded\n",
      "shard_12612 loaded\n",
      "shard_11211 loaded\n",
      "shard_40605 loaded\n",
      "shard_3297 loaded\n",
      "shard_25804 loaded\n",
      "shard_11398 loaded\n",
      "shard_3272 loaded\n",
      "shard_41062 loaded\n",
      "shard_33915 loaded\n",
      "shard_14254 loaded\n",
      "shard_15423 loaded\n",
      "shard_38898 loaded\n",
      "shard_29950 loaded\n",
      "shard_34328 loaded\n",
      "shard_42897 loaded\n",
      "shard_9872 loaded\n",
      "shard_35348 loaded\n",
      "shard_8583 loaded\n",
      "shard_38596 loaded\n",
      "shard_101 loaded\n",
      "shard_46737 loaded\n",
      "shard_47107 loaded\n",
      "shard_37787 loaded\n",
      "shard_27155 loaded\n",
      "shard_7055 loaded\n",
      "shard_39563 loaded\n",
      "shard_40263 loaded\n",
      "shard_34046 loaded\n",
      "shard_10634 loaded\n",
      "shard_34520 loaded\n",
      "shard_40874 loaded\n",
      "shard_2632 loaded\n",
      "shard_33796 loaded\n",
      "shard_23216 loaded\n",
      "shard_26938 loaded\n",
      "shard_2562 loaded\n",
      "shard_10255 loaded\n",
      "shard_3730 loaded\n",
      "shard_7888 loaded\n",
      "shard_32639 loaded\n",
      "shard_44732 loaded\n",
      "shard_18877 loaded\n",
      "shard_3573 loaded\n",
      "shard_22810 loaded\n",
      "shard_46027 loaded\n",
      "shard_30460 loaded\n",
      "shard_6326 loaded\n",
      "shard_1089 loaded\n",
      "shard_8372 loaded\n",
      "shard_3128 loaded\n",
      "shard_14898 loaded\n",
      "shard_9452 loaded\n",
      "shard_18273 loaded\n",
      "shard_19778 loaded\n",
      "shard_10573 loaded\n",
      "shard_43498 loaded\n",
      "shard_31027 loaded\n",
      "shard_4304 loaded\n",
      "shard_22090 loaded\n",
      "shard_2127 loaded\n",
      "shard_20357 loaded\n",
      "shard_14729 loaded\n",
      "shard_44030 loaded\n",
      "shard_17699 loaded\n",
      "shard_33523 loaded\n",
      "shard_45626 loaded\n",
      "shard_44284 loaded\n",
      "shard_39522 loaded\n",
      "shard_2580 loaded\n",
      "shard_12008 loaded\n",
      "shard_8622 loaded\n",
      "shard_17402 loaded\n",
      "shard_42876 loaded\n",
      "shard_13045 loaded\n",
      "shard_44627 loaded\n",
      "shard_10595 loaded\n",
      "shard_29710 loaded\n",
      "shard_32334 loaded\n",
      "shard_5139 loaded\n",
      "shard_5115 loaded\n",
      "shard_36845 loaded\n",
      "shard_12381 loaded\n",
      "shard_41785 loaded\n",
      "shard_14598 loaded\n",
      "shard_39542 loaded\n",
      "shard_14285 loaded\n",
      "shard_47015 loaded\n",
      "shard_16265 loaded\n",
      "shard_23134 loaded\n",
      "shard_16086 loaded\n",
      "shard_11244 loaded\n",
      "shard_1120 loaded\n",
      "shard_12343 loaded\n",
      "shard_372 loaded\n",
      "shard_10809 loaded\n",
      "shard_32137 loaded\n",
      "shard_25006 loaded\n",
      "shard_2776 loaded\n",
      "shard_30981 loaded\n",
      "shard_14465 loaded\n",
      "shard_18385 loaded\n",
      "shard_44596 loaded\n",
      "shard_45698 loaded\n",
      "shard_2974 loaded\n",
      "shard_44005 loaded\n",
      "shard_5955 loaded\n",
      "shard_3791 loaded\n",
      "shard_5850 loaded\n",
      "shard_9443 loaded\n",
      "shard_31148 loaded\n",
      "shard_28862 loaded\n",
      "shard_5179 loaded\n",
      "shard_15044 loaded\n",
      "shard_33620 loaded\n",
      "shard_4980 loaded\n",
      "shard_25364 loaded\n",
      "shard_40622 loaded\n",
      "shard_5506 loaded\n",
      "shard_10170 loaded\n",
      "shard_49621 loaded\n",
      "shard_15463 loaded\n",
      "shard_27827 loaded\n",
      "shard_28119 loaded\n",
      "shard_45429 loaded\n",
      "shard_32313 loaded\n",
      "shard_34765 loaded\n",
      "shard_17561 loaded\n",
      "shard_38265 loaded\n",
      "shard_44835 loaded\n",
      "shard_21894 loaded\n",
      "shard_36355 loaded\n",
      "shard_38076 loaded\n",
      "shard_47825 loaded\n",
      "shard_3233 loaded\n",
      "shard_15369 loaded\n",
      "shard_40761 loaded\n",
      "shard_11329 loaded\n",
      "shard_31899 loaded\n",
      "shard_4442 loaded\n",
      "shard_22683 loaded\n",
      "shard_39746 loaded\n",
      "shard_32999 loaded\n",
      "shard_21941 loaded\n",
      "shard_25812 loaded\n",
      "shard_32415 loaded\n",
      "shard_2036 loaded\n",
      "shard_16673 loaded\n",
      "shard_15608 loaded\n",
      "shard_29089 loaded\n",
      "shard_46021 loaded\n",
      "shard_15065 loaded\n",
      "shard_41174 loaded\n",
      "shard_25419 loaded\n",
      "shard_25727 loaded\n",
      "shard_25377 loaded\n",
      "shard_17695 loaded\n",
      "shard_29084 loaded\n",
      "shard_2238 loaded\n",
      "shard_4110 loaded\n",
      "shard_8107 loaded\n",
      "shard_30526 loaded\n",
      "shard_5622 loaded\n",
      "shard_14861 loaded\n",
      "shard_14569 loaded\n",
      "shard_40965 loaded\n",
      "shard_7397 loaded\n",
      "shard_8242 loaded\n",
      "shard_42609 loaded\n",
      "shard_12595 loaded\n",
      "shard_37839 loaded\n",
      "shard_49147 loaded\n",
      "shard_37439 loaded\n",
      "shard_20738 loaded\n",
      "shard_26696 loaded\n",
      "shard_4111 loaded\n",
      "shard_37010 loaded\n",
      "shard_1460 loaded\n",
      "shard_4697 loaded\n",
      "shard_25016 loaded\n",
      "shard_10702 loaded\n",
      "shard_49259 loaded\n",
      "shard_32247 loaded\n",
      "shard_12255 loaded\n",
      "shard_40956 loaded\n",
      "shard_13831 loaded\n",
      "shard_24865 loaded\n",
      "shard_23868 loaded\n",
      "shard_48862 loaded\n",
      "shard_49080 loaded\n",
      "shard_48259 loaded\n",
      "shard_40158 loaded\n",
      "shard_6895 loaded\n",
      "shard_18223 loaded\n",
      "shard_32712 loaded\n",
      "shard_3797 loaded\n",
      "shard_33322 loaded\n",
      "shard_33109 loaded\n",
      "shard_49172 loaded\n",
      "shard_9789 loaded\n",
      "shard_23270 loaded\n",
      "shard_14207 loaded\n",
      "shard_42309 loaded\n",
      "shard_14142 loaded\n",
      "shard_11266 loaded\n",
      "shard_23672 loaded\n",
      "shard_23346 loaded\n",
      "shard_24434 loaded\n",
      "shard_9135 loaded\n",
      "shard_5625 loaded\n",
      "shard_12169 loaded\n",
      "shard_39136 loaded\n",
      "shard_13868 loaded\n",
      "shard_43428 loaded\n",
      "shard_36602 loaded\n",
      "shard_35125 loaded\n",
      "shard_14281 loaded\n",
      "shard_25147 loaded\n",
      "shard_33563 loaded\n",
      "shard_28370 loaded\n",
      "shard_30798 loaded\n",
      "shard_48867 loaded\n",
      "shard_48049 loaded\n",
      "shard_12459 loaded\n",
      "shard_15383 loaded\n",
      "shard_18004 loaded\n",
      "shard_28381 loaded\n",
      "shard_23306 loaded\n",
      "shard_31285 loaded\n",
      "shard_36039 loaded\n",
      "shard_27640 loaded\n",
      "shard_27699 loaded\n",
      "shard_5932 loaded\n",
      "shard_1944 loaded\n",
      "shard_29619 loaded\n",
      "shard_14872 loaded\n",
      "shard_30312 loaded\n",
      "shard_30721 loaded\n",
      "shard_11450 loaded\n",
      "shard_33596 loaded\n",
      "shard_20911 loaded\n",
      "shard_26350 loaded\n",
      "shard_30106 loaded\n",
      "shard_30614 loaded\n",
      "shard_48642 loaded\n",
      "shard_4206 loaded\n",
      "shard_33919 loaded\n",
      "shard_7703 loaded\n",
      "shard_19372 loaded\n",
      "shard_39280 loaded\n",
      "shard_27774 loaded\n",
      "shard_27593 loaded\n",
      "shard_20298 loaded\n",
      "shard_23904 loaded\n",
      "shard_44200 loaded\n",
      "shard_2265 loaded\n",
      "shard_4935 loaded\n",
      "shard_4596 loaded\n",
      "shard_5372 loaded\n",
      "shard_13179 loaded\n",
      "shard_42105 loaded\n",
      "shard_8799 loaded\n",
      "shard_42987 loaded\n",
      "shard_35041 loaded\n",
      "shard_6662 loaded\n",
      "shard_6628 loaded\n",
      "shard_43076 loaded\n",
      "shard_40147 loaded\n",
      "shard_25942 loaded\n",
      "shard_12781 loaded\n",
      "shard_27116 loaded\n",
      "shard_47533 loaded\n",
      "shard_700 loaded\n",
      "shard_46362 loaded\n",
      "shard_32298 loaded\n",
      "shard_31581 loaded\n",
      "shard_13889 loaded\n",
      "shard_48401 loaded\n",
      "shard_21303 loaded\n",
      "shard_3368 loaded\n",
      "shard_14456 loaded\n",
      "shard_9419 loaded\n",
      "shard_7831 loaded\n",
      "shard_19061 loaded\n",
      "shard_8365 loaded\n",
      "shard_13415 loaded\n",
      "shard_19183 loaded\n",
      "shard_12975 loaded\n",
      "shard_22706 loaded\n",
      "shard_10186 loaded\n",
      "shard_22289 loaded\n",
      "shard_966 loaded\n",
      "shard_48847 loaded\n",
      "shard_17487 loaded\n",
      "shard_7823 loaded\n",
      "shard_47212 loaded\n",
      "shard_33423 loaded\n",
      "shard_46060 loaded\n",
      "shard_32754 loaded\n",
      "shard_24895 loaded\n",
      "shard_16279 loaded\n",
      "shard_4421 loaded\n",
      "shard_15547 loaded\n",
      "shard_35153 loaded\n",
      "shard_43931 loaded\n",
      "shard_3121 loaded\n",
      "shard_25155 loaded\n",
      "shard_26136 loaded\n",
      "shard_4745 loaded\n",
      "shard_40405 loaded\n",
      "shard_15725 loaded\n",
      "shard_20209 loaded\n",
      "shard_49179 loaded\n",
      "shard_35352 loaded\n",
      "shard_18454 loaded\n",
      "shard_8147 loaded\n",
      "shard_38659 loaded\n",
      "shard_20849 loaded\n",
      "shard_9407 loaded\n",
      "shard_21437 loaded\n",
      "shard_18135 loaded\n",
      "shard_25809 loaded\n",
      "shard_22217 loaded\n",
      "shard_34371 loaded\n",
      "shard_25747 loaded\n",
      "shard_30738 loaded\n",
      "shard_35740 loaded\n",
      "shard_31993 loaded\n",
      "shard_2350 loaded\n",
      "shard_37433 loaded\n",
      "shard_15264 loaded\n",
      "shard_26405 loaded\n",
      "shard_11623 loaded\n",
      "shard_18358 loaded\n",
      "shard_44793 loaded\n",
      "shard_9435 loaded\n",
      "shard_22910 loaded\n",
      "shard_48593 loaded\n",
      "shard_14461 loaded\n",
      "shard_39227 loaded\n",
      "shard_13571 loaded\n",
      "shard_28031 loaded\n",
      "shard_6864 loaded\n",
      "shard_21158 loaded\n",
      "shard_9712 loaded\n",
      "shard_22718 loaded\n",
      "shard_20988 loaded\n",
      "shard_41541 loaded\n",
      "shard_46996 loaded\n",
      "shard_44039 loaded\n",
      "shard_28621 loaded\n",
      "shard_49470 loaded\n",
      "shard_3474 loaded\n",
      "shard_32537 loaded\n",
      "shard_32333 loaded\n",
      "shard_7858 loaded\n",
      "shard_35569 loaded\n",
      "shard_22648 loaded\n",
      "shard_39828 loaded\n",
      "shard_26323 loaded\n",
      "shard_39868 loaded\n",
      "shard_234 loaded\n",
      "shard_16035 loaded\n",
      "shard_46629 loaded\n",
      "shard_45255 loaded\n",
      "shard_703 loaded\n",
      "shard_18633 loaded\n",
      "shard_28290 loaded\n",
      "shard_4052 loaded\n",
      "shard_2063 loaded\n",
      "shard_33780 loaded\n",
      "shard_25914 loaded\n",
      "shard_32843 loaded\n",
      "shard_29748 loaded\n",
      "shard_14078 loaded\n",
      "shard_14229 loaded\n",
      "shard_29426 loaded\n",
      "shard_888 loaded\n",
      "shard_4615 loaded\n",
      "shard_9112 loaded\n",
      "shard_44529 loaded\n",
      "shard_590 loaded\n",
      "shard_15455 loaded\n",
      "shard_15757 loaded\n",
      "shard_26305 loaded\n",
      "shard_46524 loaded\n",
      "shard_8723 loaded\n",
      "shard_5314 loaded\n",
      "shard_7246 loaded\n",
      "shard_4971 loaded\n",
      "shard_46870 loaded\n",
      "shard_3423 loaded\n",
      "shard_47737 loaded\n",
      "shard_8677 loaded\n",
      "shard_2691 loaded\n",
      "shard_13746 loaded\n",
      "shard_6589 loaded\n",
      "shard_34072 loaded\n",
      "shard_35963 loaded\n",
      "shard_244 loaded\n",
      "shard_44113 loaded\n",
      "shard_35356 loaded\n",
      "shard_13630 loaded\n",
      "shard_49689 loaded\n",
      "shard_7773 loaded\n",
      "shard_44504 loaded\n",
      "shard_21582 loaded\n",
      "shard_8525 loaded\n",
      "shard_27248 loaded\n",
      "shard_1908 loaded\n",
      "shard_46447 loaded\n",
      "shard_31650 loaded\n",
      "shard_31279 loaded\n",
      "shard_11995 loaded\n",
      "shard_6190 loaded\n",
      "shard_16472 loaded\n",
      "shard_47789 loaded\n",
      "shard_6620 loaded\n",
      "shard_32586 loaded\n",
      "shard_44373 loaded\n",
      "shard_21204 loaded\n",
      "shard_32479 loaded\n",
      "shard_23677 loaded\n",
      "shard_14962 loaded\n",
      "shard_24569 loaded\n",
      "shard_2671 loaded\n",
      "shard_16784 loaded\n",
      "shard_31906 loaded\n",
      "shard_4142 loaded\n",
      "shard_37494 loaded\n",
      "shard_6893 loaded\n",
      "shard_29092 loaded\n",
      "shard_4288 loaded\n",
      "shard_22092 loaded\n",
      "shard_25572 loaded\n",
      "shard_33124 loaded\n",
      "shard_32004 loaded\n",
      "shard_18121 loaded\n",
      "shard_25001 loaded\n",
      "shard_45047 loaded\n",
      "shard_29458 loaded\n",
      "shard_35985 loaded\n",
      "shard_22029 loaded\n",
      "shard_45295 loaded\n",
      "shard_47053 loaded\n",
      "shard_12446 loaded\n",
      "shard_11328 loaded\n",
      "shard_38452 loaded\n",
      "shard_48215 loaded\n",
      "shard_25904 loaded\n",
      "shard_45706 loaded\n",
      "shard_47206 loaded\n",
      "shard_24132 loaded\n",
      "shard_47490 loaded\n",
      "shard_20066 loaded\n",
      "shard_5974 loaded\n",
      "shard_21086 loaded\n",
      "shard_43114 loaded\n",
      "shard_44754 loaded\n",
      "shard_17279 loaded\n",
      "shard_14840 loaded\n",
      "shard_26976 loaded\n",
      "shard_20424 loaded\n",
      "shard_31325 loaded\n",
      "shard_2075 loaded\n",
      "shard_32186 loaded\n",
      "shard_29696 loaded\n",
      "shard_29794 loaded\n",
      "shard_40094 loaded\n",
      "shard_10816 loaded\n",
      "shard_18027 loaded\n",
      "shard_38497 loaded\n",
      "shard_21685 loaded\n",
      "shard_6180 loaded\n",
      "shard_23165 loaded\n",
      "shard_2936 loaded\n",
      "shard_8815 loaded\n",
      "shard_19150 loaded\n",
      "shard_10281 loaded\n",
      "shard_46583 loaded\n",
      "shard_49197 loaded\n",
      "shard_26111 loaded\n",
      "shard_49281 loaded\n",
      "shard_29211 loaded\n",
      "shard_41189 loaded\n",
      "shard_43292 loaded\n",
      "shard_7835 loaded\n",
      "shard_36268 loaded\n",
      "shard_16882 loaded\n",
      "shard_13037 loaded\n",
      "shard_16952 loaded\n",
      "shard_40057 loaded\n",
      "shard_25905 loaded\n",
      "shard_48104 loaded\n",
      "shard_6931 loaded\n",
      "shard_20054 loaded\n",
      "shard_25459 loaded\n",
      "shard_49113 loaded\n",
      "shard_22538 loaded\n",
      "shard_7208 loaded\n",
      "shard_37227 loaded\n",
      "shard_18900 loaded\n",
      "shard_7060 loaded\n",
      "shard_46164 loaded\n",
      "shard_48774 loaded\n",
      "shard_49187 loaded\n",
      "shard_24435 loaded\n",
      "shard_20749 loaded\n",
      "shard_25584 loaded\n",
      "shard_37488 loaded\n",
      "shard_25176 loaded\n",
      "shard_46355 loaded\n",
      "shard_7298 loaded\n",
      "shard_25616 loaded\n",
      "shard_45655 loaded\n",
      "shard_31314 loaded\n",
      "shard_39933 loaded\n",
      "shard_16589 loaded\n",
      "shard_15347 loaded\n",
      "shard_30174 loaded\n",
      "shard_14409 loaded\n",
      "shard_17620 loaded\n",
      "shard_15724 loaded\n",
      "shard_9261 loaded\n",
      "shard_16654 loaded\n",
      "shard_43025 loaded\n",
      "shard_19967 loaded\n",
      "shard_12144 loaded\n",
      "shard_26189 loaded\n",
      "shard_40271 loaded\n",
      "shard_18001 loaded\n",
      "shard_32697 loaded\n",
      "shard_3820 loaded\n",
      "shard_27985 loaded\n",
      "shard_20945 loaded\n",
      "shard_20714 loaded\n",
      "shard_41739 loaded\n",
      "shard_20476 loaded\n",
      "shard_13096 loaded\n",
      "shard_5818 loaded\n",
      "shard_1194 loaded\n",
      "shard_27840 loaded\n",
      "shard_39636 loaded\n",
      "shard_22612 loaded\n",
      "shard_42299 loaded\n",
      "shard_6372 loaded\n",
      "shard_10612 loaded\n",
      "shard_46007 loaded\n",
      "shard_29580 loaded\n",
      "shard_39781 loaded\n",
      "shard_19266 loaded\n",
      "shard_26717 loaded\n",
      "shard_43093 loaded\n",
      "shard_18809 loaded\n",
      "shard_47489 loaded\n",
      "shard_6345 loaded\n",
      "shard_28421 loaded\n",
      "shard_5184 loaded\n",
      "shard_49378 loaded\n",
      "shard_45071 loaded\n",
      "shard_12256 loaded\n",
      "shard_17059 loaded\n",
      "shard_11297 loaded\n",
      "shard_25072 loaded\n",
      "shard_44181 loaded\n",
      "shard_23831 loaded\n",
      "shard_13432 loaded\n",
      "shard_20603 loaded\n",
      "shard_47583 loaded\n",
      "shard_40628 loaded\n",
      "shard_16297 loaded\n",
      "shard_47248 loaded\n",
      "shard_20386 loaded\n",
      "shard_9461 loaded\n",
      "shard_31958 loaded\n",
      "shard_46369 loaded\n",
      "shard_3448 loaded\n",
      "shard_44847 loaded\n",
      "shard_43218 loaded\n",
      "shard_8951 loaded\n",
      "shard_18833 loaded\n",
      "shard_12757 loaded\n",
      "shard_45004 loaded\n",
      "shard_37092 loaded\n",
      "shard_21589 loaded\n",
      "shard_20665 loaded\n",
      "shard_21734 loaded\n",
      "shard_41133 loaded\n",
      "shard_44990 loaded\n",
      "shard_48916 loaded\n",
      "shard_47044 loaded\n",
      "shard_26222 loaded\n",
      "shard_34513 loaded\n",
      "shard_35953 loaded\n",
      "shard_12678 loaded\n",
      "shard_43692 loaded\n",
      "shard_34924 loaded\n",
      "shard_15900 loaded\n",
      "shard_3271 loaded\n",
      "shard_38112 loaded\n",
      "shard_12245 loaded\n",
      "shard_13721 loaded\n",
      "shard_23591 loaded\n",
      "shard_29503 loaded\n",
      "shard_26999 loaded\n",
      "shard_41293 loaded\n",
      "shard_3977 loaded\n",
      "shard_20622 loaded\n",
      "shard_9181 loaded\n",
      "shard_30231 loaded\n",
      "shard_7864 loaded\n",
      "shard_42127 loaded\n",
      "shard_25117 loaded\n",
      "shard_46125 loaded\n",
      "shard_48831 loaded\n",
      "shard_21702 loaded\n",
      "shard_47828 loaded\n",
      "shard_45512 loaded\n",
      "shard_34826 loaded\n",
      "shard_4364 loaded\n",
      "shard_14400 loaded\n",
      "shard_28884 loaded\n",
      "shard_46598 loaded\n",
      "shard_25508 loaded\n",
      "shard_12464 loaded\n",
      "shard_8410 loaded\n",
      "shard_14510 loaded\n",
      "shard_5340 loaded\n",
      "shard_49252 loaded\n",
      "shard_43580 loaded\n",
      "shard_21206 loaded\n",
      "shard_16869 loaded\n",
      "shard_16883 loaded\n",
      "shard_39990 loaded\n",
      "shard_29076 loaded\n",
      "shard_9175 loaded\n",
      "shard_28082 loaded\n",
      "shard_36320 loaded\n",
      "shard_30239 loaded\n",
      "shard_11076 loaded\n",
      "shard_25136 loaded\n",
      "shard_5753 loaded\n",
      "shard_45506 loaded\n",
      "shard_9747 loaded\n",
      "shard_9150 loaded\n",
      "shard_2849 loaded\n",
      "shard_18119 loaded\n",
      "shard_2993 loaded\n",
      "shard_8878 loaded\n",
      "shard_46376 loaded\n",
      "shard_18697 loaded\n",
      "shard_46513 loaded\n",
      "shard_38602 loaded\n",
      "shard_15574 loaded\n",
      "shard_41209 loaded\n",
      "shard_40329 loaded\n",
      "shard_9187 loaded\n",
      "shard_46470 loaded\n",
      "shard_22396 loaded\n",
      "shard_2311 loaded\n",
      "shard_1929 loaded\n",
      "shard_6129 loaded\n",
      "shard_34889 loaded\n",
      "shard_15946 loaded\n",
      "shard_1787 loaded\n",
      "shard_2953 loaded\n",
      "shard_32375 loaded\n",
      "shard_6458 loaded\n",
      "shard_5403 loaded\n",
      "shard_15631 loaded\n",
      "shard_28299 loaded\n",
      "shard_10891 loaded\n",
      "shard_13112 loaded\n",
      "shard_34483 loaded\n",
      "shard_8091 loaded\n",
      "shard_13373 loaded\n",
      "shard_7868 loaded\n",
      "shard_21068 loaded\n",
      "shard_16201 loaded\n",
      "shard_37255 loaded\n",
      "shard_28308 loaded\n",
      "shard_34576 loaded\n",
      "shard_31920 loaded\n",
      "shard_9701 loaded\n",
      "shard_40576 loaded\n",
      "shard_36119 loaded\n",
      "shard_32261 loaded\n",
      "shard_35843 loaded\n",
      "shard_24301 loaded\n",
      "shard_48539 loaded\n",
      "shard_44664 loaded\n",
      "shard_1987 loaded\n",
      "shard_21687 loaded\n",
      "shard_32565 loaded\n",
      "shard_5481 loaded\n",
      "shard_43247 loaded\n",
      "shard_16400 loaded\n",
      "shard_41444 loaded\n",
      "shard_26704 loaded\n",
      "shard_2703 loaded\n",
      "shard_26774 loaded\n",
      "shard_424 loaded\n",
      "shard_32996 loaded\n",
      "shard_10502 loaded\n",
      "shard_1437 loaded\n",
      "shard_3016 loaded\n",
      "shard_30731 loaded\n",
      "shard_4790 loaded\n",
      "shard_21093 loaded\n",
      "shard_13419 loaded\n",
      "shard_34771 loaded\n",
      "shard_38804 loaded\n",
      "shard_49461 loaded\n",
      "shard_44895 loaded\n",
      "shard_14827 loaded\n",
      "shard_35045 loaded\n",
      "shard_38942 loaded\n",
      "shard_10521 loaded\n",
      "shard_33654 loaded\n",
      "shard_4985 loaded\n",
      "shard_29953 loaded\n",
      "shard_24476 loaded\n",
      "shard_25791 loaded\n",
      "shard_41810 loaded\n",
      "shard_19153 loaded\n",
      "shard_33658 loaded\n",
      "shard_14005 loaded\n",
      "shard_45565 loaded\n",
      "shard_29074 loaded\n",
      "shard_850 loaded\n",
      "shard_7324 loaded\n",
      "shard_40087 loaded\n",
      "shard_36467 loaded\n",
      "shard_21755 loaded\n",
      "shard_7174 loaded\n",
      "shard_41789 loaded\n",
      "shard_30066 loaded\n",
      "shard_9553 loaded\n",
      "shard_40671 loaded\n",
      "shard_43280 loaded\n",
      "shard_29940 loaded\n",
      "shard_34622 loaded\n",
      "shard_25066 loaded\n",
      "shard_46964 loaded\n",
      "shard_49494 loaded\n",
      "shard_21675 loaded\n",
      "shard_41410 loaded\n",
      "shard_33349 loaded\n",
      "shard_23194 loaded\n",
      "shard_45452 loaded\n",
      "shard_10549 loaded\n",
      "shard_17514 loaded\n",
      "shard_23630 loaded\n",
      "shard_41382 loaded\n",
      "shard_12861 loaded\n",
      "shard_29746 loaded\n",
      "shard_10074 loaded\n",
      "shard_1886 loaded\n",
      "shard_11843 loaded\n",
      "shard_40484 loaded\n",
      "shard_37562 loaded\n",
      "shard_14056 loaded\n",
      "shard_4556 loaded\n",
      "shard_2249 loaded\n",
      "shard_40859 loaded\n",
      "shard_16889 loaded\n",
      "shard_39554 loaded\n",
      "shard_37180 loaded\n",
      "shard_45325 loaded\n",
      "shard_6065 loaded\n",
      "shard_1392 loaded\n",
      "shard_29752 loaded\n",
      "shard_34169 loaded\n",
      "shard_37731 loaded\n",
      "shard_18184 loaded\n",
      "shard_26594 loaded\n",
      "shard_19094 loaded\n",
      "shard_39363 loaded\n",
      "shard_21808 loaded\n",
      "shard_17497 loaded\n",
      "shard_34111 loaded\n",
      "shard_4477 loaded\n",
      "shard_10736 loaded\n",
      "shard_623 loaded\n",
      "shard_48131 loaded\n",
      "shard_3394 loaded\n",
      "shard_7669 loaded\n",
      "shard_40797 loaded\n",
      "shard_18007 loaded\n",
      "shard_26105 loaded\n",
      "shard_34137 loaded\n",
      "shard_45787 loaded\n",
      "shard_48042 loaded\n",
      "shard_36286 loaded\n",
      "shard_2463 loaded\n",
      "shard_47081 loaded\n",
      "shard_35627 loaded\n",
      "shard_25992 loaded\n",
      "shard_873 loaded\n",
      "shard_2729 loaded\n",
      "shard_4680 loaded\n",
      "shard_12830 loaded\n",
      "shard_15669 loaded\n",
      "shard_14165 loaded\n",
      "shard_7596 loaded\n",
      "shard_41308 loaded\n",
      "shard_31133 loaded\n",
      "shard_43900 loaded\n",
      "shard_15073 loaded\n",
      "shard_43174 loaded\n",
      "shard_16246 loaded\n",
      "shard_38645 loaded\n",
      "shard_2415 loaded\n",
      "shard_7144 loaded\n",
      "shard_21873 loaded\n",
      "shard_34624 loaded\n",
      "shard_24158 loaded\n",
      "shard_4994 loaded\n",
      "shard_23987 loaded\n",
      "shard_46671 loaded\n",
      "shard_29258 loaded\n",
      "shard_47751 loaded\n",
      "shard_15169 loaded\n",
      "shard_38828 loaded\n",
      "shard_30429 loaded\n",
      "shard_30845 loaded\n",
      "shard_34191 loaded\n",
      "shard_48801 loaded\n",
      "shard_4062 loaded\n",
      "shard_21175 loaded\n",
      "shard_45942 loaded\n",
      "shard_42261 loaded\n",
      "shard_49697 loaded\n",
      "shard_44905 loaded\n",
      "shard_26013 loaded\n",
      "shard_49918 loaded\n",
      "shard_40258 loaded\n",
      "shard_22444 loaded\n",
      "shard_17966 loaded\n",
      "shard_42565 loaded\n",
      "shard_32362 loaded\n",
      "shard_12881 loaded\n",
      "shard_35602 loaded\n",
      "shard_6634 loaded\n",
      "shard_8225 loaded\n",
      "shard_39565 loaded\n",
      "shard_12103 loaded\n",
      "shard_3145 loaded\n",
      "shard_10424 loaded\n",
      "shard_47430 loaded\n",
      "shard_44996 loaded\n",
      "shard_32700 loaded\n",
      "shard_16502 loaded\n",
      "shard_13707 loaded\n",
      "shard_13958 loaded\n",
      "shard_8675 loaded\n",
      "shard_18375 loaded\n",
      "shard_11982 loaded\n",
      "shard_14145 loaded\n",
      "shard_30042 loaded\n",
      "shard_31704 loaded\n",
      "shard_6973 loaded\n",
      "shard_49636 loaded\n",
      "shard_33819 loaded\n",
      "shard_15695 loaded\n",
      "shard_8346 loaded\n",
      "shard_5346 loaded\n",
      "shard_7907 loaded\n",
      "shard_33509 loaded\n",
      "shard_1087 loaded\n",
      "shard_16755 loaded\n",
      "shard_5094 loaded\n",
      "shard_46412 loaded\n",
      "shard_48568 loaded\n",
      "shard_17400 loaded\n",
      "shard_36035 loaded\n",
      "shard_9226 loaded\n",
      "shard_29228 loaded\n",
      "shard_28013 loaded\n",
      "shard_6883 loaded\n",
      "shard_47729 loaded\n",
      "shard_37309 loaded\n",
      "shard_32426 loaded\n",
      "shard_39775 loaded\n",
      "shard_6646 loaded\n",
      "shard_23092 loaded\n",
      "shard_30350 loaded\n",
      "shard_10153 loaded\n",
      "shard_20204 loaded\n",
      "shard_14705 loaded\n",
      "shard_48573 loaded\n",
      "shard_10031 loaded\n",
      "shard_16623 loaded\n",
      "shard_12922 loaded\n",
      "shard_8846 loaded\n",
      "shard_14779 loaded\n",
      "shard_6115 loaded\n",
      "shard_33680 loaded\n",
      "shard_11697 loaded\n",
      "shard_20394 loaded\n",
      "shard_26030 loaded\n",
      "shard_19450 loaded\n",
      "shard_19415 loaded\n",
      "shard_13086 loaded\n",
      "shard_24774 loaded\n",
      "shard_11079 loaded\n",
      "shard_24703 loaded\n",
      "shard_44897 loaded\n",
      "shard_19026 loaded\n",
      "shard_29476 loaded\n",
      "shard_21596 loaded\n",
      "shard_32875 loaded\n",
      "shard_12467 loaded\n",
      "shard_26157 loaded\n",
      "shard_12208 loaded\n",
      "shard_22103 loaded\n",
      "shard_6530 loaded\n",
      "shard_17310 loaded\n",
      "shard_39960 loaded\n",
      "shard_23662 loaded\n",
      "shard_1387 loaded\n",
      "shard_25360 loaded\n",
      "shard_43412 loaded\n",
      "shard_2614 loaded\n",
      "shard_20949 loaded\n",
      "shard_35043 loaded\n",
      "shard_25234 loaded\n",
      "shard_26681 loaded\n",
      "shard_11066 loaded\n",
      "shard_44545 loaded\n",
      "shard_33312 loaded\n",
      "shard_6042 loaded\n",
      "shard_21405 loaded\n",
      "shard_2343 loaded\n",
      "shard_40412 loaded\n",
      "shard_9537 loaded\n",
      "shard_40748 loaded\n",
      "shard_12625 loaded\n",
      "shard_24376 loaded\n",
      "shard_9454 loaded\n",
      "shard_17035 loaded\n",
      "shard_889 loaded\n",
      "shard_14604 loaded\n",
      "shard_25447 loaded\n",
      "shard_8852 loaded\n",
      "shard_22089 loaded\n",
      "shard_28754 loaded\n",
      "shard_30485 loaded\n",
      "shard_45475 loaded\n",
      "shard_25352 loaded\n",
      "shard_1176 loaded\n",
      "shard_18299 loaded\n",
      "shard_32278 loaded\n",
      "shard_28187 loaded\n",
      "shard_8330 loaded\n",
      "shard_41477 loaded\n",
      "shard_43938 loaded\n",
      "shard_41502 loaded\n",
      "shard_14506 loaded\n",
      "shard_44146 loaded\n",
      "shard_12360 loaded\n",
      "shard_16740 loaded\n",
      "shard_10932 loaded\n",
      "shard_14044 loaded\n",
      "shard_41822 loaded\n",
      "shard_36055 loaded\n",
      "shard_11111 loaded\n",
      "shard_33826 loaded\n",
      "shard_46691 loaded\n",
      "shard_49485 loaded\n",
      "shard_14291 loaded\n",
      "shard_17381 loaded\n",
      "shard_29148 loaded\n",
      "shard_39327 loaded\n",
      "shard_45724 loaded\n",
      "shard_31276 loaded\n",
      "shard_48584 loaded\n",
      "shard_18057 loaded\n",
      "shard_48378 loaded\n",
      "shard_16743 loaded\n",
      "shard_39339 loaded\n",
      "shard_27230 loaded\n",
      "shard_42322 loaded\n",
      "shard_21020 loaded\n",
      "shard_25500 loaded\n",
      "shard_14327 loaded\n",
      "shard_23748 loaded\n",
      "shard_45493 loaded\n",
      "shard_2342 loaded\n",
      "shard_33111 loaded\n",
      "shard_25749 loaded\n",
      "shard_36130 loaded\n",
      "shard_9617 loaded\n",
      "shard_40899 loaded\n",
      "shard_34504 loaded\n",
      "shard_13196 loaded\n",
      "shard_27776 loaded\n",
      "shard_29873 loaded\n",
      "shard_49516 loaded\n",
      "shard_23244 loaded\n",
      "shard_1156 loaded\n",
      "shard_24361 loaded\n",
      "shard_20402 loaded\n",
      "shard_3477 loaded\n",
      "shard_4438 loaded\n",
      "shard_33692 loaded\n",
      "shard_21588 loaded\n",
      "shard_18151 loaded\n",
      "shard_24928 loaded\n",
      "shard_48644 loaded\n",
      "shard_46227 loaded\n",
      "shard_36099 loaded\n",
      "shard_13386 loaded\n",
      "shard_48429 loaded\n",
      "shard_48743 loaded\n",
      "shard_9513 loaded\n",
      "shard_4767 loaded\n",
      "shard_24762 loaded\n",
      "shard_31788 loaded\n",
      "shard_19975 loaded\n",
      "shard_8554 loaded\n",
      "shard_2823 loaded\n",
      "shard_22355 loaded\n",
      "shard_4230 loaded\n",
      "shard_47251 loaded\n",
      "shard_9756 loaded\n",
      "shard_46844 loaded\n",
      "shard_786 loaded\n",
      "shard_8086 loaded\n",
      "shard_32132 loaded\n",
      "shard_3206 loaded\n",
      "shard_10534 loaded\n",
      "shard_47881 loaded\n",
      "shard_38184 loaded\n",
      "shard_25097 loaded\n",
      "shard_23111 loaded\n",
      "shard_48454 loaded\n",
      "shard_44609 loaded\n",
      "shard_13167 loaded\n",
      "shard_12000 loaded\n",
      "shard_2969 loaded\n",
      "shard_41458 loaded\n",
      "shard_40301 loaded\n",
      "shard_30993 loaded\n",
      "shard_9905 loaded\n",
      "shard_3604 loaded\n",
      "shard_26251 loaded\n",
      "shard_26355 loaded\n",
      "shard_25603 loaded\n",
      "shard_14511 loaded\n",
      "shard_26527 loaded\n",
      "shard_10208 loaded\n",
      "shard_8900 loaded\n",
      "shard_28287 loaded\n",
      "shard_2623 loaded\n",
      "shard_42909 loaded\n",
      "shard_15236 loaded\n",
      "shard_16276 loaded\n",
      "shard_28939 loaded\n",
      "shard_24190 loaded\n",
      "shard_25002 loaded\n",
      "shard_8392 loaded\n",
      "shard_19645 loaded\n",
      "shard_39300 loaded\n",
      "shard_25212 loaded\n",
      "shard_909 loaded\n",
      "shard_18005 loaded\n",
      "shard_11778 loaded\n",
      "shard_21704 loaded\n",
      "shard_37398 loaded\n",
      "shard_45807 loaded\n",
      "shard_45585 loaded\n",
      "shard_44462 loaded\n",
      "shard_43480 loaded\n",
      "shard_39426 loaded\n",
      "shard_36295 loaded\n",
      "shard_14596 loaded\n",
      "shard_26215 loaded\n",
      "shard_3134 loaded\n",
      "shard_32627 loaded\n",
      "shard_37721 loaded\n",
      "shard_28618 loaded\n",
      "shard_55 loaded\n",
      "shard_35913 loaded\n",
      "shard_48167 loaded\n",
      "shard_25808 loaded\n",
      "shard_49246 loaded\n",
      "shard_6438 loaded\n",
      "shard_43947 loaded\n",
      "shard_35478 loaded\n",
      "shard_36966 loaded\n",
      "shard_5739 loaded\n",
      "shard_47047 loaded\n",
      "shard_48098 loaded\n",
      "shard_4632 loaded\n",
      "shard_2546 loaded\n",
      "shard_27979 loaded\n",
      "shard_31185 loaded\n",
      "shard_23997 loaded\n",
      "shard_10729 loaded\n",
      "shard_27429 loaded\n",
      "shard_16362 loaded\n",
      "shard_19663 loaded\n",
      "shard_30341 loaded\n",
      "shard_37223 loaded\n",
      "shard_35427 loaded\n",
      "shard_18035 loaded\n",
      "shard_31610 loaded\n",
      "shard_19960 loaded\n",
      "shard_23048 loaded\n",
      "shard_43548 loaded\n",
      "shard_49627 loaded\n",
      "shard_253 loaded\n",
      "shard_37964 loaded\n",
      "shard_24610 loaded\n",
      "shard_35058 loaded\n",
      "shard_43649 loaded\n",
      "shard_24515 loaded\n",
      "shard_30335 loaded\n",
      "shard_40499 loaded\n",
      "shard_17995 loaded\n",
      "shard_33273 loaded\n",
      "shard_11568 loaded\n",
      "shard_36270 loaded\n",
      "shard_8976 loaded\n",
      "shard_34761 loaded\n",
      "shard_40379 loaded\n",
      "shard_13967 loaded\n",
      "shard_30941 loaded\n",
      "shard_23683 loaded\n",
      "shard_2264 loaded\n",
      "shard_25255 loaded\n",
      "shard_42668 loaded\n",
      "shard_1860 loaded\n",
      "shard_32468 loaded\n",
      "shard_2752 loaded\n",
      "shard_6445 loaded\n",
      "shard_16672 loaded\n",
      "shard_33708 loaded\n",
      "shard_49917 loaded\n",
      "shard_23034 loaded\n",
      "shard_19501 loaded\n",
      "shard_6328 loaded\n",
      "shard_29718 loaded\n",
      "shard_15363 loaded\n",
      "shard_32196 loaded\n",
      "shard_21275 loaded\n",
      "shard_24999 loaded\n",
      "shard_41563 loaded\n",
      "shard_42045 loaded\n",
      "shard_46222 loaded\n",
      "shard_45500 loaded\n",
      "shard_27321 loaded\n",
      "shard_49747 loaded\n",
      "shard_8673 loaded\n",
      "shard_31978 loaded\n",
      "shard_43695 loaded\n",
      "shard_23571 loaded\n",
      "shard_48509 loaded\n",
      "shard_20157 loaded\n",
      "shard_17488 loaded\n",
      "shard_22315 loaded\n",
      "shard_15435 loaded\n",
      "shard_49888 loaded\n",
      "shard_30453 loaded\n",
      "shard_26950 loaded\n",
      "shard_19177 loaded\n",
      "shard_11780 loaded\n",
      "shard_23557 loaded\n",
      "shard_13080 loaded\n",
      "shard_3188 loaded\n",
      "shard_28004 loaded\n",
      "shard_47797 loaded\n",
      "shard_4999 loaded\n",
      "shard_38527 loaded\n",
      "shard_17212 loaded\n",
      "shard_13056 loaded\n",
      "shard_9987 loaded\n",
      "shard_41851 loaded\n",
      "shard_24138 loaded\n",
      "shard_7110 loaded\n",
      "shard_25643 loaded\n",
      "shard_36173 loaded\n",
      "shard_22635 loaded\n",
      "shard_19551 loaded\n",
      "shard_48570 loaded\n",
      "shard_33193 loaded\n",
      "shard_16202 loaded\n",
      "shard_23900 loaded\n",
      "shard_30926 loaded\n",
      "shard_48787 loaded\n",
      "shard_26143 loaded\n",
      "shard_34189 loaded\n",
      "shard_39460 loaded\n",
      "shard_45227 loaded\n",
      "shard_868 loaded\n",
      "shard_29831 loaded\n",
      "shard_15513 loaded\n",
      "shard_22839 loaded\n",
      "shard_36067 loaded\n",
      "shard_39797 loaded\n",
      "shard_47070 loaded\n",
      "shard_12845 loaded\n",
      "shard_14984 loaded\n",
      "shard_9115 loaded\n",
      "shard_25332 loaded\n",
      "shard_38682 loaded\n",
      "shard_20413 loaded\n",
      "shard_12420 loaded\n",
      "shard_1634 loaded\n",
      "shard_42314 loaded\n",
      "shard_40822 loaded\n",
      "shard_48985 loaded\n",
      "shard_46883 loaded\n",
      "shard_5124 loaded\n",
      "shard_44112 loaded\n",
      "shard_17964 loaded\n",
      "shard_32874 loaded\n",
      "shard_8716 loaded\n",
      "shard_29081 loaded\n",
      "shard_3450 loaded\n",
      "shard_13888 loaded\n",
      "shard_21063 loaded\n",
      "shard_5331 loaded\n",
      "shard_45972 loaded\n",
      "shard_41493 loaded\n",
      "shard_27522 loaded\n",
      "shard_34120 loaded\n",
      "shard_14472 loaded\n",
      "shard_27518 loaded\n",
      "shard_27222 loaded\n",
      "shard_29335 loaded\n",
      "shard_44818 loaded\n",
      "shard_35730 loaded\n",
      "shard_29494 loaded\n",
      "shard_18066 loaded\n",
      "shard_38177 loaded\n",
      "shard_9069 loaded\n",
      "shard_28537 loaded\n",
      "shard_20253 loaded\n",
      "shard_31736 loaded\n",
      "shard_45697 loaded\n",
      "shard_411 loaded\n",
      "shard_1434 loaded\n",
      "shard_17687 loaded\n",
      "shard_30216 loaded\n",
      "shard_1041 loaded\n",
      "shard_12730 loaded\n",
      "shard_4033 loaded\n",
      "shard_41768 loaded\n",
      "shard_3283 loaded\n",
      "shard_33925 loaded\n",
      "shard_9607 loaded\n",
      "shard_14707 loaded\n",
      "shard_9054 loaded\n",
      "shard_21533 loaded\n",
      "shard_44724 loaded\n",
      "shard_31905 loaded\n",
      "shard_7286 loaded\n",
      "shard_33333 loaded\n",
      "shard_21369 loaded\n",
      "shard_12344 loaded\n",
      "shard_44351 loaded\n",
      "shard_23804 loaded\n",
      "shard_18339 loaded\n",
      "shard_32471 loaded\n",
      "shard_45747 loaded\n",
      "shard_31809 loaded\n",
      "shard_49260 loaded\n",
      "shard_15878 loaded\n",
      "shard_28324 loaded\n",
      "shard_16736 loaded\n",
      "shard_25557 loaded\n",
      "shard_12302 loaded\n",
      "shard_30301 loaded\n",
      "shard_39486 loaded\n",
      "shard_18741 loaded\n",
      "shard_5941 loaded\n",
      "shard_30245 loaded\n",
      "shard_3873 loaded\n",
      "shard_13410 loaded\n",
      "shard_4540 loaded\n",
      "shard_32595 loaded\n",
      "shard_21470 loaded\n",
      "shard_40270 loaded\n",
      "shard_34475 loaded\n",
      "shard_14584 loaded\n",
      "shard_28841 loaded\n",
      "shard_16941 loaded\n",
      "shard_675 loaded\n",
      "shard_25614 loaded\n",
      "shard_29793 loaded\n",
      "shard_48826 loaded\n",
      "shard_46045 loaded\n",
      "shard_19998 loaded\n",
      "shard_26624 loaded\n",
      "shard_40660 loaded\n",
      "shard_19939 loaded\n",
      "shard_30448 loaded\n",
      "shard_7719 loaded\n",
      "shard_4050 loaded\n",
      "shard_23368 loaded\n",
      "shard_6684 loaded\n",
      "shard_5456 loaded\n",
      "shard_45903 loaded\n",
      "shard_3142 loaded\n",
      "shard_2145 loaded\n",
      "shard_40697 loaded\n",
      "shard_36564 loaded\n",
      "shard_44297 loaded\n",
      "shard_28983 loaded\n",
      "shard_29894 loaded\n",
      "shard_9840 loaded\n",
      "shard_39899 loaded\n",
      "shard_6870 loaded\n",
      "shard_35377 loaded\n",
      "shard_36565 loaded\n",
      "shard_14029 loaded\n",
      "shard_28319 loaded\n",
      "shard_27274 loaded\n",
      "shard_32544 loaded\n",
      "shard_30575 loaded\n",
      "shard_32923 loaded\n",
      "shard_43524 loaded\n",
      "shard_1631 loaded\n",
      "shard_5373 loaded\n",
      "shard_25826 loaded\n",
      "shard_27348 loaded\n",
      "shard_15988 loaded\n",
      "shard_17987 loaded\n",
      "shard_10956 loaded\n",
      "shard_12616 loaded\n",
      "shard_32528 loaded\n",
      "shard_38701 loaded\n",
      "shard_37864 loaded\n",
      "shard_14541 loaded\n",
      "shard_25227 loaded\n",
      "shard_48152 loaded\n",
      "shard_27319 loaded\n",
      "shard_13177 loaded\n",
      "shard_29919 loaded\n",
      "shard_9612 loaded\n",
      "shard_12560 loaded\n",
      "shard_34321 loaded\n",
      "shard_10377 loaded\n",
      "shard_37858 loaded\n",
      "shard_49847 loaded\n",
      "shard_12529 loaded\n",
      "shard_33729 loaded\n",
      "shard_520 loaded\n",
      "shard_36361 loaded\n",
      "shard_17192 loaded\n",
      "shard_24717 loaded\n",
      "shard_36624 loaded\n",
      "shard_7054 loaded\n",
      "shard_655 loaded\n",
      "shard_30067 loaded\n",
      "shard_23811 loaded\n",
      "shard_49293 loaded\n",
      "shard_25833 loaded\n",
      "shard_33707 loaded\n",
      "shard_43453 loaded\n",
      "shard_34950 loaded\n",
      "shard_21951 loaded\n",
      "shard_23606 loaded\n",
      "shard_49322 loaded\n",
      "shard_18313 loaded\n",
      "shard_44034 loaded\n",
      "shard_25667 loaded\n",
      "shard_5178 loaded\n",
      "shard_26346 loaded\n",
      "shard_42867 loaded\n",
      "shard_12062 loaded\n",
      "shard_37531 loaded\n",
      "shard_27993 loaded\n",
      "shard_7375 loaded\n",
      "shard_46573 loaded\n",
      "shard_17926 loaded\n",
      "shard_25798 loaded\n",
      "shard_24542 loaded\n",
      "shard_8617 loaded\n",
      "shard_25152 loaded\n",
      "shard_29266 loaded\n",
      "shard_9924 loaded\n",
      "shard_14243 loaded\n",
      "shard_3211 loaded\n",
      "shard_1204 loaded\n",
      "shard_20955 loaded\n",
      "shard_40390 loaded\n",
      "shard_17575 loaded\n",
      "shard_35136 loaded\n",
      "shard_40741 loaded\n",
      "shard_15996 loaded\n",
      "shard_3137 loaded\n",
      "shard_14965 loaded\n",
      "shard_3447 loaded\n",
      "shard_4649 loaded\n",
      "shard_49057 loaded\n",
      "shard_17319 loaded\n",
      "shard_17673 loaded\n",
      "shard_43955 loaded\n",
      "shard_438 loaded\n",
      "shard_39232 loaded\n",
      "shard_37367 loaded\n",
      "shard_49876 loaded\n",
      "shard_49722 loaded\n",
      "shard_14625 loaded\n",
      "shard_31975 loaded\n",
      "shard_34837 loaded\n",
      "shard_11981 loaded\n",
      "shard_6398 loaded\n",
      "shard_19874 loaded\n",
      "shard_6004 loaded\n",
      "shard_34637 loaded\n",
      "shard_24209 loaded\n",
      "shard_3383 loaded\n",
      "shard_8012 loaded\n",
      "shard_19305 loaded\n",
      "shard_41373 loaded\n",
      "shard_34376 loaded\n",
      "shard_30536 loaded\n",
      "shard_22778 loaded\n",
      "shard_28919 loaded\n",
      "shard_30899 loaded\n",
      "shard_28172 loaded\n",
      "shard_36264 loaded\n",
      "shard_42883 loaded\n",
      "shard_34159 loaded\n",
      "shard_9379 loaded\n",
      "shard_34864 loaded\n",
      "shard_34694 loaded\n",
      "shard_46746 loaded\n",
      "shard_13895 loaded\n",
      "shard_45726 loaded\n",
      "shard_18286 loaded\n",
      "shard_37521 loaded\n",
      "shard_35946 loaded\n",
      "shard_31377 loaded\n",
      "shard_16499 loaded\n",
      "shard_2672 loaded\n",
      "shard_21329 loaded\n",
      "shard_2378 loaded\n",
      "shard_48738 loaded\n",
      "shard_17480 loaded\n",
      "shard_1503 loaded\n",
      "shard_837 loaded\n",
      "shard_38191 loaded\n",
      "shard_20643 loaded\n",
      "shard_36705 loaded\n",
      "shard_18368 loaded\n",
      "shard_24641 loaded\n",
      "shard_9210 loaded\n",
      "shard_39738 loaded\n",
      "shard_17044 loaded\n",
      "shard_35256 loaded\n",
      "shard_17759 loaded\n",
      "shard_49168 loaded\n",
      "shard_16615 loaded\n",
      "shard_376 loaded\n",
      "shard_44062 loaded\n",
      "shard_37343 loaded\n",
      "shard_10828 loaded\n",
      "shard_45701 loaded\n",
      "shard_40698 loaded\n",
      "shard_21327 loaded\n",
      "shard_8186 loaded\n",
      "shard_45828 loaded\n",
      "shard_6631 loaded\n",
      "shard_41199 loaded\n",
      "shard_43574 loaded\n",
      "shard_11526 loaded\n",
      "shard_23101 loaded\n",
      "shard_40556 loaded\n",
      "shard_28204 loaded\n",
      "shard_24568 loaded\n",
      "shard_8210 loaded\n",
      "shard_18295 loaded\n",
      "shard_16835 loaded\n",
      "shard_42198 loaded\n",
      "shard_4572 loaded\n",
      "shard_37463 loaded\n",
      "shard_9784 loaded\n",
      "shard_25489 loaded\n",
      "shard_10320 loaded\n",
      "shard_31860 loaded\n",
      "shard_21782 loaded\n",
      "shard_42905 loaded\n",
      "shard_43821 loaded\n",
      "shard_48663 loaded\n",
      "shard_24365 loaded\n",
      "shard_31986 loaded\n",
      "shard_31467 loaded\n",
      "shard_44518 loaded\n",
      "shard_48972 loaded\n",
      "shard_12670 loaded\n",
      "shard_25665 loaded\n",
      "shard_49781 loaded\n",
      "shard_31548 loaded\n",
      "shard_18766 loaded\n",
      "shard_22647 loaded\n",
      "shard_21959 loaded\n",
      "shard_24175 loaded\n",
      "shard_33332 loaded\n",
      "shard_2542 loaded\n",
      "shard_46287 loaded\n",
      "shard_559 loaded\n",
      "shard_23402 loaded\n",
      "shard_16214 loaded\n",
      "shard_48995 loaded\n",
      "shard_11642 loaded\n",
      "shard_49058 loaded\n",
      "shard_18308 loaded\n",
      "shard_18162 loaded\n",
      "shard_39513 loaded\n",
      "shard_19491 loaded\n",
      "shard_29496 loaded\n",
      "shard_25297 loaded\n",
      "shard_894 loaded\n",
      "shard_23946 loaded\n",
      "shard_11092 loaded\n",
      "shard_15663 loaded\n",
      "shard_42846 loaded\n",
      "shard_14567 loaded\n",
      "shard_25107 loaded\n",
      "shard_27956 loaded\n",
      "shard_13119 loaded\n",
      "shard_15819 loaded\n",
      "shard_6432 loaded\n",
      "shard_48635 loaded\n",
      "shard_32649 loaded\n",
      "shard_35503 loaded\n",
      "shard_21895 loaded\n",
      "shard_36066 loaded\n",
      "shard_36064 loaded\n",
      "shard_35014 loaded\n",
      "shard_21054 loaded\n",
      "shard_22129 loaded\n",
      "shard_21888 loaded\n",
      "shard_16832 loaded\n",
      "shard_44289 loaded\n",
      "shard_11970 loaded\n",
      "shard_5464 loaded\n",
      "shard_5111 loaded\n",
      "shard_10947 loaded\n",
      "shard_41734 loaded\n",
      "shard_44339 loaded\n",
      "shard_13879 loaded\n",
      "shard_7214 loaded\n",
      "shard_18670 loaded\n",
      "shard_39710 loaded\n",
      "shard_25279 loaded\n",
      "shard_6724 loaded\n",
      "shard_10873 loaded\n",
      "shard_39054 loaded\n",
      "shard_32668 loaded\n",
      "shard_18782 loaded\n",
      "shard_16822 loaded\n",
      "shard_4990 loaded\n",
      "shard_2926 loaded\n",
      "shard_7044 loaded\n",
      "shard_17006 loaded\n",
      "shard_14415 loaded\n",
      "shard_47838 loaded\n",
      "shard_31088 loaded\n",
      "shard_38320 loaded\n",
      "shard_31141 loaded\n",
      "shard_40068 loaded\n",
      "shard_9829 loaded\n",
      "shard_19192 loaded\n",
      "shard_40769 loaded\n",
      "shard_30306 loaded\n",
      "shard_10804 loaded\n",
      "shard_8043 loaded\n",
      "shard_22750 loaded\n",
      "shard_14737 loaded\n",
      "shard_42612 loaded\n",
      "shard_46154 loaded\n",
      "shard_15863 loaded\n",
      "shard_21496 loaded\n",
      "shard_26153 loaded\n",
      "shard_19540 loaded\n",
      "shard_11588 loaded\n",
      "shard_21623 loaded\n",
      "shard_2188 loaded\n",
      "shard_15069 loaded\n",
      "shard_31367 loaded\n",
      "shard_42189 loaded\n",
      "shard_6240 loaded\n",
      "shard_28189 loaded\n",
      "shard_9914 loaded\n",
      "shard_26206 loaded\n",
      "shard_30432 loaded\n",
      "shard_8085 loaded\n",
      "shard_44022 loaded\n",
      "shard_49566 loaded\n",
      "shard_47584 loaded\n",
      "shard_788 loaded\n",
      "shard_14013 loaded\n",
      "shard_22579 loaded\n",
      "shard_8215 loaded\n",
      "shard_38241 loaded\n",
      "shard_19690 loaded\n",
      "shard_43298 loaded\n",
      "shard_49231 loaded\n",
      "shard_32195 loaded\n",
      "shard_12656 loaded\n",
      "shard_23129 loaded\n",
      "shard_22777 loaded\n",
      "shard_21822 loaded\n",
      "shard_35124 loaded\n",
      "shard_41574 loaded\n",
      "shard_4332 loaded\n",
      "shard_7015 loaded\n",
      "shard_13102 loaded\n",
      "shard_39848 loaded\n",
      "shard_23176 loaded\n",
      "shard_322 loaded\n",
      "shard_38522 loaded\n",
      "shard_26370 loaded\n",
      "shard_38104 loaded\n",
      "shard_7945 loaded\n",
      "shard_37277 loaded\n",
      "shard_23753 loaded\n",
      "shard_29926 loaded\n",
      "shard_8115 loaded\n",
      "shard_37122 loaded\n",
      "shard_9618 loaded\n",
      "shard_1973 loaded\n",
      "shard_25695 loaded\n",
      "shard_13366 loaded\n",
      "shard_37246 loaded\n",
      "shard_1259 loaded\n",
      "shard_35406 loaded\n",
      "shard_30021 loaded\n",
      "shard_48204 loaded\n",
      "shard_2630 loaded\n",
      "shard_42989 loaded\n",
      "shard_3587 loaded\n",
      "shard_29231 loaded\n",
      "shard_13726 loaded\n",
      "shard_25694 loaded\n",
      "shard_38203 loaded\n",
      "shard_2983 loaded\n",
      "shard_24585 loaded\n",
      "shard_39042 loaded\n",
      "shard_31778 loaded\n",
      "shard_6051 loaded\n",
      "shard_3501 loaded\n",
      "shard_11517 loaded\n",
      "shard_37006 loaded\n",
      "shard_4560 loaded\n",
      "shard_14760 loaded\n",
      "shard_33661 loaded\n",
      "shard_45415 loaded\n",
      "shard_28856 loaded\n",
      "shard_15128 loaded\n",
      "shard_31022 loaded\n",
      "shard_21287 loaded\n",
      "shard_43437 loaded\n",
      "shard_24808 loaded\n",
      "shard_20283 loaded\n",
      "shard_26697 loaded\n",
      "shard_9446 loaded\n",
      "shard_42111 loaded\n",
      "shard_36718 loaded\n",
      "shard_45244 loaded\n",
      "shard_2799 loaded\n",
      "shard_49326 loaded\n",
      "shard_24771 loaded\n",
      "shard_19515 loaded\n",
      "shard_40174 loaded\n",
      "shard_48811 loaded\n",
      "shard_42569 loaded\n",
      "shard_29286 loaded\n",
      "shard_46382 loaded\n",
      "shard_20721 loaded\n",
      "shard_20815 loaded\n",
      "shard_33920 loaded\n",
      "shard_5344 loaded\n",
      "shard_12354 loaded\n",
      "shard_35379 loaded\n",
      "shard_38362 loaded\n",
      "shard_29490 loaded\n",
      "shard_33457 loaded\n",
      "shard_25316 loaded\n",
      "shard_30695 loaded\n",
      "shard_1519 loaded\n",
      "shard_47184 loaded\n",
      "shard_40357 loaded\n",
      "shard_30076 loaded\n",
      "shard_449 loaded\n",
      "shard_38463 loaded\n",
      "shard_48556 loaded\n",
      "shard_21298 loaded\n",
      "shard_26767 loaded\n",
      "shard_29450 loaded\n",
      "shard_35850 loaded\n",
      "shard_5908 loaded\n",
      "shard_3371 loaded\n",
      "shard_18640 loaded\n",
      "shard_46605 loaded\n",
      "shard_44887 loaded\n",
      "shard_6472 loaded\n",
      "shard_15466 loaded\n",
      "shard_24631 loaded\n",
      "shard_48232 loaded\n",
      "shard_19457 loaded\n",
      "shard_35828 loaded\n",
      "shard_21455 loaded\n",
      "shard_29334 loaded\n",
      "shard_39862 loaded\n",
      "shard_6312 loaded\n",
      "shard_11876 loaded\n",
      "shard_36475 loaded\n",
      "shard_14821 loaded\n",
      "shard_37377 loaded\n",
      "shard_12465 loaded\n",
      "shard_6040 loaded\n",
      "shard_770 loaded\n",
      "shard_15926 loaded\n",
      "shard_18357 loaded\n",
      "shard_11919 loaded\n",
      "shard_15536 loaded\n",
      "shard_8170 loaded\n",
      "shard_29735 loaded\n",
      "shard_37257 loaded\n",
      "shard_32075 loaded\n",
      "shard_44509 loaded\n",
      "shard_5916 loaded\n",
      "shard_36250 loaded\n",
      "shard_38752 loaded\n",
      "shard_13795 loaded\n",
      "shard_26173 loaded\n",
      "shard_23289 loaded\n",
      "shard_14418 loaded\n",
      "shard_46904 loaded\n",
      "shard_21591 loaded\n",
      "shard_1286 loaded\n",
      "shard_28294 loaded\n",
      "shard_24127 loaded\n",
      "shard_16562 loaded\n",
      "shard_33635 loaded\n",
      "shard_2389 loaded\n",
      "shard_24099 loaded\n",
      "shard_40474 loaded\n",
      "shard_12721 loaded\n",
      "shard_39965 loaded\n",
      "shard_46094 loaded\n",
      "shard_717 loaded\n",
      "shard_4496 loaded\n",
      "shard_25396 loaded\n",
      "shard_42533 loaded\n",
      "shard_25530 loaded\n",
      "shard_24863 loaded\n",
      "shard_36217 loaded\n",
      "shard_21338 loaded\n",
      "shard_10064 loaded\n",
      "shard_17001 loaded\n",
      "shard_40469 loaded\n",
      "shard_5475 loaded\n",
      "shard_13632 loaded\n",
      "shard_33943 loaded\n",
      "shard_4567 loaded\n",
      "shard_8642 loaded\n",
      "shard_49314 loaded\n",
      "shard_23905 loaded\n",
      "shard_16718 loaded\n",
      "shard_49018 loaded\n",
      "shard_12242 loaded\n",
      "shard_12160 loaded\n",
      "shard_20884 loaded\n",
      "shard_22000 loaded\n",
      "shard_2938 loaded\n",
      "shard_9802 loaded\n",
      "shard_32203 loaded\n",
      "shard_15351 loaded\n",
      "shard_38061 loaded\n",
      "shard_28521 loaded\n",
      "shard_9001 loaded\n",
      "shard_29549 loaded\n",
      "shard_9259 loaded\n",
      "shard_4471 loaded\n",
      "shard_21311 loaded\n",
      "shard_6095 loaded\n",
      "shard_8156 loaded\n",
      "shard_6264 loaded\n",
      "shard_47109 loaded\n",
      "shard_5587 loaded\n",
      "shard_40778 loaded\n",
      "shard_5341 loaded\n",
      "shard_6424 loaded\n",
      "shard_24077 loaded\n",
      "shard_49030 loaded\n",
      "shard_21363 loaded\n",
      "shard_16166 loaded\n",
      "shard_32104 loaded\n",
      "shard_29805 loaded\n",
      "shard_18514 loaded\n",
      "shard_29576 loaded\n",
      "shard_22544 loaded\n",
      "shard_6826 loaded\n",
      "shard_47274 loaded\n",
      "shard_8395 loaded\n",
      "shard_40047 loaded\n",
      "shard_34316 loaded\n",
      "shard_28605 loaded\n",
      "shard_49661 loaded\n",
      "shard_19466 loaded\n",
      "shard_34845 loaded\n",
      "shard_21317 loaded\n",
      "shard_34977 loaded\n",
      "shard_45403 loaded\n",
      "shard_4041 loaded\n",
      "shard_15566 loaded\n",
      "shard_44326 loaded\n",
      "shard_12842 loaded\n",
      "shard_24684 loaded\n",
      "shard_36390 loaded\n",
      "shard_30823 loaded\n",
      "shard_11435 loaded\n",
      "shard_33681 loaded\n",
      "shard_25783 loaded\n",
      "shard_35158 loaded\n",
      "shard_9212 loaded\n",
      "shard_45107 loaded\n",
      "shard_23972 loaded\n",
      "shard_28479 loaded\n",
      "shard_11549 loaded\n",
      "shard_12337 loaded\n",
      "shard_46506 loaded\n",
      "shard_31744 loaded\n",
      "shard_40796 loaded\n",
      "shard_7300 loaded\n",
      "shard_6485 loaded\n",
      "shard_8189 loaded\n",
      "shard_40456 loaded\n",
      "shard_21347 loaded\n",
      "shard_36904 loaded\n",
      "shard_36416 loaded\n",
      "shard_38607 loaded\n",
      "shard_41197 loaded\n",
      "shard_36201 loaded\n",
      "shard_20005 loaded\n",
      "shard_10127 loaded\n",
      "shard_2739 loaded\n",
      "shard_8286 loaded\n",
      "shard_23341 loaded\n",
      "shard_18115 loaded\n",
      "shard_1337 loaded\n",
      "shard_5467 loaded\n",
      "shard_39379 loaded\n",
      "shard_6076 loaded\n",
      "shard_19485 loaded\n",
      "shard_17653 loaded\n",
      "shard_19384 loaded\n",
      "shard_44699 loaded\n",
      "shard_20666 loaded\n",
      "shard_28609 loaded\n",
      "shard_15644 loaded\n",
      "shard_15731 loaded\n",
      "shard_27220 loaded\n",
      "shard_7712 loaded\n",
      "shard_43565 loaded\n",
      "shard_48600 loaded\n",
      "shard_1603 loaded\n",
      "shard_10570 loaded\n",
      "shard_33605 loaded\n",
      "shard_8479 loaded\n",
      "shard_29111 loaded\n",
      "shard_3751 loaded\n",
      "shard_47731 loaded\n",
      "shard_17179 loaded\n",
      "shard_32273 loaded\n",
      "shard_13030 loaded\n",
      "shard_3727 loaded\n",
      "shard_33643 loaded\n",
      "shard_49746 loaded\n",
      "shard_25593 loaded\n",
      "shard_18608 loaded\n",
      "shard_28741 loaded\n",
      "shard_2831 loaded\n",
      "shard_19653 loaded\n",
      "shard_38234 loaded\n",
      "shard_14159 loaded\n",
      "shard_1990 loaded\n",
      "shard_25873 loaded\n",
      "shard_47541 loaded\n",
      "shard_10070 loaded\n",
      "shard_18927 loaded\n",
      "shard_32889 loaded\n",
      "shard_25256 loaded\n",
      "shard_46140 loaded\n",
      "shard_31245 loaded\n",
      "shard_36620 loaded\n",
      "shard_645 loaded\n",
      "shard_42449 loaded\n",
      "shard_33651 loaded\n",
      "shard_21705 loaded\n",
      "shard_30356 loaded\n",
      "shard_12795 loaded\n",
      "shard_45171 loaded\n",
      "shard_44185 loaded\n",
      "shard_10431 loaded\n",
      "shard_16950 loaded\n",
      "shard_31714 loaded\n",
      "shard_38290 loaded\n",
      "shard_23858 loaded\n",
      "shard_2298 loaded\n",
      "shard_32818 loaded\n",
      "shard_27556 loaded\n",
      "shard_1695 loaded\n",
      "shard_44384 loaded\n",
      "shard_4001 loaded\n",
      "shard_26069 loaded\n",
      "shard_40878 loaded\n",
      "shard_10437 loaded\n",
      "shard_20762 loaded\n",
      "shard_45060 loaded\n",
      "shard_12434 loaded\n",
      "shard_7613 loaded\n",
      "shard_33581 loaded\n",
      "shard_21840 loaded\n",
      "shard_32612 loaded\n",
      "shard_11432 loaded\n",
      "shard_3072 loaded\n",
      "shard_30154 loaded\n",
      "shard_39190 loaded\n",
      "shard_12753 loaded\n",
      "shard_23600 loaded\n",
      "shard_36174 loaded\n",
      "shard_45718 loaded\n",
      "shard_18048 loaded\n",
      "shard_29764 loaded\n",
      "shard_4402 loaded\n",
      "shard_29099 loaded\n",
      "shard_35066 loaded\n",
      "shard_497 loaded\n",
      "shard_47444 loaded\n",
      "shard_26285 loaded\n",
      "shard_19736 loaded\n",
      "shard_36105 loaded\n",
      "shard_26723 loaded\n",
      "shard_47531 loaded\n",
      "shard_25650 loaded\n",
      "shard_26322 loaded\n",
      "shard_24134 loaded\n",
      "shard_35683 loaded\n",
      "shard_12747 loaded\n",
      "shard_35257 loaded\n",
      "shard_3961 loaded\n",
      "shard_24931 loaded\n",
      "shard_22254 loaded\n",
      "shard_31307 loaded\n",
      "shard_43231 loaded\n",
      "shard_28348 loaded\n",
      "shard_37312 loaded\n",
      "shard_9949 loaded\n",
      "shard_11355 loaded\n",
      "shard_46000 loaded\n",
      "shard_24394 loaded\n",
      "shard_30113 loaded\n",
      "shard_39915 loaded\n",
      "shard_29935 loaded\n",
      "shard_43388 loaded\n",
      "shard_19639 loaded\n",
      "shard_2489 loaded\n",
      "shard_6377 loaded\n",
      "shard_8280 loaded\n",
      "shard_7469 loaded\n",
      "shard_42863 loaded\n",
      "shard_17854 loaded\n",
      "shard_27489 loaded\n",
      "shard_14444 loaded\n",
      "shard_39302 loaded\n",
      "shard_47612 loaded\n",
      "shard_43669 loaded\n",
      "shard_42804 loaded\n",
      "shard_33849 loaded\n",
      "shard_31879 loaded\n",
      "shard_6657 loaded\n",
      "shard_13984 loaded\n",
      "shard_37738 loaded\n",
      "shard_23576 loaded\n",
      "shard_20067 loaded\n",
      "shard_8055 loaded\n",
      "shard_7676 loaded\n",
      "shard_3487 loaded\n",
      "shard_12945 loaded\n",
      "shard_10354 loaded\n",
      "shard_14336 loaded\n",
      "shard_30492 loaded\n",
      "shard_47600 loaded\n",
      "shard_4934 loaded\n",
      "shard_32416 loaded\n",
      "shard_45645 loaded\n",
      "shard_32959 loaded\n",
      "shard_48327 loaded\n",
      "shard_325 loaded\n",
      "shard_23508 loaded\n",
      "shard_11621 loaded\n",
      "shard_43874 loaded\n",
      "shard_41438 loaded\n",
      "shard_12010 loaded\n",
      "shard_24662 loaded\n",
      "shard_43877 loaded\n",
      "shard_11932 loaded\n",
      "shard_30922 loaded\n",
      "shard_39281 loaded\n",
      "shard_47915 loaded\n",
      "shard_20406 loaded\n",
      "shard_5114 loaded\n",
      "shard_6327 loaded\n",
      "shard_1893 loaded\n",
      "shard_5371 loaded\n",
      "shard_33020 loaded\n",
      "shard_9901 loaded\n",
      "shard_20040 loaded\n",
      "shard_36425 loaded\n",
      "shard_21978 loaded\n",
      "shard_9014 loaded\n",
      "shard_7863 loaded\n",
      "shard_29781 loaded\n",
      "shard_42902 loaded\n",
      "shard_9475 loaded\n",
      "shard_12860 loaded\n",
      "shard_11854 loaded\n",
      "shard_32082 loaded\n",
      "shard_27241 loaded\n",
      "shard_47088 loaded\n",
      "shard_49825 loaded\n",
      "shard_15928 loaded\n",
      "shard_31816 loaded\n",
      "shard_18152 loaded\n",
      "shard_12997 loaded\n",
      "shard_3850 loaded\n",
      "shard_11605 loaded\n",
      "shard_5798 loaded\n",
      "shard_19006 loaded\n",
      "shard_40559 loaded\n",
      "shard_42623 loaded\n",
      "shard_17781 loaded\n",
      "shard_6982 loaded\n",
      "shard_31446 loaded\n",
      "shard_29365 loaded\n",
      "shard_26175 loaded\n",
      "shard_18688 loaded\n",
      "shard_42862 loaded\n",
      "shard_49443 loaded\n",
      "shard_41022 loaded\n",
      "shard_35061 loaded\n",
      "shard_5650 loaded\n",
      "shard_21140 loaded\n",
      "shard_1274 loaded\n",
      "shard_37834 loaded\n",
      "shard_26256 loaded\n",
      "shard_43251 loaded\n",
      "shard_545 loaded\n",
      "shard_46971 loaded\n",
      "shard_32710 loaded\n",
      "shard_45918 loaded\n",
      "shard_1853 loaded\n",
      "shard_26339 loaded\n",
      "shard_6079 loaded\n",
      "shard_28127 loaded\n",
      "shard_49652 loaded\n",
      "shard_21296 loaded\n",
      "shard_43315 loaded\n",
      "shard_42729 loaded\n",
      "shard_21983 loaded\n",
      "shard_35089 loaded\n",
      "shard_8803 loaded\n",
      "shard_9823 loaded\n",
      "shard_42779 loaded\n",
      "shard_44852 loaded\n",
      "shard_11202 loaded\n",
      "shard_4928 loaded\n",
      "shard_36670 loaded\n",
      "shard_6771 loaded\n",
      "shard_40204 loaded\n",
      "shard_46798 loaded\n",
      "shard_30000 loaded\n",
      "shard_37770 loaded\n",
      "shard_2112 loaded\n",
      "shard_23879 loaded\n",
      "shard_45610 loaded\n",
      "shard_47971 loaded\n",
      "shard_22148 loaded\n",
      "shard_21463 loaded\n",
      "shard_38103 loaded\n",
      "shard_5727 loaded\n",
      "shard_45331 loaded\n",
      "shard_23586 loaded\n",
      "shard_45994 loaded\n",
      "shard_20121 loaded\n",
      "shard_43198 loaded\n",
      "shard_31331 loaded\n",
      "shard_48607 loaded\n",
      "shard_15488 loaded\n",
      "shard_44158 loaded\n",
      "shard_17511 loaded\n",
      "shard_19205 loaded\n",
      "shard_35787 loaded\n",
      "shard_15620 loaded\n",
      "shard_15902 loaded\n",
      "shard_29679 loaded\n",
      "shard_45031 loaded\n",
      "shard_6802 loaded\n",
      "shard_2933 loaded\n",
      "shard_9821 loaded\n",
      "shard_29065 loaded\n",
      "shard_27734 loaded\n",
      "shard_27083 loaded\n",
      "shard_33972 loaded\n",
      "shard_49289 loaded\n",
      "shard_13089 loaded\n",
      "shard_38372 loaded\n",
      "shard_37356 loaded\n",
      "shard_37308 loaded\n",
      "shard_7810 loaded\n",
      "shard_32477 loaded\n",
      "shard_20743 loaded\n",
      "shard_36153 loaded\n",
      "shard_2218 loaded\n",
      "shard_44118 loaded\n",
      "shard_21869 loaded\n",
      "shard_34906 loaded\n",
      "shard_20740 loaded\n",
      "shard_12035 loaded\n",
      "shard_31964 loaded\n",
      "shard_39477 loaded\n",
      "shard_32742 loaded\n",
      "shard_13187 loaded\n",
      "shard_23962 loaded\n",
      "shard_15886 loaded\n",
      "shard_11479 loaded\n",
      "shard_12179 loaded\n",
      "shard_47099 loaded\n",
      "shard_34647 loaded\n",
      "shard_47312 loaded\n",
      "shard_17768 loaded\n",
      "shard_43866 loaded\n",
      "shard_39800 loaded\n",
      "shard_49386 loaded\n",
      "shard_18675 loaded\n",
      "shard_3475 loaded\n",
      "shard_5887 loaded\n",
      "shard_46871 loaded\n",
      "shard_13932 loaded\n",
      "shard_40936 loaded\n",
      "shard_19936 loaded\n",
      "shard_40870 loaded\n",
      "shard_36800 loaded\n",
      "shard_17764 loaded\n",
      "shard_12470 loaded\n",
      "shard_5804 loaded\n",
      "shard_45290 loaded\n",
      "shard_21231 loaded\n",
      "shard_23447 loaded\n",
      "shard_40024 loaded\n",
      "shard_16430 loaded\n",
      "shard_42364 loaded\n",
      "shard_12190 loaded\n",
      "shard_34676 loaded\n",
      "shard_35852 loaded\n",
      "shard_10081 loaded\n",
      "shard_16834 loaded\n",
      "shard_12004 loaded\n",
      "shard_10948 loaded\n",
      "shard_6812 loaded\n",
      "shard_12223 loaded\n",
      "shard_27741 loaded\n",
      "shard_3714 loaded\n",
      "shard_23589 loaded\n",
      "shard_35465 loaded\n",
      "shard_8777 loaded\n",
      "shard_23654 loaded\n",
      "shard_33757 loaded\n",
      "shard_23226 loaded\n",
      "shard_23885 loaded\n",
      "shard_8424 loaded\n",
      "shard_9909 loaded\n",
      "shard_42302 loaded\n",
      "shard_37423 loaded\n",
      "shard_29386 loaded\n",
      "shard_6108 loaded\n",
      "shard_35998 loaded\n",
      "shard_15564 loaded\n",
      "shard_1818 loaded\n",
      "shard_13203 loaded\n",
      "shard_40948 loaded\n",
      "shard_20065 loaded\n",
      "shard_33420 loaded\n",
      "shard_20459 loaded\n",
      "shard_39659 loaded\n",
      "shard_10577 loaded\n",
      "shard_20931 loaded\n",
      "shard_2906 loaded\n",
      "shard_3402 loaded\n",
      "shard_15115 loaded\n",
      "shard_1696 loaded\n",
      "shard_37722 loaded\n",
      "shard_13569 loaded\n",
      "shard_8441 loaded\n",
      "shard_39456 loaded\n",
      "shard_45396 loaded\n",
      "shard_11150 loaded\n",
      "shard_34861 loaded\n",
      "shard_36973 loaded\n",
      "shard_33641 loaded\n",
      "shard_24440 loaded\n",
      "shard_49003 loaded\n",
      "shard_14032 loaded\n",
      "shard_46758 loaded\n",
      "shard_6044 loaded\n",
      "shard_1312 loaded\n",
      "shard_34817 loaded\n",
      "shard_29347 loaded\n",
      "shard_41551 loaded\n",
      "shard_26796 loaded\n",
      "shard_47563 loaded\n",
      "shard_16163 loaded\n",
      "shard_49194 loaded\n",
      "shard_10093 loaded\n",
      "shard_15104 loaded\n",
      "shard_45462 loaded\n",
      "shard_27892 loaded\n",
      "shard_38660 loaded\n",
      "shard_12676 loaded\n",
      "shard_9609 loaded\n",
      "shard_34925 loaded\n",
      "shard_9467 loaded\n",
      "shard_33978 loaded\n",
      "shard_7020 loaded\n",
      "shard_28250 loaded\n",
      "shard_8421 loaded\n",
      "shard_45774 loaded\n",
      "shard_27101 loaded\n",
      "shard_48852 loaded\n",
      "shard_45835 loaded\n",
      "shard_38408 loaded\n",
      "shard_11359 loaded\n",
      "shard_5365 loaded\n",
      "shard_21613 loaded\n",
      "shard_25485 loaded\n",
      "shard_43532 loaded\n",
      "shard_30452 loaded\n",
      "shard_29096 loaded\n",
      "shard_24034 loaded\n",
      "shard_20744 loaded\n",
      "shard_11075 loaded\n",
      "shard_2154 loaded\n",
      "shard_45892 loaded\n",
      "shard_26769 loaded\n",
      "shard_4464 loaded\n",
      "shard_29322 loaded\n",
      "shard_12195 loaded\n",
      "shard_29248 loaded\n",
      "shard_18364 loaded\n",
      "shard_42431 loaded\n",
      "shard_45619 loaded\n",
      "shard_48628 loaded\n",
      "shard_33583 loaded\n",
      "shard_46890 loaded\n",
      "shard_40666 loaded\n",
      "shard_8505 loaded\n",
      "shard_49380 loaded\n",
      "shard_4642 loaded\n",
      "shard_21070 loaded\n",
      "shard_1610 loaded\n",
      "shard_1157 loaded\n",
      "shard_45607 loaded\n",
      "shard_29527 loaded\n",
      "shard_14866 loaded\n",
      "shard_26609 loaded\n",
      "shard_30182 loaded\n",
      "shard_33873 loaded\n",
      "shard_8844 loaded\n",
      "shard_288 loaded\n",
      "shard_6514 loaded\n",
      "shard_27995 loaded\n",
      "shard_18296 loaded\n",
      "shard_13098 loaded\n",
      "shard_30300 loaded\n",
      "shard_8568 loaded\n",
      "shard_41056 loaded\n",
      "shard_2629 loaded\n",
      "shard_19864 loaded\n",
      "shard_15009 loaded\n",
      "shard_40772 loaded\n",
      "shard_47513 loaded\n",
      "shard_35007 loaded\n",
      "shard_657 loaded\n",
      "shard_34479 loaded\n",
      "shard_9976 loaded\n",
      "shard_41917 loaded\n",
      "shard_31730 loaded\n",
      "shard_21059 loaded\n",
      "shard_17417 loaded\n",
      "shard_26632 loaded\n",
      "shard_28146 loaded\n",
      "shard_893 loaded\n",
      "shard_12213 loaded\n",
      "shard_21307 loaded\n",
      "shard_9061 loaded\n",
      "shard_41271 loaded\n",
      "shard_11776 loaded\n",
      "shard_31985 loaded\n",
      "shard_45056 loaded\n",
      "shard_24721 loaded\n",
      "shard_6141 loaded\n",
      "shard_26695 loaded\n",
      "shard_25535 loaded\n",
      "shard_11322 loaded\n",
      "shard_11540 loaded\n",
      "shard_27396 loaded\n",
      "shard_33634 loaded\n",
      "shard_18660 loaded\n",
      "shard_28897 loaded\n",
      "shard_14823 loaded\n",
      "shard_41762 loaded\n",
      "shard_36460 loaded\n",
      "shard_18269 loaded\n",
      "shard_12075 loaded\n",
      "shard_19879 loaded\n",
      "shard_36128 loaded\n",
      "shard_6392 loaded\n",
      "shard_7791 loaded\n",
      "shard_47802 loaded\n",
      "shard_18459 loaded\n",
      "shard_48077 loaded\n",
      "shard_16326 loaded\n",
      "shard_22863 loaded\n",
      "shard_31782 loaded\n",
      "shard_11813 loaded\n",
      "shard_6770 loaded\n",
      "shard_44303 loaded\n",
      "shard_31021 loaded\n",
      "shard_32405 loaded\n",
      "shard_18687 loaded\n",
      "shard_9955 loaded\n",
      "shard_20014 loaded\n",
      "shard_44663 loaded\n",
      "shard_33351 loaded\n",
      "shard_12340 loaded\n",
      "shard_28118 loaded\n",
      "shard_19881 loaded\n",
      "shard_26024 loaded\n",
      "shard_40986 loaded\n",
      "shard_43968 loaded\n",
      "shard_38363 loaded\n",
      "shard_30354 loaded\n",
      "shard_44899 loaded\n",
      "shard_16220 loaded\n",
      "shard_5704 loaded\n",
      "shard_45343 loaded\n",
      "shard_25143 loaded\n",
      "shard_31997 loaded\n",
      "shard_34449 loaded\n",
      "shard_10526 loaded\n",
      "shard_49166 loaded\n",
      "shard_47777 loaded\n",
      "shard_9313 loaded\n",
      "shard_4706 loaded\n",
      "shard_7480 loaded\n",
      "shard_7663 loaded\n",
      "shard_33503 loaded\n",
      "shard_37594 loaded\n",
      "shard_32549 loaded\n",
      "shard_45699 loaded\n",
      "shard_48935 loaded\n",
      "shard_33653 loaded\n",
      "shard_12579 loaded\n",
      "shard_21382 loaded\n",
      "shard_8697 loaded\n",
      "shard_5593 loaded\n",
      "shard_17630 loaded\n",
      "shard_21773 loaded\n",
      "shard_40254 loaded\n",
      "shard_20535 loaded\n",
      "shard_22595 loaded\n",
      "shard_22656 loaded\n",
      "shard_45871 loaded\n",
      "shard_31712 loaded\n",
      "shard_28682 loaded\n",
      "shard_0 loaded\n",
      "shard_30780 loaded\n",
      "shard_16216 loaded\n",
      "shard_36059 loaded\n",
      "shard_20280 loaded\n",
      "shard_37666 loaded\n",
      "shard_5557 loaded\n",
      "shard_577 loaded\n",
      "shard_31198 loaded\n",
      "shard_7574 loaded\n",
      "shard_30069 loaded\n",
      "shard_20356 loaded\n",
      "shard_15112 loaded\n",
      "shard_49892 loaded\n",
      "shard_46503 loaded\n",
      "shard_742 loaded\n",
      "shard_25623 loaded\n",
      "shard_41057 loaded\n",
      "shard_12909 loaded\n",
      "shard_2111 loaded\n",
      "shard_3721 loaded\n",
      "shard_19110 loaded\n",
      "shard_41311 loaded\n",
      "shard_5881 loaded\n",
      "shard_43062 loaded\n",
      "shard_27023 loaded\n",
      "shard_30160 loaded\n",
      "shard_46177 loaded\n",
      "shard_21183 loaded\n",
      "shard_37469 loaded\n",
      "shard_23400 loaded\n",
      "shard_39840 loaded\n",
      "shard_39034 loaded\n",
      "shard_28572 loaded\n",
      "shard_41837 loaded\n",
      "shard_11609 loaded\n",
      "shard_37279 loaded\n",
      "shard_23261 loaded\n",
      "shard_4483 loaded\n",
      "shard_4475 loaded\n",
      "shard_539 loaded\n",
      "shard_21100 loaded\n",
      "shard_24374 loaded\n",
      "shard_49720 loaded\n",
      "shard_31434 loaded\n",
      "shard_36495 loaded\n",
      "shard_4171 loaded\n",
      "shard_32409 loaded\n",
      "shard_22891 loaded\n",
      "shard_44366 loaded\n",
      "shard_11952 loaded\n",
      "shard_11524 loaded\n",
      "shard_49394 loaded\n",
      "shard_29567 loaded\n",
      "shard_14360 loaded\n",
      "shard_19064 loaded\n",
      "shard_46596 loaded\n",
      "shard_32696 loaded\n",
      "shard_44167 loaded\n",
      "shard_28573 loaded\n",
      "shard_44388 loaded\n",
      "shard_35723 loaded\n",
      "shard_48212 loaded\n",
      "shard_616 loaded\n",
      "shard_25571 loaded\n",
      "shard_26257 loaded\n",
      "shard_11629 loaded\n",
      "shard_36242 loaded\n",
      "shard_42316 loaded\n",
      "shard_1660 loaded\n",
      "shard_43646 loaded\n",
      "shard_47632 loaded\n",
      "shard_47475 loaded\n",
      "shard_5180 loaded\n",
      "shard_8574 loaded\n",
      "shard_8530 loaded\n",
      "shard_34714 loaded\n",
      "shard_13278 loaded\n",
      "shard_47186 loaded\n",
      "shard_36921 loaded\n",
      "shard_24589 loaded\n",
      "shard_9329 loaded\n",
      "shard_31995 loaded\n",
      "shard_57 loaded\n",
      "shard_29253 loaded\n",
      "shard_17815 loaded\n",
      "shard_6376 loaded\n",
      "shard_24719 loaded\n",
      "shard_21314 loaded\n",
      "shard_23084 loaded\n",
      "shard_8299 loaded\n",
      "shard_32942 loaded\n",
      "shard_29025 loaded\n",
      "shard_35966 loaded\n",
      "shard_31726 loaded\n",
      "shard_14678 loaded\n",
      "shard_11373 loaded\n",
      "shard_13545 loaded\n",
      "shard_45853 loaded\n",
      "shard_40323 loaded\n",
      "shard_24541 loaded\n",
      "shard_38922 loaded\n",
      "shard_23275 loaded\n",
      "shard_22734 loaded\n",
      "shard_24081 loaded\n",
      "shard_5711 loaded\n",
      "shard_42983 loaded\n",
      "shard_15568 loaded\n",
      "shard_9144 loaded\n",
      "shard_39148 loaded\n",
      "shard_6111 loaded\n",
      "shard_14175 loaded\n",
      "shard_41543 loaded\n",
      "shard_3430 loaded\n",
      "shard_49880 loaded\n",
      "shard_7131 loaded\n",
      "shard_25835 loaded\n",
      "shard_46507 loaded\n",
      "shard_32954 loaded\n",
      "shard_47415 loaded\n",
      "shard_19560 loaded\n",
      "shard_5354 loaded\n",
      "shard_37445 loaded\n",
      "shard_13909 loaded\n",
      "shard_27425 loaded\n",
      "shard_43837 loaded\n",
      "shard_48287 loaded\n",
      "shard_45803 loaded\n",
      "shard_49803 loaded\n",
      "shard_47844 loaded\n",
      "shard_13521 loaded\n",
      "shard_21227 loaded\n",
      "shard_49046 loaded\n",
      "shard_38250 loaded\n",
      "shard_32379 loaded\n",
      "shard_38385 loaded\n",
      "shard_18347 loaded\n",
      "shard_12119 loaded\n",
      "shard_48380 loaded\n",
      "shard_27591 loaded\n",
      "shard_29991 loaded\n",
      "shard_44385 loaded\n",
      "shard_17021 loaded\n",
      "shard_11061 loaded\n",
      "shard_43207 loaded\n",
      "shard_19500 loaded\n",
      "shard_27253 loaded\n",
      "shard_42803 loaded\n",
      "shard_43978 loaded\n",
      "shard_19952 loaded\n",
      "shard_38941 loaded\n",
      "shard_41952 loaded\n",
      "shard_39481 loaded\n",
      "shard_29446 loaded\n",
      "shard_31767 loaded\n",
      "shard_38018 loaded\n",
      "shard_17633 loaded\n",
      "shard_32677 loaded\n",
      "shard_18907 loaded\n",
      "shard_42403 loaded\n",
      "shard_44414 loaded\n",
      "shard_47559 loaded\n",
      "shard_42054 loaded\n",
      "shard_19872 loaded\n",
      "shard_8105 loaded\n",
      "shard_6722 loaded\n",
      "shard_10375 loaded\n",
      "shard_36182 loaded\n",
      "shard_19905 loaded\n",
      "shard_43626 loaded\n",
      "shard_32234 loaded\n",
      "shard_41659 loaded\n",
      "shard_13609 loaded\n",
      "shard_24098 loaded\n",
      "shard_22672 loaded\n",
      "shard_3266 loaded\n",
      "shard_3428 loaded\n",
      "shard_49122 loaded\n",
      "shard_12942 loaded\n",
      "shard_573 loaded\n",
      "shard_13850 loaded\n",
      "shard_28038 loaded\n",
      "shard_7460 loaded\n",
      "shard_5919 loaded\n",
      "shard_11377 loaded\n",
      "shard_45274 loaded\n",
      "shard_25498 loaded\n",
      "shard_23758 loaded\n",
      "shard_43392 loaded\n",
      "shard_47305 loaded\n",
      "shard_5224 loaded\n",
      "shard_24073 loaded\n",
      "shard_33667 loaded\n",
      "shard_213 loaded\n",
      "shard_6667 loaded\n",
      "shard_20264 loaded\n",
      "shard_31912 loaded\n",
      "shard_1247 loaded\n",
      "shard_44387 loaded\n",
      "shard_39019 loaded\n",
      "shard_25041 loaded\n",
      "shard_24325 loaded\n",
      "shard_16713 loaded\n",
      "shard_47144 loaded\n",
      "shard_8401 loaded\n",
      "shard_28003 loaded\n",
      "shard_39546 loaded\n",
      "shard_13029 loaded\n",
      "shard_20695 loaded\n",
      "shard_16458 loaded\n",
      "shard_30879 loaded\n",
      "shard_18049 loaded\n",
      "shard_37570 loaded\n",
      "shard_33120 loaded\n",
      "shard_37111 loaded\n",
      "shard_11305 loaded\n",
      "shard_25486 loaded\n",
      "shard_27516 loaded\n",
      "shard_11271 loaded\n",
      "shard_49668 loaded\n",
      "shard_13094 loaded\n",
      "shard_29261 loaded\n",
      "shard_21410 loaded\n",
      "shard_9782 loaded\n",
      "shard_16118 loaded\n",
      "shard_48679 loaded\n",
      "shard_40525 loaded\n",
      "shard_13675 loaded\n",
      "shard_9391 loaded\n",
      "shard_37051 loaded\n",
      "shard_29911 loaded\n",
      "shard_7790 loaded\n",
      "shard_6453 loaded\n",
      "shard_5928 loaded\n",
      "shard_14666 loaded\n",
      "shard_13076 loaded\n",
      "shard_998 loaded\n",
      "shard_47457 loaded\n",
      "shard_36393 loaded\n",
      "shard_48899 loaded\n",
      "shard_30392 loaded\n",
      "shard_6380 loaded\n",
      "shard_30140 loaded\n",
      "shard_321 loaded\n",
      "shard_33924 loaded\n",
      "shard_8061 loaded\n",
      "shard_16319 loaded\n",
      "shard_22010 loaded\n",
      "shard_14368 loaded\n",
      "shard_6738 loaded\n",
      "shard_9 loaded\n",
      "shard_34041 loaded\n",
      "shard_25438 loaded\n",
      "shard_25509 loaded\n",
      "shard_20517 loaded\n",
      "shard_29363 loaded\n",
      "shard_7626 loaded\n",
      "shard_4216 loaded\n",
      "shard_36700 loaded\n",
      "shard_44653 loaded\n",
      "shard_46676 loaded\n",
      "shard_41352 loaded\n",
      "shard_48399 loaded\n",
      "shard_1050 loaded\n",
      "shard_30833 loaded\n",
      "shard_4583 loaded\n",
      "shard_17893 loaded\n",
      "shard_20830 loaded\n",
      "shard_14420 loaded\n",
      "shard_37905 loaded\n",
      "shard_19969 loaded\n",
      "shard_7912 loaded\n",
      "shard_4040 loaded\n",
      "shard_18857 loaded\n",
      "shard_31711 loaded\n",
      "shard_9350 loaded\n",
      "shard_42056 loaded\n",
      "shard_21023 loaded\n",
      "shard_881 loaded\n",
      "shard_22455 loaded\n",
      "shard_38396 loaded\n",
      "shard_34670 loaded\n",
      "shard_24648 loaded\n",
      "shard_5141 loaded\n",
      "shard_43721 loaded\n",
      "shard_23418 loaded\n",
      "shard_30441 loaded\n",
      "shard_27608 loaded\n",
      "shard_15927 loaded\n",
      "shard_25620 loaded\n",
      "shard_11687 loaded\n",
      "shard_40548 loaded\n",
      "shard_34968 loaded\n",
      "shard_49692 loaded\n",
      "shard_6715 loaded\n",
      "shard_1003 loaded\n",
      "shard_19825 loaded\n",
      "shard_4841 loaded\n",
      "shard_33487 loaded\n",
      "shard_35457 loaded\n",
      "shard_8024 loaded\n",
      "shard_39461 loaded\n",
      "shard_21223 loaded\n",
      "shard_30991 loaded\n",
      "shard_9325 loaded\n",
      "shard_15092 loaded\n",
      "shard_30232 loaded\n",
      "shard_16641 loaded\n",
      "shard_43116 loaded\n",
      "shard_36221 loaded\n",
      "shard_4253 loaded\n",
      "shard_38053 loaded\n",
      "shard_44356 loaded\n",
      "shard_2552 loaded\n",
      "shard_26759 loaded\n",
      "shard_19280 loaded\n",
      "shard_48963 loaded\n",
      "shard_2553 loaded\n",
      "shard_27844 loaded\n",
      "shard_17330 loaded\n",
      "shard_10940 loaded\n",
      "shard_18457 loaded\n",
      "shard_36879 loaded\n",
      "shard_24004 loaded\n",
      "shard_7249 loaded\n",
      "shard_15234 loaded\n",
      "shard_3951 loaded\n",
      "shard_43009 loaded\n",
      "shard_43684 loaded\n",
      "shard_23925 loaded\n",
      "shard_10966 loaded\n",
      "shard_21444 loaded\n",
      "shard_46306 loaded\n",
      "shard_28661 loaded\n",
      "shard_11102 loaded\n",
      "shard_11925 loaded\n",
      "shard_36061 loaded\n",
      "shard_17869 loaded\n",
      "shard_28186 loaded\n",
      "shard_3209 loaded\n",
      "shard_24674 loaded\n",
      "shard_28982 loaded\n",
      "shard_17385 loaded\n",
      "shard_38539 loaded\n",
      "shard_47137 loaded\n",
      "shard_48250 loaded\n",
      "shard_26102 loaded\n",
      "shard_41085 loaded\n",
      "shard_43242 loaded\n",
      "shard_6039 loaded\n",
      "shard_22413 loaded\n",
      "shard_2307 loaded\n",
      "shard_20272 loaded\n",
      "shard_23161 loaded\n",
      "shard_117 loaded\n",
      "shard_30529 loaded\n",
      "shard_36915 loaded\n",
      "shard_23086 loaded\n",
      "shard_12029 loaded\n",
      "shard_4163 loaded\n",
      "shard_38819 loaded\n",
      "shard_114 loaded\n",
      "shard_45545 loaded\n",
      "shard_20818 loaded\n",
      "shard_14497 loaded\n",
      "shard_21127 loaded\n",
      "shard_32817 loaded\n",
      "shard_38389 loaded\n",
      "shard_3862 loaded\n",
      "shard_4688 loaded\n",
      "shard_43071 loaded\n",
      "shard_38703 loaded\n",
      "shard_17268 loaded\n",
      "shard_33036 loaded\n",
      "shard_13090 loaded\n",
      "shard_21988 loaded\n",
      "shard_16533 loaded\n",
      "shard_46314 loaded\n",
      "shard_49770 loaded\n",
      "shard_11112 loaded\n",
      "shard_11469 loaded\n",
      "shard_22332 loaded\n",
      "shard_11558 loaded\n",
      "shard_1809 loaded\n",
      "shard_21832 loaded\n",
      "shard_35916 loaded\n",
      "shard_37565 loaded\n",
      "shard_6517 loaded\n",
      "shard_49572 loaded\n",
      "shard_12265 loaded\n",
      "shard_18681 loaded\n",
      "shard_8841 loaded\n",
      "shard_44102 loaded\n",
      "shard_3677 loaded\n",
      "shard_28735 loaded\n",
      "shard_24409 loaded\n",
      "shard_1819 loaded\n",
      "shard_46713 loaded\n",
      "shard_41858 loaded\n",
      "shard_2750 loaded\n",
      "shard_17161 loaded\n",
      "shard_19535 loaded\n",
      "shard_1836 loaded\n",
      "shard_3263 loaded\n",
      "shard_17952 loaded\n",
      "shard_10088 loaded\n",
      "shard_18684 loaded\n",
      "shard_13330 loaded\n",
      "shard_39679 loaded\n",
      "shard_33710 loaded\n",
      "shard_28546 loaded\n",
      "shard_48587 loaded\n",
      "shard_40521 loaded\n",
      "shard_11371 loaded\n",
      "shard_29635 loaded\n",
      "shard_23823 loaded\n",
      "shard_14772 loaded\n",
      "shard_25303 loaded\n",
      "shard_35505 loaded\n",
      "shard_42718 loaded\n",
      "shard_6862 loaded\n",
      "shard_47476 loaded\n",
      "shard_1575 loaded\n",
      "shard_44168 loaded\n",
      "shard_49015 loaded\n",
      "shard_11166 loaded\n",
      "shard_21009 loaded\n",
      "shard_17202 loaded\n",
      "shard_42203 loaded\n",
      "shard_3639 loaded\n",
      "shard_6754 loaded\n",
      "shard_21737 loaded\n",
      "shard_32598 loaded\n",
      "shard_44711 loaded\n",
      "shard_39241 loaded\n",
      "shard_47238 loaded\n",
      "shard_32596 loaded\n",
      "shard_36939 loaded\n",
      "shard_18679 loaded\n",
      "shard_37630 loaded\n",
      "shard_19398 loaded\n",
      "shard_32389 loaded\n",
      "shard_15932 loaded\n",
      "shard_33910 loaded\n",
      "shard_29558 loaded\n",
      "shard_1246 loaded\n",
      "shard_39530 loaded\n",
      "shard_16320 loaded\n",
      "shard_44471 loaded\n",
      "shard_25740 loaded\n",
      "shard_3062 loaded\n",
      "shard_1726 loaded\n",
      "shard_26294 loaded\n",
      "shard_28560 loaded\n",
      "shard_14715 loaded\n",
      "shard_5360 loaded\n",
      "shard_42207 loaded\n",
      "shard_39741 loaded\n",
      "shard_28969 loaded\n",
      "shard_38450 loaded\n",
      "shard_34446 loaded\n",
      "shard_35088 loaded\n",
      "shard_7418 loaded\n",
      "shard_21849 loaded\n",
      "shard_15748 loaded\n",
      "shard_24414 loaded\n",
      "shard_11511 loaded\n",
      "shard_44605 loaded\n",
      "shard_7949 loaded\n",
      "shard_22269 loaded\n",
      "shard_44776 loaded\n",
      "shard_46329 loaded\n",
      "shard_47524 loaded\n",
      "shard_49202 loaded\n",
      "shard_24582 loaded\n",
      "shard_12540 loaded\n",
      "shard_4028 loaded\n",
      "shard_39589 loaded\n",
      "shard_4653 loaded\n",
      "shard_34652 loaded\n",
      "shard_44882 loaded\n",
      "shard_27301 loaded\n",
      "shard_11441 loaded\n",
      "shard_47118 loaded\n",
      "shard_33404 loaded\n",
      "shard_44555 loaded\n",
      "shard_13133 loaded\n",
      "shard_5264 loaded\n",
      "shard_31933 loaded\n",
      "shard_45524 loaded\n",
      "shard_22336 loaded\n",
      "shard_9122 loaded\n",
      "shard_10077 loaded\n",
      "shard_30214 loaded\n",
      "shard_24250 loaded\n",
      "shard_18573 loaded\n",
      "shard_12437 loaded\n",
      "shard_6901 loaded\n",
      "shard_15768 loaded\n",
      "shard_13654 loaded\n",
      "shard_3657 loaded\n",
      "shard_7971 loaded\n",
      "shard_27765 loaded\n",
      "shard_7692 loaded\n",
      "shard_23103 loaded\n",
      "shard_24042 loaded\n",
      "shard_61 loaded\n",
      "shard_17226 loaded\n",
      "shard_45430 loaded\n",
      "shard_7814 loaded\n",
      "shard_13537 loaded\n",
      "shard_24639 loaded\n",
      "shard_4744 loaded\n",
      "shard_27415 loaded\n",
      "shard_46868 loaded\n",
      "shard_11708 loaded\n",
      "shard_9413 loaded\n",
      "shard_43682 loaded\n",
      "shard_49625 loaded\n",
      "shard_31705 loaded\n",
      "shard_48150 loaded\n",
      "shard_44059 loaded\n",
      "shard_47318 loaded\n",
      "shard_20877 loaded\n",
      "shard_16694 loaded\n",
      "shard_8845 loaded\n",
      "shard_35306 loaded\n",
      "shard_8301 loaded\n",
      "shard_46494 loaded\n",
      "shard_28998 loaded\n",
      "shard_30553 loaded\n",
      "shard_29243 loaded\n",
      "shard_32527 loaded\n",
      "shard_1468 loaded\n",
      "shard_14912 loaded\n",
      "shard_15201 loaded\n",
      "shard_31645 loaded\n",
      "shard_31281 loaded\n",
      "shard_1067 loaded\n",
      "shard_11814 loaded\n",
      "shard_16368 loaded\n",
      "shard_26378 loaded\n",
      "shard_35846 loaded\n",
      "shard_17271 loaded\n",
      "shard_6932 loaded\n",
      "shard_12036 loaded\n",
      "shard_45342 loaded\n",
      "shard_45977 loaded\n",
      "shard_17932 loaded\n",
      "shard_35869 loaded\n",
      "shard_1617 loaded\n",
      "shard_17472 loaded\n",
      "shard_20875 loaded\n",
      "shard_23650 loaded\n",
      "shard_9978 loaded\n",
      "shard_15594 loaded\n",
      "shard_5703 loaded\n",
      "shard_13103 loaded\n",
      "shard_31384 loaded\n",
      "shard_16943 loaded\n",
      "shard_39825 loaded\n",
      "shard_13040 loaded\n",
      "shard_8913 loaded\n",
      "shard_32879 loaded\n",
      "shard_15845 loaded\n",
      "shard_49615 loaded\n",
      "shard_29087 loaded\n",
      "shard_4301 loaded\n",
      "shard_4139 loaded\n",
      "shard_36407 loaded\n",
      "shard_2811 loaded\n",
      "shard_8272 loaded\n",
      "shard_26840 loaded\n",
      "shard_33378 loaded\n",
      "shard_23784 loaded\n",
      "shard_2955 loaded\n",
      "shard_7589 loaded\n",
      "shard_5714 loaded\n",
      "shard_30235 loaded\n",
      "shard_36311 loaded\n",
      "shard_4185 loaded\n",
      "shard_26805 loaded\n",
      "shard_35160 loaded\n",
      "shard_26890 loaded\n",
      "shard_29454 loaded\n",
      "shard_33928 loaded\n",
      "shard_27960 loaded\n",
      "shard_8387 loaded\n",
      "shard_8155 loaded\n",
      "shard_1589 loaded\n",
      "shard_29784 loaded\n",
      "shard_5826 loaded\n",
      "shard_23321 loaded\n",
      "shard_20735 loaded\n",
      "shard_47009 loaded\n",
      "shard_37667 loaded\n",
      "shard_7534 loaded\n",
      "shard_12309 loaded\n",
      "shard_13235 loaded\n",
      "shard_18846 loaded\n",
      "shard_36031 loaded\n",
      "shard_33697 loaded\n",
      "shard_49381 loaded\n",
      "shard_35640 loaded\n",
      "shard_35475 loaded\n",
      "shard_34165 loaded\n",
      "shard_41042 loaded\n",
      "shard_10656 loaded\n",
      "shard_25646 loaded\n",
      "shard_21558 loaded\n",
      "shard_19723 loaded\n",
      "shard_39077 loaded\n",
      "shard_26248 loaded\n",
      "shard_32666 loaded\n",
      "shard_46760 loaded\n",
      "shard_21309 loaded\n",
      "shard_49071 loaded\n",
      "shard_14251 loaded\n",
      "shard_21116 loaded\n",
      "shard_21323 loaded\n",
      "shard_30952 loaded\n",
      "shard_22571 loaded\n",
      "shard_47890 loaded\n",
      "shard_43957 loaded\n",
      "shard_35402 loaded\n",
      "shard_37380 loaded\n",
      "shard_49832 loaded\n",
      "shard_5589 loaded\n",
      "shard_35360 loaded\n",
      "shard_32238 loaded\n",
      "shard_20986 loaded\n",
      "shard_14603 loaded\n",
      "shard_40233 loaded\n",
      "shard_19117 loaded\n",
      "shard_1436 loaded\n",
      "shard_42613 loaded\n",
      "shard_17901 loaded\n",
      "shard_21082 loaded\n",
      "shard_3807 loaded\n",
      "shard_13118 loaded\n",
      "shard_46619 loaded\n",
      "shard_41396 loaded\n",
      "shard_38910 loaded\n",
      "shard_4949 loaded\n",
      "shard_6099 loaded\n",
      "shard_32786 loaded\n",
      "shard_30049 loaded\n",
      "shard_10009 loaded\n",
      "shard_19467 loaded\n",
      "shard_2362 loaded\n",
      "shard_34715 loaded\n",
      "shard_19003 loaded\n",
      "shard_22786 loaded\n",
      "shard_14778 loaded\n",
      "shard_13605 loaded\n",
      "shard_37777 loaded\n",
      "shard_40287 loaded\n",
      "shard_30912 loaded\n",
      "shard_33415 loaded\n",
      "shard_29681 loaded\n",
      "shard_34542 loaded\n",
      "shard_38529 loaded\n",
      "shard_11808 loaded\n",
      "shard_10439 loaded\n",
      "shard_43105 loaded\n",
      "shard_19901 loaded\n",
      "shard_37230 loaded\n",
      "shard_31923 loaded\n",
      "shard_27810 loaded\n",
      "shard_46370 loaded\n",
      "shard_44021 loaded\n",
      "shard_38190 loaded\n",
      "shard_14528 loaded\n",
      "shard_36665 loaded\n",
      "shard_40348 loaded\n",
      "shard_3886 loaded\n",
      "shard_8601 loaded\n",
      "shard_36573 loaded\n",
      "shard_22210 loaded\n",
      "shard_43253 loaded\n",
      "shard_34480 loaded\n",
      "shard_6236 loaded\n",
      "shard_24708 loaded\n",
      "shard_414 loaded\n",
      "shard_29204 loaded\n",
      "shard_28743 loaded\n",
      "shard_33879 loaded\n",
      "shard_7602 loaded\n",
      "shard_3503 loaded\n",
      "shard_48523 loaded\n",
      "shard_26843 loaded\n",
      "shard_22999 loaded\n",
      "shard_25148 loaded\n",
      "shard_48275 loaded\n",
      "shard_1242 loaded\n",
      "shard_3454 loaded\n",
      "shard_47960 loaded\n",
      "shard_35225 loaded\n",
      "shard_5949 loaded\n",
      "shard_28820 loaded\n",
      "shard_6670 loaded\n",
      "shard_30746 loaded\n",
      "shard_1266 loaded\n",
      "shard_31312 loaded\n",
      "shard_46409 loaded\n",
      "shard_43069 loaded\n",
      "shard_16677 loaded\n",
      "shard_49913 loaded\n",
      "shard_4218 loaded\n",
      "shard_24663 loaded\n",
      "shard_13720 loaded\n",
      "shard_45281 loaded\n",
      "shard_27257 loaded\n",
      "shard_11577 loaded\n",
      "shard_525 loaded\n",
      "shard_8666 loaded\n",
      "shard_11781 loaded\n",
      "shard_34644 loaded\n",
      "shard_42891 loaded\n",
      "shard_23923 loaded\n",
      "shard_35647 loaded\n",
      "shard_13601 loaded\n",
      "shard_28208 loaded\n",
      "shard_42875 loaded\n",
      "shard_6583 loaded\n",
      "shard_46213 loaded\n",
      "shard_4644 loaded\n",
      "shard_31442 loaded\n",
      "shard_24527 loaded\n",
      "shard_6948 loaded\n",
      "shard_10652 loaded\n",
      "shard_5501 loaded\n",
      "shard_48752 loaded\n",
      "shard_44312 loaded\n",
      "shard_5125 loaded\n",
      "shard_23136 loaded\n",
      "shard_12176 loaded\n",
      "shard_13043 loaded\n",
      "shard_21876 loaded\n",
      "shard_6943 loaded\n",
      "shard_8269 loaded\n",
      "shard_44037 loaded\n",
      "shard_18130 loaded\n",
      "shard_15298 loaded\n",
      "shard_17081 loaded\n",
      "shard_46487 loaded\n",
      "shard_38653 loaded\n",
      "shard_292 loaded\n",
      "shard_32638 loaded\n",
      "shard_18510 loaded\n",
      "shard_6785 loaded\n",
      "shard_44959 loaded\n",
      "shard_49008 loaded\n",
      "shard_40210 loaded\n",
      "shard_40478 loaded\n",
      "shard_18599 loaded\n",
      "shard_38462 loaded\n",
      "shard_22976 loaded\n",
      "shard_33997 loaded\n",
      "shard_19951 loaded\n",
      "shard_20296 loaded\n",
      "shard_42949 loaded\n",
      "shard_25078 loaded\n",
      "shard_40409 loaded\n",
      "shard_44412 loaded\n",
      "shard_18033 loaded\n",
      "shard_38066 loaded\n",
      "shard_43934 loaded\n",
      "shard_24278 loaded\n",
      "shard_15227 loaded\n",
      "shard_2956 loaded\n",
      "shard_18761 loaded\n",
      "shard_44161 loaded\n",
      "shard_13710 loaded\n",
      "shard_47328 loaded\n",
      "shard_27198 loaded\n",
      "shard_47833 loaded\n",
      "shard_42411 loaded\n",
      "shard_21225 loaded\n",
      "shard_17751 loaded\n",
      "shard_31368 loaded\n",
      "shard_36906 loaded\n",
      "shard_44305 loaded\n",
      "shard_12026 loaded\n",
      "shard_21477 loaded\n",
      "shard_21258 loaded\n",
      "shard_26505 loaded\n",
      "shard_28937 loaded\n",
      "shard_43268 loaded\n",
      "shard_22356 loaded\n",
      "shard_20197 loaded\n",
      "shard_37941 loaded\n",
      "shard_26872 loaded\n",
      "shard_32957 loaded\n",
      "shard_4021 loaded\n",
      "shard_8306 loaded\n",
      "shard_40501 loaded\n",
      "shard_1175 loaded\n",
      "shard_2414 loaded\n",
      "shard_8922 loaded\n",
      "shard_15920 loaded\n",
      "shard_34788 loaded\n",
      "shard_6630 loaded\n",
      "shard_36193 loaded\n",
      "shard_6213 loaded\n",
      "shard_4613 loaded\n",
      "shard_35508 loaded\n",
      "shard_48558 loaded\n",
      "shard_10174 loaded\n",
      "shard_6711 loaded\n",
      "shard_44313 loaded\n",
      "shard_27550 loaded\n",
      "shard_25348 loaded\n",
      "shard_9023 loaded\n",
      "shard_15868 loaded\n",
      "shard_47156 loaded\n",
      "shard_48741 loaded\n",
      "shard_25815 loaded\n",
      "shard_2885 loaded\n",
      "shard_46907 loaded\n",
      "shard_2583 loaded\n",
      "shard_22068 loaded\n",
      "shard_26996 loaded\n",
      "shard_5486 loaded\n",
      "shard_1047 loaded\n",
      "shard_8893 loaded\n",
      "shard_45678 loaded\n",
      "shard_34775 loaded\n",
      "shard_1620 loaded\n",
      "shard_34258 loaded\n",
      "shard_45213 loaded\n",
      "shard_32793 loaded\n",
      "shard_16158 loaded\n",
      "shard_39592 loaded\n",
      "shard_33466 loaded\n",
      "shard_43799 loaded\n",
      "shard_46112 loaded\n",
      "shard_35720 loaded\n",
      "shard_1106 loaded\n",
      "shard_43756 loaded\n",
      "shard_39328 loaded\n",
      "shard_3147 loaded\n",
      "shard_49945 loaded\n",
      "shard_14089 loaded\n",
      "shard_43244 loaded\n",
      "shard_10505 loaded\n",
      "shard_569 loaded\n",
      "shard_4602 loaded\n",
      "shard_19134 loaded\n",
      "shard_3069 loaded\n",
      "shard_40050 loaded\n",
      "shard_41579 loaded\n",
      "shard_43950 loaded\n",
      "shard_1590 loaded\n",
      "shard_31138 loaded\n",
      "shard_47217 loaded\n",
      "shard_46632 loaded\n",
      "shard_12379 loaded\n",
      "shard_33164 loaded\n",
      "shard_48969 loaded\n",
      "shard_43792 loaded\n",
      "shard_8385 loaded\n",
      "shard_33774 loaded\n",
      "shard_21641 loaded\n",
      "shard_25731 loaded\n",
      "shard_27751 loaded\n",
      "shard_39238 loaded\n",
      "shard_35416 loaded\n",
      "shard_44855 loaded\n",
      "shard_4855 loaded\n",
      "shard_29804 loaded\n",
      "shard_49295 loaded\n",
      "shard_45030 loaded\n",
      "shard_9402 loaded\n",
      "shard_31075 loaded\n",
      "shard_16084 loaded\n",
      "shard_36357 loaded\n",
      "shard_28196 loaded\n",
      "shard_44984 loaded\n",
      "shard_24493 loaded\n",
      "shard_1208 loaded\n",
      "shard_30745 loaded\n",
      "shard_38398 loaded\n",
      "shard_31327 loaded\n",
      "shard_39714 loaded\n",
      "shard_35690 loaded\n",
      "shard_32487 loaded\n",
      "shard_8629 loaded\n",
      "shard_17847 loaded\n",
      "shard_40683 loaded\n",
      "shard_18516 loaded\n",
      "shard_31252 loaded\n",
      "shard_49317 loaded\n",
      "shard_17729 loaded\n",
      "shard_45113 loaded\n",
      "shard_43033 loaded\n",
      "shard_4448 loaded\n",
      "shard_14810 loaded\n",
      "shard_27627 loaded\n",
      "shard_37066 loaded\n",
      "shard_27171 loaded\n",
      "shard_36291 loaded\n",
      "shard_27162 loaded\n",
      "shard_40719 loaded\n",
      "shard_24139 loaded\n",
      "shard_25586 loaded\n",
      "shard_35135 loaded\n",
      "shard_19481 loaded\n",
      "shard_16251 loaded\n",
      "shard_30854 loaded\n",
      "shard_35397 loaded\n",
      "shard_41507 loaded\n",
      "shard_23844 loaded\n",
      "shard_8830 loaded\n",
      "shard_11761 loaded\n",
      "shard_30210 loaded\n",
      "shard_29564 loaded\n",
      "shard_17793 loaded\n",
      "shard_3467 loaded\n",
      "shard_29377 loaded\n",
      "shard_2231 loaded\n",
      "shard_32308 loaded\n",
      "shard_49111 loaded\n",
      "shard_32724 loaded\n",
      "shard_22359 loaded\n",
      "shard_13130 loaded\n",
      "shard_48906 loaded\n",
      "shard_19660 loaded\n",
      "shard_29320 loaded\n",
      "shard_5391 loaded\n",
      "shard_47017 loaded\n",
      "shard_1306 loaded\n",
      "shard_32048 loaded\n",
      "shard_36227 loaded\n",
      "shard_44528 loaded\n",
      "shard_28504 loaded\n",
      "shard_13234 loaded\n",
      "shard_32845 loaded\n",
      "shard_32898 loaded\n",
      "shard_8118 loaded\n",
      "shard_34511 loaded\n",
      "shard_34143 loaded\n",
      "shard_34755 loaded\n",
      "shard_4125 loaded\n",
      "shard_46664 loaded\n",
      "shard_12517 loaded\n",
      "shard_33520 loaded\n",
      "shard_47905 loaded\n",
      "shard_49479 loaded\n",
      "shard_13217 loaded\n",
      "shard_24560 loaded\n",
      "shard_10140 loaded\n",
      "shard_26747 loaded\n",
      "shard_34221 loaded\n",
      "shard_48846 loaded\n",
      "shard_43783 loaded\n",
      "shard_32455 loaded\n",
      "shard_44909 loaded\n",
      "shard_46179 loaded\n",
      "shard_12056 loaded\n",
      "shard_37412 loaded\n",
      "shard_5992 loaded\n",
      "shard_1038 loaded\n",
      "shard_10997 loaded\n",
      "shard_4683 loaded\n",
      "shard_49287 loaded\n",
      "shard_25102 loaded\n",
      "shard_11856 loaded\n",
      "shard_16929 loaded\n",
      "shard_22712 loaded\n",
      "shard_9831 loaded\n",
      "shard_10369 loaded\n",
      "shard_38785 loaded\n",
      "shard_8749 loaded\n",
      "shard_2744 loaded\n",
      "shard_22098 loaded\n",
      "shard_44792 loaded\n",
      "shard_44358 loaded\n",
      "shard_22306 loaded\n",
      "shard_47092 loaded\n",
      "shard_35209 loaded\n",
      "shard_47504 loaded\n",
      "shard_9202 loaded\n",
      "shard_3110 loaded\n",
      "shard_35113 loaded\n",
      "shard_6198 loaded\n",
      "shard_6685 loaded\n",
      "shard_25073 loaded\n",
      "shard_27288 loaded\n",
      "shard_23485 loaded\n",
      "shard_49104 loaded\n",
      "shard_19039 loaded\n",
      "shard_45850 loaded\n",
      "shard_34957 loaded\n",
      "shard_26463 loaded\n",
      "shard_21002 loaded\n",
      "shard_39024 loaded\n",
      "shard_12149 loaded\n",
      "shard_39400 loaded\n",
      "shard_41454 loaded\n",
      "shard_43420 loaded\n",
      "shard_25599 loaded\n",
      "shard_11201 loaded\n",
      "shard_3593 loaded\n",
      "shard_25613 loaded\n",
      "shard_7568 loaded\n",
      "shard_36856 loaded\n",
      "shard_46727 loaded\n",
      "shard_30379 loaded\n",
      "shard_11869 loaded\n",
      "shard_17812 loaded\n",
      "shard_12852 loaded\n",
      "shard_17621 loaded\n",
      "shard_14663 loaded\n",
      "shard_29907 loaded\n",
      "shard_49267 loaded\n",
      "shard_31 loaded\n",
      "shard_10898 loaded\n",
      "shard_28825 loaded\n",
      "shard_18636 loaded\n",
      "shard_33874 loaded\n",
      "shard_3524 loaded\n",
      "shard_47243 loaded\n",
      "shard_10933 loaded\n",
      "shard_1400 loaded\n",
      "shard_29859 loaded\n",
      "shard_14790 loaded\n",
      "shard_1167 loaded\n",
      "shard_36733 loaded\n",
      "shard_30848 loaded\n",
      "shard_44686 loaded\n",
      "shard_48895 loaded\n",
      "shard_44525 loaded\n",
      "shard_13064 loaded\n",
      "shard_16288 loaded\n",
      "shard_18264 loaded\n",
      "shard_49042 loaded\n",
      "shard_13918 loaded\n",
      "shard_23555 loaded\n",
      "shard_7145 loaded\n",
      "shard_47404 loaded\n",
      "shard_277 loaded\n",
      "shard_13081 loaded\n",
      "shard_132 loaded\n",
      "shard_17127 loaded\n",
      "shard_24252 loaded\n",
      "shard_29398 loaded\n",
      "shard_39299 loaded\n",
      "shard_37652 loaded\n",
      "shard_21495 loaded\n",
      "shard_9289 loaded\n",
      "shard_16477 loaded\n",
      "shard_8526 loaded\n",
      "shard_14202 loaded\n",
      "shard_14769 loaded\n",
      "shard_37444 loaded\n",
      "shard_2684 loaded\n",
      "shard_41289 loaded\n",
      "shard_36418 loaded\n",
      "shard_49862 loaded\n",
      "shard_20481 loaded\n",
      "shard_18603 loaded\n",
      "shard_20750 loaded\n",
      "shard_41828 loaded\n",
      "shard_15205 loaded\n",
      "shard_714 loaded\n",
      "shard_19173 loaded\n",
      "shard_7172 loaded\n",
      "shard_28061 loaded\n",
      "shard_33624 loaded\n",
      "shard_24104 loaded\n",
      "shard_23665 loaded\n",
      "shard_16996 loaded\n",
      "shard_9956 loaded\n",
      "shard_33807 loaded\n",
      "shard_17878 loaded\n",
      "shard_18971 loaded\n",
      "shard_41859 loaded\n",
      "shard_21386 loaded\n",
      "shard_37537 loaded\n",
      "shard_44904 loaded\n",
      "shard_25349 loaded\n",
      "shard_1712 loaded\n",
      "shard_29216 loaded\n",
      "shard_13612 loaded\n",
      "shard_42467 loaded\n",
      "shard_36103 loaded\n",
      "shard_41304 loaded\n",
      "shard_28376 loaded\n",
      "shard_40952 loaded\n",
      "shard_7254 loaded\n",
      "shard_35223 loaded\n",
      "shard_31091 loaded\n",
      "shard_46919 loaded\n",
      "shard_24963 loaded\n",
      "shard_37642 loaded\n",
      "shard_15091 loaded\n",
      "shard_27440 loaded\n",
      "shard_30267 loaded\n",
      "shard_19940 loaded\n",
      "shard_23627 loaded\n",
      "shard_14383 loaded\n",
      "shard_26574 loaded\n",
      "shard_48180 loaded\n",
      "shard_25130 loaded\n",
      "shard_34872 loaded\n",
      "shard_27120 loaded\n",
      "shard_30388 loaded\n",
      "shard_21492 loaded\n",
      "shard_33557 loaded\n",
      "shard_29156 loaded\n",
      "shard_26892 loaded\n",
      "shard_24150 loaded\n",
      "shard_12825 loaded\n",
      "shard_3821 loaded\n",
      "shard_8391 loaded\n",
      "shard_9048 loaded\n",
      "shard_5946 loaded\n",
      "shard_34278 loaded\n",
      "shard_27704 loaded\n",
      "shard_33010 loaded\n",
      "shard_16508 loaded\n",
      "shard_35642 loaded\n",
      "shard_7926 loaded\n",
      "shard_24455 loaded\n",
      "shard_12707 loaded\n",
      "shard_47991 loaded\n",
      "shard_36090 loaded\n",
      "shard_12976 loaded\n",
      "shard_34911 loaded\n",
      "shard_35530 loaded\n",
      "shard_44041 loaded\n",
      "shard_18174 loaded\n",
      "shard_2054 loaded\n",
      "shard_12546 loaded\n",
      "shard_22832 loaded\n",
      "shard_6368 loaded\n",
      "shard_37480 loaded\n",
      "shard_44767 loaded\n",
      "shard_22719 loaded\n",
      "shard_14585 loaded\n",
      "shard_8312 loaded\n",
      "shard_5031 loaded\n",
      "shard_31747 loaded\n",
      "shard_469 loaded\n",
      "shard_8022 loaded\n",
      "shard_31992 loaded\n",
      "shard_1036 loaded\n",
      "shard_747 loaded\n",
      "shard_29199 loaded\n",
      "shard_36635 loaded\n",
      "shard_28402 loaded\n",
      "shard_43067 loaded\n",
      "shard_19464 loaded\n",
      "shard_48872 loaded\n",
      "shard_20126 loaded\n",
      "shard_4468 loaded\n",
      "shard_21443 loaded\n",
      "shard_23018 loaded\n",
      "shard_6050 loaded\n",
      "shard_47750 loaded\n",
      "shard_71 loaded\n",
      "shard_24792 loaded\n",
      "shard_28968 loaded\n",
      "shard_35363 loaded\n",
      "shard_30156 loaded\n",
      "shard_49864 loaded\n",
      "shard_754 loaded\n",
      "shard_31401 loaded\n",
      "shard_25784 loaded\n",
      "shard_3499 loaded\n",
      "shard_38162 loaded\n",
      "shard_25767 loaded\n",
      "shard_42964 loaded\n",
      "shard_3264 loaded\n",
      "shard_43917 loaded\n",
      "shard_15975 loaded\n",
      "shard_48322 loaded\n",
      "shard_30367 loaded\n",
      "shard_39397 loaded\n",
      "shard_43893 loaded\n",
      "shard_5989 loaded\n",
      "shard_24511 loaded\n",
      "shard_4803 loaded\n",
      "shard_39739 loaded\n",
      "shard_21478 loaded\n",
      "shard_17185 loaded\n",
      "shard_31640 loaded\n",
      "shard_5490 loaded\n",
      "shard_6687 loaded\n",
      "shard_47486 loaded\n",
      "shard_30697 loaded\n",
      "shard_4406 loaded\n",
      "shard_45589 loaded\n",
      "shard_13606 loaded\n",
      "shard_6591 loaded\n",
      "shard_41070 loaded\n",
      "shard_6956 loaded\n",
      "shard_36723 loaded\n",
      "shard_6369 loaded\n",
      "shard_15995 loaded\n",
      "shard_17018 loaded\n",
      "shard_32863 loaded\n",
      "shard_45405 loaded\n",
      "shard_13400 loaded\n",
      "shard_39222 loaded\n",
      "shard_30493 loaded\n",
      "shard_41877 loaded\n",
      "shard_7466 loaded\n",
      "shard_20515 loaded\n",
      "shard_8698 loaded\n",
      "shard_20151 loaded\n",
      "shard_47539 loaded\n",
      "shard_7399 loaded\n",
      "shard_18451 loaded\n",
      "shard_44585 loaded\n",
      "shard_19090 loaded\n",
      "shard_47700 loaded\n",
      "shard_15806 loaded\n",
      "shard_10455 loaded\n",
      "shard_3620 loaded\n",
      "shard_567 loaded\n",
      "shard_42869 loaded\n",
      "shard_38482 loaded\n",
      "shard_39040 loaded\n",
      "shard_9996 loaded\n",
      "shard_42372 loaded\n",
      "shard_6544 loaded\n",
      "shard_41779 loaded\n",
      "shard_35889 loaded\n",
      "shard_20794 loaded\n",
      "shard_19899 loaded\n",
      "shard_38032 loaded\n",
      "shard_39963 loaded\n",
      "shard_2481 loaded\n",
      "shard_21052 loaded\n",
      "shard_41794 loaded\n",
      "shard_35541 loaded\n",
      "shard_30965 loaded\n",
      "shard_5679 loaded\n",
      "shard_7850 loaded\n",
      "shard_32123 loaded\n",
      "shard_46535 loaded\n",
      "shard_49137 loaded\n",
      "shard_32092 loaded\n",
      "shard_9221 loaded\n",
      "shard_46478 loaded\n",
      "shard_21800 loaded\n",
      "shard_49048 loaded\n",
      "shard_48928 loaded\n",
      "shard_20593 loaded\n",
      "shard_44858 loaded\n",
      "shard_17565 loaded\n",
      "shard_10443 loaded\n",
      "shard_21142 loaded\n",
      "shard_28624 loaded\n",
      "shard_30411 loaded\n",
      "shard_15754 loaded\n",
      "shard_9026 loaded\n",
      "shard_20493 loaded\n",
      "shard_42972 loaded\n",
      "shard_37237 loaded\n",
      "shard_28073 loaded\n",
      "shard_16268 loaded\n",
      "shard_6310 loaded\n",
      "shard_35576 loaded\n",
      "shard_49596 loaded\n",
      "shard_41389 loaded\n",
      "shard_40740 loaded\n",
      "shard_33044 loaded\n",
      "shard_19389 loaded\n",
      "shard_29565 loaded\n",
      "shard_42780 loaded\n",
      "shard_14824 loaded\n",
      "shard_34139 loaded\n",
      "shard_28928 loaded\n",
      "shard_3863 loaded\n",
      "shard_32729 loaded\n",
      "shard_30925 loaded\n",
      "shard_36721 loaded\n",
      "shard_41183 loaded\n",
      "shard_1248 loaded\n",
      "shard_33462 loaded\n",
      "shard_14629 loaded\n",
      "shard_29388 loaded\n",
      "shard_47956 loaded\n",
      "shard_10571 loaded\n",
      "shard_3123 loaded\n",
      "shard_4959 loaded\n",
      "shard_8764 loaded\n",
      "shard_35382 loaded\n",
      "shard_31892 loaded\n",
      "shard_20100 loaded\n",
      "shard_43173 loaded\n",
      "shard_25232 loaded\n",
      "shard_26535 loaded\n",
      "shard_12690 loaded\n",
      "shard_24918 loaded\n",
      "shard_16827 loaded\n",
      "shard_32184 loaded\n",
      "shard_49356 loaded\n",
      "shard_41383 loaded\n",
      "shard_44577 loaded\n",
      "shard_9858 loaded\n",
      "shard_26376 loaded\n",
      "shard_21008 loaded\n",
      "shard_41232 loaded\n",
      "shard_31274 loaded\n",
      "shard_7185 loaded\n",
      "shard_39292 loaded\n",
      "shard_4212 loaded\n",
      "shard_37780 loaded\n",
      "shard_27580 loaded\n",
      "shard_38384 loaded\n",
      "shard_13127 loaded\n",
      "shard_44117 loaded\n",
      "shard_43481 loaded\n",
      "shard_16063 loaded\n",
      "shard_11598 loaded\n",
      "shard_33630 loaded\n",
      "shard_11415 loaded\n",
      "shard_33296 loaded\n",
      "shard_3093 loaded\n",
      "shard_32917 loaded\n",
      "shard_24111 loaded\n",
      "shard_43846 loaded\n",
      "shard_33467 loaded\n",
      "shard_32199 loaded\n",
      "shard_20692 loaded\n",
      "shard_19848 loaded\n",
      "shard_46476 loaded\n",
      "shard_34262 loaded\n",
      "shard_20155 loaded\n",
      "shard_7620 loaded\n",
      "shard_40225 loaded\n",
      "shard_32256 loaded\n",
      "shard_13237 loaded\n",
      "shard_32058 loaded\n",
      "shard_28320 loaded\n",
      "shard_35252 loaded\n",
      "shard_9660 loaded\n",
      "shard_32212 loaded\n",
      "shard_17296 loaded\n",
      "shard_31655 loaded\n",
      "shard_24712 loaded\n",
      "shard_4955 loaded\n",
      "shard_8325 loaded\n",
      "shard_2639 loaded\n",
      "shard_42812 loaded\n",
      "shard_42544 loaded\n",
      "shard_24348 loaded\n",
      "shard_42642 loaded\n",
      "shard_38491 loaded\n",
      "shard_20914 loaded\n",
      "shard_26146 loaded\n",
      "shard_29657 loaded\n",
      "shard_20429 loaded\n",
      "shard_32728 loaded\n",
      "shard_20527 loaded\n",
      "shard_49920 loaded\n",
      "shard_42337 loaded\n",
      "shard_35610 loaded\n",
      "shard_37467 loaded\n",
      "shard_33098 loaded\n",
      "shard_47012 loaded\n",
      "shard_29755 loaded\n",
      "shard_15771 loaded\n",
      "shard_22334 loaded\n",
      "shard_2442 loaded\n",
      "shard_5066 loaded\n",
      "shard_23387 loaded\n",
      "shard_18678 loaded\n",
      "shard_29051 loaded\n",
      "shard_34403 loaded\n",
      "shard_12548 loaded\n",
      "shard_2819 loaded\n",
      "shard_44187 loaded\n",
      "shard_28999 loaded\n",
      "shard_18366 loaded\n",
      "shard_17365 loaded\n",
      "shard_3165 loaded\n",
      "shard_16702 loaded\n",
      "shard_14496 loaded\n",
      "shard_41720 loaded\n",
      "shard_40768 loaded\n",
      "shard_31505 loaded\n",
      "shard_21163 loaded\n",
      "shard_25007 loaded\n",
      "shard_13026 loaded\n",
      "shard_20232 loaded\n",
      "shard_10712 loaded\n",
      "shard_20401 loaded\n",
      "shard_25412 loaded\n",
      "shard_46780 loaded\n",
      "shard_20981 loaded\n",
      "shard_44971 loaded\n",
      "shard_46129 loaded\n",
      "shard_22144 loaded\n",
      "shard_15051 loaded\n",
      "shard_27700 loaded\n",
      "shard_48981 loaded\n",
      "shard_3097 loaded\n",
      "shard_5878 loaded\n",
      "shard_9495 loaded\n",
      "shard_15304 loaded\n",
      "shard_17108 loaded\n",
      "shard_29569 loaded\n",
      "shard_9764 loaded\n",
      "shard_4696 loaded\n",
      "shard_12766 loaded\n",
      "shard_27912 loaded\n",
      "shard_6727 loaded\n",
      "shard_47560 loaded\n",
      "shard_34088 loaded\n",
      "shard_42008 loaded\n",
      "shard_12642 loaded\n",
      "shard_31576 loaded\n",
      "shard_42734 loaded\n",
      "shard_1943 loaded\n",
      "shard_13658 loaded\n",
      "shard_45458 loaded\n",
      "shard_12568 loaded\n",
      "shard_23913 loaded\n",
      "shard_35954 loaded\n",
      "shard_28836 loaded\n",
      "shard_48702 loaded\n",
      "shard_34536 loaded\n",
      "shard_3909 loaded\n",
      "shard_28947 loaded\n",
      "shard_22371 loaded\n",
      "shard_45320 loaded\n",
      "shard_42356 loaded\n",
      "shard_27796 loaded\n",
      "shard_34117 loaded\n",
      "shard_40980 loaded\n",
      "shard_46633 loaded\n",
      "shard_22310 loaded\n",
      "shard_47082 loaded\n",
      "shard_2026 loaded\n",
      "shard_12281 loaded\n",
      "shard_28760 loaded\n",
      "shard_13162 loaded\n",
      "shard_31688 loaded\n",
      "shard_36867 loaded\n",
      "shard_9320 loaded\n",
      "shard_29004 loaded\n",
      "shard_20964 loaded\n",
      "shard_19498 loaded\n",
      "shard_34067 loaded\n",
      "shard_46442 loaded\n",
      "shard_16077 loaded\n",
      "shard_35107 loaded\n",
      "shard_32006 loaded\n",
      "shard_304 loaded\n",
      "shard_20610 loaded\n",
      "shard_18006 loaded\n",
      "shard_29015 loaded\n",
      "shard_13025 loaded\n",
      "shard_8457 loaded\n",
      "shard_32124 loaded\n",
      "shard_3870 loaded\n",
      "shard_21872 loaded\n",
      "shard_47755 loaded\n",
      "shard_40979 loaded\n",
      "shard_5087 loaded\n",
      "shard_6978 loaded\n",
      "shard_28744 loaded\n",
      "shard_12478 loaded\n",
      "shard_9490 loaded\n",
      "shard_26728 loaded\n",
      "shard_15511 loaded\n",
      "shard_21001 loaded\n",
      "shard_40616 loaded\n",
      "shard_10295 loaded\n",
      "shard_47720 loaded\n",
      "shard_30461 loaded\n",
      "shard_40715 loaded\n",
      "shard_17954 loaded\n",
      "shard_17230 loaded\n",
      "shard_21166 loaded\n",
      "shard_22351 loaded\n",
      "shard_17262 loaded\n",
      "shard_15095 loaded\n",
      "shard_29745 loaded\n",
      "shard_49577 loaded\n",
      "shard_42525 loaded\n",
      "shard_12481 loaded\n",
      "shard_1218 loaded\n",
      "shard_42910 loaded\n",
      "shard_8114 loaded\n",
      "shard_6021 loaded\n",
      "shard_3568 loaded\n",
      "shard_31487 loaded\n",
      "shard_49840 loaded\n",
      "shard_22499 loaded\n",
      "shard_3247 loaded\n",
      "shard_3037 loaded\n",
      "shard_6907 loaded\n",
      "shard_7826 loaded\n",
      "shard_11253 loaded\n",
      "shard_6209 loaded\n",
      "shard_46735 loaded\n",
      "shard_34455 loaded\n",
      "shard_30985 loaded\n",
      "shard_29922 loaded\n",
      "shard_30170 loaded\n",
      "shard_36523 loaded\n",
      "shard_29663 loaded\n",
      "shard_32559 loaded\n",
      "shard_16927 loaded\n",
      "shard_42419 loaded\n",
      "shard_23033 loaded\n",
      "shard_23531 loaded\n",
      "shard_36018 loaded\n",
      "shard_34299 loaded\n",
      "shard_16848 loaded\n",
      "shard_14186 loaded\n",
      "shard_11624 loaded\n",
      "shard_2283 loaded\n",
      "shard_38730 loaded\n",
      "shard_40575 loaded\n",
      "shard_40316 loaded\n",
      "shard_37456 loaded\n",
      "shard_22613 loaded\n",
      "shard_42698 loaded\n",
      "shard_40337 loaded\n",
      "shard_20050 loaded\n",
      "shard_9841 loaded\n",
      "shard_24424 loaded\n",
      "shard_24298 loaded\n",
      "shard_17339 loaded\n",
      "shard_41857 loaded\n",
      "shard_20169 loaded\n",
      "shard_20182 loaded\n",
      "shard_48251 loaded\n",
      "shard_26431 loaded\n",
      "shard_22785 loaded\n",
      "shard_22325 loaded\n",
      "shard_30600 loaded\n",
      "shard_22702 loaded\n",
      "shard_46016 loaded\n",
      "shard_17959 loaded\n",
      "shard_20676 loaded\n",
      "shard_16701 loaded\n",
      "shard_28916 loaded\n",
      "shard_10718 loaded\n",
      "shard_40029 loaded\n",
      "shard_21153 loaded\n",
      "shard_18377 loaded\n",
      "shard_7484 loaded\n",
      "shard_7938 loaded\n",
      "shard_13639 loaded\n",
      "shard_18814 loaded\n",
      "shard_2916 loaded\n",
      "shard_2876 loaded\n",
      "shard_38995 loaded\n",
      "shard_9636 loaded\n",
      "shard_4046 loaded\n",
      "shard_5904 loaded\n",
      "shard_11513 loaded\n",
      "shard_45 loaded\n",
      "shard_42808 loaded\n",
      "shard_24131 loaded\n",
      "shard_11037 loaded\n",
      "shard_32285 loaded\n",
      "shard_41965 loaded\n",
      "shard_13713 loaded\n",
      "shard_34356 loaded\n",
      "shard_17394 loaded\n",
      "shard_30053 loaded\n",
      "shard_48968 loaded\n",
      "shard_24362 loaded\n",
      "shard_13730 loaded\n",
      "shard_35123 loaded\n",
      "shard_31931 loaded\n",
      "shard_38163 loaded\n",
      "shard_30773 loaded\n",
      "shard_30953 loaded\n",
      "shard_37112 loaded\n",
      "shard_34201 loaded\n",
      "shard_24728 loaded\n",
      "shard_12083 loaded\n",
      "shard_39488 loaded\n",
      "shard_45845 loaded\n",
      "shard_14632 loaded\n",
      "shard_1412 loaded\n",
      "shard_208 loaded\n",
      "shard_28613 loaded\n",
      "shard_45402 loaded\n",
      "shard_44225 loaded\n",
      "shard_22809 loaded\n",
      "shard_2613 loaded\n",
      "shard_26766 loaded\n",
      "shard_1758 loaded\n",
      "shard_23803 loaded\n",
      "shard_25596 loaded\n",
      "shard_15951 loaded\n",
      "shard_12869 loaded\n",
      "shard_8239 loaded\n",
      "shard_12771 loaded\n",
      "shard_12117 loaded\n",
      "shard_3661 loaded\n",
      "shard_48434 loaded\n",
      "shard_26591 loaded\n",
      "shard_14987 loaded\n",
      "shard_15783 loaded\n",
      "shard_32432 loaded\n",
      "shard_26511 loaded\n",
      "shard_24155 loaded\n",
      "shard_16059 loaded\n",
      "shard_1642 loaded\n",
      "shard_48542 loaded\n",
      "shard_19506 loaded\n",
      "shard_12128 loaded\n",
      "shard_36908 loaded\n",
      "shard_11818 loaded\n",
      "shard_1066 loaded\n",
      "shard_48004 loaded\n",
      "shard_27621 loaded\n",
      "shard_26649 loaded\n",
      "shard_38365 loaded\n",
      "shard_12331 loaded\n",
      "shard_19795 loaded\n",
      "shard_27069 loaded\n",
      "shard_36924 loaded\n",
      "shard_30086 loaded\n",
      "shard_16416 loaded\n",
      "shard_1807 loaded\n",
      "shard_48751 loaded\n",
      "shard_41014 loaded\n",
      "shard_46571 loaded\n",
      "shard_37774 loaded\n",
      "shard_2204 loaded\n",
      "shard_25304 loaded\n",
      "shard_3724 loaded\n",
      "shard_41484 loaded\n",
      "shard_33228 loaded\n",
      "shard_40180 loaded\n",
      "shard_16261 loaded\n",
      "shard_39045 loaded\n",
      "shard_37213 loaded\n",
      "shard_33264 loaded\n",
      "shard_10598 loaded\n",
      "shard_33212 loaded\n",
      "shard_24898 loaded\n",
      "shard_37436 loaded\n",
      "shard_24072 loaded\n",
      "shard_27924 loaded\n",
      "shard_42586 loaded\n",
      "shard_16911 loaded\n",
      "shard_18263 loaded\n",
      "shard_34115 loaded\n",
      "shard_21943 loaded\n",
      "shard_4577 loaded\n",
      "shard_45348 loaded\n",
      "shard_13384 loaded\n",
      "shard_36714 loaded\n",
      "shard_21120 loaded\n",
      "shard_47311 loaded\n",
      "shard_24850 loaded\n",
      "shard_43995 loaded\n",
      "shard_2239 loaded\n",
      "shard_34129 loaded\n",
      "shard_12295 loaded\n",
      "shard_19383 loaded\n",
      "shard_28976 loaded\n",
      "shard_27781 loaded\n",
      "shard_25792 loaded\n",
      "shard_20035 loaded\n",
      "shard_35894 loaded\n",
      "shard_15989 loaded\n",
      "shard_25559 loaded\n",
      "shard_49334 loaded\n",
      "shard_10602 loaded\n",
      "shard_30777 loaded\n",
      "shard_7755 loaded\n",
      "shard_39499 loaded\n",
      "shard_9105 loaded\n",
      "shard_12545 loaded\n",
      "shard_42940 loaded\n",
      "shard_27327 loaded\n",
      "shard_21616 loaded\n",
      "shard_37797 loaded\n",
      "shard_47707 loaded\n",
      "shard_14085 loaded\n",
      "shard_20839 loaded\n",
      "shard_40695 loaded\n",
      "shard_9497 loaded\n",
      "shard_39185 loaded\n",
      "shard_45037 loaded\n",
      "shard_7738 loaded\n",
      "shard_24065 loaded\n",
      "shard_16249 loaded\n",
      "shard_47473 loaded\n",
      "shard_36542 loaded\n",
      "shard_20239 loaded\n",
      "shard_17204 loaded\n",
      "shard_31766 loaded\n",
      "shard_39201 loaded\n",
      "shard_11184 loaded\n",
      "shard_31014 loaded\n",
      "shard_30032 loaded\n",
      "shard_41471 loaded\n",
      "shard_4957 loaded\n",
      "shard_27341 loaded\n",
      "shard_30904 loaded\n",
      "shard_38581 loaded\n",
      "shard_12133 loaded\n",
      "shard_35560 loaded\n",
      "shard_3385 loaded\n",
      "shard_20373 loaded\n",
      "shard_46493 loaded\n",
      "shard_14288 loaded\n",
      "shard_40320 loaded\n",
      "shard_37757 loaded\n",
      "shard_32046 loaded\n",
      "shard_4991 loaded\n",
      "shard_30929 loaded\n",
      "shard_42811 loaded\n",
      "shard_40960 loaded\n",
      "shard_3885 loaded\n",
      "shard_18796 loaded\n",
      "shard_11160 loaded\n",
      "shard_13347 loaded\n",
      "shard_12805 loaded\n",
      "shard_25190 loaded\n",
      "shard_32836 loaded\n",
      "shard_42487 loaded\n",
      "shard_10782 loaded\n",
      "shard_33578 loaded\n",
      "shard_49581 loaded\n",
      "shard_9445 loaded\n",
      "shard_27758 loaded\n",
      "shard_7009 loaded\n",
      "shard_35835 loaded\n",
      "shard_45395 loaded\n",
      "shard_12978 loaded\n",
      "shard_36040 loaded\n",
      "shard_2980 loaded\n",
      "shard_25024 loaded\n",
      "shard_46307 loaded\n",
      "shard_17435 loaded\n",
      "shard_36803 loaded\n",
      "shard_12530 loaded\n",
      "shard_29214 loaded\n",
      "shard_41926 loaded\n",
      "shard_30396 loaded\n",
      "shard_8624 loaded\n",
      "shard_26043 loaded\n",
      "shard_1119 loaded\n",
      "shard_47300 loaded\n",
      "shard_29928 loaded\n",
      "shard_46047 loaded\n",
      "shard_47520 loaded\n",
      "shard_34739 loaded\n",
      "shard_43466 loaded\n",
      "shard_8404 loaded\n",
      "shard_2462 loaded\n",
      "shard_10397 loaded\n",
      "shard_33158 loaded\n",
      "shard_10020 loaded\n",
      "shard_21486 loaded\n",
      "shard_37653 loaded\n",
      "shard_5026 loaded\n",
      "shard_21091 loaded\n",
      "shard_34352 loaded\n",
      "shard_49710 loaded\n",
      "shard_12712 loaded\n",
      "shard_30271 loaded\n",
      "shard_9385 loaded\n",
      "shard_25038 loaded\n",
      "shard_11376 loaded\n",
      "shard_21399 loaded\n",
      "shard_9968 loaded\n",
      "shard_5874 loaded\n",
      "shard_6875 loaded\n",
      "shard_32632 loaded\n",
      "shard_31208 loaded\n",
      "shard_31020 loaded\n",
      "shard_46262 loaded\n",
      "shard_24123 loaded\n",
      "shard_48013 loaded\n",
      "shard_11739 loaded\n",
      "shard_40282 loaded\n",
      "shard_17748 loaded\n",
      "shard_34599 loaded\n",
      "shard_22543 loaded\n",
      "shard_22480 loaded\n",
      "shard_37314 loaded\n",
      "shard_15990 loaded\n",
      "shard_1956 loaded\n",
      "shard_17399 loaded\n",
      "shard_43178 loaded\n",
      "shard_29042 loaded\n",
      "shard_24490 loaded\n",
      "shard_3642 loaded\n",
      "shard_46098 loaded\n",
      "shard_12931 loaded\n",
      "shard_24236 loaded\n",
      "shard_30233 loaded\n",
      "shard_9046 loaded\n",
      "shard_5583 loaded\n",
      "shard_8394 loaded\n",
      "shard_233 loaded\n",
      "shard_28222 loaded\n",
      "shard_27506 loaded\n",
      "shard_49157 loaded\n",
      "shard_12016 loaded\n",
      "shard_45173 loaded\n",
      "shard_5787 loaded\n",
      "shard_36955 loaded\n",
      "shard_46684 loaded\n",
      "shard_46432 loaded\n",
      "shard_11023 loaded\n",
      "shard_49760 loaded\n",
      "shard_21703 loaded\n",
      "shard_1328 loaded\n",
      "shard_14925 loaded\n",
      "shard_11547 loaded\n",
      "shard_11888 loaded\n",
      "shard_39927 loaded\n",
      "shard_3261 loaded\n",
      "shard_30936 loaded\n",
      "shard_44861 loaded\n",
      "shard_47349 loaded\n",
      "shard_44583 loaded\n",
      "shard_27004 loaded\n",
      "shard_15977 loaded\n",
      "shard_33993 loaded\n",
      "shard_8672 loaded\n",
      "shard_38174 loaded\n",
      "shard_8185 loaded\n",
      "shard_34839 loaded\n",
      "shard_5355 loaded\n",
      "shard_20974 loaded\n",
      "shard_32445 loaded\n",
      "shard_40907 loaded\n",
      "shard_49908 loaded\n",
      "shard_36987 loaded\n",
      "shard_28328 loaded\n",
      "shard_7408 loaded\n",
      "shard_34993 loaded\n",
      "shard_15426 loaded\n",
      "shard_20696 loaded\n",
      "shard_42606 loaded\n",
      "shard_3733 loaded\n",
      "shard_16726 loaded\n",
      "shard_39097 loaded\n",
      "shard_45182 loaded\n",
      "shard_17967 loaded\n",
      "shard_17288 loaded\n",
      "shard_40430 loaded\n",
      "shard_23579 loaded\n",
      "shard_3177 loaded\n",
      "shard_35735 loaded\n",
      "shard_7679 loaded\n",
      "shard_20433 loaded\n",
      "shard_11521 loaded\n",
      "shard_47200 loaded\n",
      "shard_39540 loaded\n",
      "shard_33478 loaded\n",
      "shard_24796 loaded\n",
      "shard_30178 loaded\n",
      "shard_8606 loaded\n",
      "shard_43016 loaded\n",
      "shard_17331 loaded\n",
      "shard_22498 loaded\n",
      "shard_38499 loaded\n",
      "shard_12363 loaded\n",
      "shard_11461 loaded\n",
      "shard_15654 loaded\n",
      "shard_47850 loaded\n",
      "shard_43858 loaded\n",
      "shard_37254 loaded\n",
      "shard_2947 loaded\n",
      "shard_40632 loaded\n",
      "shard_40916 loaded\n",
      "shard_3365 loaded\n",
      "shard_26328 loaded\n",
      "shard_42963 loaded\n",
      "shard_5151 loaded\n",
      "shard_45129 loaded\n",
      "shard_7359 loaded\n",
      "shard_47480 loaded\n",
      "shard_1042 loaded\n",
      "shard_44170 loaded\n",
      "shard_25529 loaded\n",
      "shard_34965 loaded\n",
      "shard_19227 loaded\n",
      "shard_44947 loaded\n",
      "shard_48893 loaded\n",
      "shard_24228 loaded\n",
      "shard_46990 loaded\n",
      "shard_4383 loaded\n",
      "shard_42749 loaded\n",
      "shard_44650 loaded\n",
      "shard_49316 loaded\n",
      "shard_15438 loaded\n",
      "shard_24806 loaded\n",
      "shard_11497 loaded\n",
      "shard_8517 loaded\n",
      "shard_11192 loaded\n",
      "shard_31459 loaded\n",
      "shard_14829 loaded\n",
      "shard_9426 loaded\n",
      "shard_42517 loaded\n",
      "shard_12820 loaded\n",
      "shard_24149 loaded\n",
      "shard_15491 loaded\n",
      "shard_9930 loaded\n",
      "shard_11195 loaded\n",
      "shard_4007 loaded\n",
      "shard_6984 loaded\n",
      "shard_11846 loaded\n",
      "shard_4568 loaded\n",
      "shard_43698 loaded\n",
      "shard_33785 loaded\n",
      "shard_6395 loaded\n",
      "shard_41553 loaded\n",
      "shard_3959 loaded\n",
      "shard_17468 loaded\n",
      "shard_22607 loaded\n",
      "shard_35781 loaded\n",
      "shard_5537 loaded\n",
      "shard_727 loaded\n",
      "shard_32958 loaded\n",
      "shard_7979 loaded\n",
      "shard_10974 loaded\n",
      "shard_16277 loaded\n",
      "shard_16906 loaded\n",
      "shard_46245 loaded\n",
      "shard_35929 loaded\n",
      "shard_31431 loaded\n",
      "shard_45767 loaded\n",
      "shard_21652 loaded\n",
      "shard_35795 loaded\n",
      "shard_14345 loaded\n",
      "shard_36594 loaded\n",
      "shard_33290 loaded\n",
      "shard_28002 loaded\n",
      "shard_5642 loaded\n",
      "shard_11799 loaded\n",
      "shard_18837 loaded\n",
      "shard_10388 loaded\n",
      "shard_39785 loaded\n",
      "shard_39901 loaded\n",
      "shard_17910 loaded\n",
      "shard_25898 loaded\n",
      "shard_11993 loaded\n",
      "shard_31227 loaded\n",
      "shard_49050 loaded\n",
      "shard_17324 loaded\n",
      "shard_19701 loaded\n",
      "shard_35557 loaded\n",
      "shard_44963 loaded\n",
      "shard_3342 loaded\n",
      "shard_11931 loaded\n",
      "shard_28827 loaded\n",
      "shard_16103 loaded\n",
      "shard_18111 loaded\n",
      "shard_5379 loaded\n",
      "shard_38038 loaded\n",
      "shard_11488 loaded\n",
      "shard_26821 loaded\n",
      "shard_39409 loaded\n",
      "shard_43017 loaded\n",
      "shard_22156 loaded\n",
      "shard_18646 loaded\n",
      "shard_10986 loaded\n",
      "shard_32758 loaded\n",
      "shard_36402 loaded\n",
      "shard_25502 loaded\n",
      "shard_17563 loaded\n",
      "shard_49512 loaded\n",
      "shard_19522 loaded\n",
      "shard_32322 loaded\n",
      "shard_45054 loaded\n",
      "shard_43748 loaded\n",
      "shard_3845 loaded\n",
      "shard_29708 loaded\n",
      "shard_2041 loaded\n",
      "shard_23157 loaded\n",
      "shard_9199 loaded\n",
      "shard_22781 loaded\n",
      "shard_14527 loaded\n",
      "shard_34471 loaded\n",
      "shard_35652 loaded\n",
      "shard_40145 loaded\n",
      "shard_23864 loaded\n",
      "shard_13448 loaded\n",
      "shard_3014 loaded\n",
      "shard_18538 loaded\n",
      "shard_9959 loaded\n",
      "shard_41547 loaded\n",
      "shard_35622 loaded\n",
      "shard_41600 loaded\n",
      "shard_18520 loaded\n",
      "shard_32545 loaded\n",
      "shard_28607 loaded\n",
      "shard_8318 loaded\n",
      "shard_19896 loaded\n",
      "shard_26202 loaded\n",
      "shard_39115 loaded\n",
      "shard_7747 loaded\n",
      "shard_37271 loaded\n",
      "shard_1037 loaded\n",
      "shard_47972 loaded\n",
      "shard_38419 loaded\n",
      "shard_46801 loaded\n",
      "shard_44204 loaded\n",
      "shard_38006 loaded\n",
      "shard_44497 loaded\n",
      "shard_6158 loaded\n",
      "shard_7918 loaded\n",
      "shard_19318 loaded\n",
      "shard_49038 loaded\n",
      "shard_30791 loaded\n",
      "shard_2010 loaded\n",
      "shard_35536 loaded\n",
      "shard_47151 loaded\n",
      "shard_14388 loaded\n",
      "shard_32901 loaded\n",
      "shard_49522 loaded\n",
      "shard_4072 loaded\n",
      "shard_43417 loaded\n",
      "shard_22623 loaded\n",
      "shard_37554 loaded\n",
      "shard_450 loaded\n",
      "shard_21181 loaded\n",
      "shard_20713 loaded\n",
      "shard_40888 loaded\n",
      "shard_18190 loaded\n",
      "shard_2868 loaded\n",
      "shard_11347 loaded\n",
      "shard_3092 loaded\n",
      "shard_32450 loaded\n",
      "shard_24951 loaded\n",
      "shard_23949 loaded\n",
      "shard_28517 loaded\n",
      "shard_27112 loaded\n",
      "shard_23793 loaded\n",
      "shard_7409 loaded\n",
      "shard_27726 loaded\n",
      "shard_46849 loaded\n",
      "shard_10705 loaded\n",
      "shard_23796 loaded\n",
      "shard_26140 loaded\n",
      "shard_8584 loaded\n",
      "shard_26626 loaded\n",
      "shard_44154 loaded\n",
      "shard_26144 loaded\n",
      "shard_8679 loaded\n",
      "shard_32197 loaded\n",
      "shard_44902 loaded\n",
      "shard_19950 loaded\n",
      "shard_11100 loaded\n",
      "shard_31055 loaded\n",
      "shard_37810 loaded\n",
      "shard_13343 loaded\n",
      "shard_11535 loaded\n",
      "shard_33848 loaded\n",
      "shard_19750 loaded\n",
      "shard_40942 loaded\n",
      "shard_47391 loaded\n",
      "shard_35393 loaded\n",
      "shard_3442 loaded\n",
      "shard_4738 loaded\n",
      "shard_16839 loaded\n",
      "shard_35788 loaded\n",
      "shard_39458 loaded\n",
      "shard_6869 loaded\n",
      "shard_31915 loaded\n",
      "shard_3946 loaded\n",
      "shard_33529 loaded\n",
      "shard_49620 loaded\n",
      "shard_30774 loaded\n",
      "shard_48839 loaded\n",
      "shard_2304 loaded\n",
      "shard_18645 loaded\n",
      "shard_46182 loaded\n",
      "shard_41164 loaded\n",
      "shard_12758 loaded\n",
      "shard_3222 loaded\n",
      "shard_14701 loaded\n",
      "shard_31001 loaded\n",
      "shard_30240 loaded\n",
      "shard_37944 loaded\n",
      "shard_30894 loaded\n",
      "shard_39342 loaded\n",
      "shard_35716 loaded\n",
      "shard_25738 loaded\n",
      "shard_48974 loaded\n",
      "shard_4161 loaded\n",
      "shard_20507 loaded\n",
      "shard_21811 loaded\n",
      "shard_37326 loaded\n",
      "shard_12939 loaded\n",
      "shard_17836 loaded\n",
      "shard_19957 loaded\n",
      "shard_23072 loaded\n",
      "shard_22906 loaded\n",
      "shard_45237 loaded\n",
      "shard_16012 loaded\n",
      "shard_5731 loaded\n",
      "shard_25876 loaded\n",
      "shard_12085 loaded\n",
      "shard_23001 loaded\n",
      "shard_9732 loaded\n",
      "shard_11071 loaded\n",
      "shard_27428 loaded\n",
      "shard_11197 loaded\n",
      "shard_20933 loaded\n",
      "shard_35032 loaded\n",
      "shard_31391 loaded\n",
      "shard_40275 loaded\n",
      "shard_1456 loaded\n",
      "shard_43158 loaded\n",
      "shard_16047 loaded\n",
      "shard_16985 loaded\n",
      "shard_12227 loaded\n",
      "shard_32985 loaded\n",
      "shard_38369 loaded\n",
      "shard_36651 loaded\n",
      "shard_13307 loaded\n",
      "shard_49756 loaded\n",
      "shard_11077 loaded\n",
      "shard_25009 loaded\n",
      "shard_42258 loaded\n",
      "shard_28689 loaded\n",
      "shard_11196 loaded\n",
      "shard_15333 loaded\n",
      "shard_12283 loaded\n",
      "shard_27649 loaded\n",
      "shard_25552 loaded\n",
      "shard_18719 loaded\n",
      "shard_23981 loaded\n",
      "shard_819 loaded\n",
      "shard_26763 loaded\n",
      "shard_4431 loaded\n",
      "shard_13261 loaded\n",
      "shard_37760 loaded\n",
      "shard_32941 loaded\n",
      "shard_14734 loaded\n",
      "shard_26757 loaded\n",
      "shard_41615 loaded\n",
      "shard_15548 loaded\n",
      "shard_25608 loaded\n",
      "shard_5327 loaded\n",
      "shard_31876 loaded\n",
      "shard_4866 loaded\n",
      "shard_38097 loaded\n",
      "shard_1123 loaded\n",
      "shard_23224 loaded\n",
      "shard_13219 loaded\n",
      "shard_30422 loaded\n",
      "shard_7498 loaded\n",
      "shard_4626 loaded\n",
      "shard_22299 loaded\n",
      "shard_34760 loaded\n",
      "shard_33323 loaded\n",
      "shard_37832 loaded\n",
      "shard_280 loaded\n",
      "shard_26400 loaded\n",
      "shard_28507 loaded\n",
      "shard_35168 loaded\n",
      "shard_17156 loaded\n",
      "shard_49841 loaded\n",
      "shard_31163 loaded\n",
      "shard_1243 loaded\n",
      "shard_24371 loaded\n",
      "shard_44320 loaded\n",
      "shard_38605 loaded\n",
      "shard_14749 loaded\n",
      "shard_48450 loaded\n",
      "shard_5865 loaded\n",
      "shard_6416 loaded\n",
      "shard_31720 loaded\n",
      "shard_37496 loaded\n",
      "shard_16912 loaded\n",
      "shard_19245 loaded\n",
      "shard_21328 loaded\n",
      "shard_34466 loaded\n",
      "shard_31533 loaded\n",
      "shard_31694 loaded\n",
      "shard_13422 loaded\n",
      "shard_33738 loaded\n",
      "shard_15779 loaded\n",
      "shard_15766 loaded\n",
      "shard_47953 loaded\n",
      "shard_42387 loaded\n",
      "shard_23403 loaded\n",
      "shard_12542 loaded\n",
      "shard_32304 loaded\n",
      "shard_49874 loaded\n",
      "shard_5081 loaded\n",
      "shard_40346 loaded\n",
      "shard_39492 loaded\n",
      "shard_47865 loaded\n",
      "shard_4931 loaded\n",
      "shard_2494 loaded\n",
      "shard_2765 loaded\n",
      "shard_40976 loaded\n",
      "shard_5442 loaded\n",
      "shard_32382 loaded\n",
      "shard_30495 loaded\n",
      "shard_26295 loaded\n",
      "shard_36075 loaded\n",
      "shard_15400 loaded\n",
      "shard_20395 loaded\n",
      "shard_22630 loaded\n",
      "shard_37087 loaded\n",
      "shard_22308 loaded\n",
      "shard_11340 loaded\n",
      "shard_11416 loaded\n",
      "shard_44889 loaded\n",
      "shard_42443 loaded\n",
      "shard_24853 loaded\n",
      "shard_11632 loaded\n",
      "shard_31580 loaded\n",
      "shard_22945 loaded\n",
      "shard_13583 loaded\n",
      "shard_23548 loaded\n",
      "shard_5387 loaded\n",
      "shard_10792 loaded\n",
      "shard_18187 loaded\n",
      "shard_23572 loaded\n",
      "shard_36841 loaded\n",
      "shard_11364 loaded\n",
      "shard_45310 loaded\n",
      "shard_28936 loaded\n",
      "shard_17264 loaded\n",
      "shard_1289 loaded\n",
      "shard_1377 loaded\n",
      "shard_35011 loaded\n",
      "shard_30723 loaded\n",
      "shard_9545 loaded\n",
      "shard_4404 loaded\n",
      "shard_24904 loaded\n",
      "shard_5694 loaded\n",
      "shard_5913 loaded\n",
      "shard_38551 loaded\n",
      "shard_32066 loaded\n",
      "shard_38711 loaded\n",
      "shard_42012 loaded\n",
      "shard_15441 loaded\n",
      "shard_9239 loaded\n",
      "shard_48530 loaded\n",
      "shard_14913 loaded\n",
      "shard_17779 loaded\n",
      "shard_22894 loaded\n",
      "shard_1161 loaded\n",
      "shard_17440 loaded\n",
      "shard_41738 loaded\n",
      "shard_14471 loaded\n",
      "shard_13769 loaded\n",
      "shard_2467 loaded\n",
      "shard_36880 loaded\n",
      "shard_22622 loaded\n",
      "shard_46471 loaded\n",
      "shard_7368 loaded\n",
      "shard_12603 loaded\n",
      "shard_27345 loaded\n",
      "shard_14193 loaded\n",
      "shard_40113 loaded\n",
      "shard_21281 loaded\n",
      "shard_19931 loaded\n",
      "shard_12561 loaded\n",
      "shard_41815 loaded\n",
      "shard_16833 loaded\n",
      "shard_26490 loaded\n",
      "shard_36126 loaded\n",
      "shard_7318 loaded\n",
      "shard_34707 loaded\n",
      "shard_38298 loaded\n",
      "shard_27928 loaded\n",
      "shard_15825 loaded\n",
      "shard_9051 loaded\n",
      "shard_28101 loaded\n",
      "shard_26148 loaded\n",
      "shard_2170 loaded\n",
      "shard_5792 loaded\n",
      "shard_22118 loaded\n",
      "shard_1487 loaded\n",
      "shard_28369 loaded\n",
      "shard_10703 loaded\n",
      "shard_47084 loaded\n",
      "shard_23320 loaded\n",
      "shard_3902 loaded\n",
      "shard_24305 loaded\n",
      "shard_8767 loaded\n",
      "shard_12184 loaded\n",
      "shard_34928 loaded\n",
      "shard_19647 loaded\n",
      "shard_21014 loaded\n",
      "shard_6242 loaded\n",
      "shard_9806 loaded\n",
      "shard_3762 loaded\n",
      "shard_5306 loaded\n",
      "shard_48338 loaded\n",
      "shard_36164 loaded\n",
      "shard_867 loaded\n",
      "shard_48748 loaded\n",
      "shard_23077 loaded\n",
      "shard_41126 loaded\n",
      "shard_38260 loaded\n",
      "shard_48353 loaded\n",
      "shard_31564 loaded\n",
      "shard_6104 loaded\n",
      "shard_10392 loaded\n",
      "shard_9634 loaded\n",
      "shard_24793 loaded\n",
      "shard_22033 loaded\n",
      "shard_25017 loaded\n",
      "shard_21789 loaded\n",
      "shard_40783 loaded\n",
      "shard_9849 loaded\n",
      "shard_27615 loaded\n",
      "shard_49994 loaded\n",
      "shard_46999 loaded\n",
      "shard_44753 loaded\n",
      "shard_31763 loaded\n",
      "shard_25217 loaded\n",
      "shard_22088 loaded\n",
      "shard_21267 loaded\n",
      "shard_7099 loaded\n",
      "shard_23604 loaded\n",
      "shard_4394 loaded\n",
      "shard_29256 loaded\n",
      "shard_20293 loaded\n",
      "shard_36419 loaded\n",
      "shard_34894 loaded\n",
      "shard_44489 loaded\n",
      "shard_23932 loaded\n",
      "shard_23445 loaded\n",
      "shard_33153 loaded\n",
      "shard_31832 loaded\n",
      "shard_12522 loaded\n",
      "shard_13678 loaded\n",
      "shard_34458 loaded\n",
      "shard_48767 loaded\n",
      "shard_17529 loaded\n",
      "shard_7212 loaded\n",
      "shard_49228 loaded\n",
      "shard_8162 loaded\n",
      "shard_3982 loaded\n",
      "shard_21788 loaded\n",
      "shard_47083 loaded\n",
      "shard_18607 loaded\n",
      "shard_26703 loaded\n",
      "shard_30864 loaded\n",
      "shard_43045 loaded\n",
      "shard_48940 loaded\n",
      "shard_26341 loaded\n",
      "shard_25137 loaded\n",
      "shard_41625 loaded\n",
      "shard_47198 loaded\n",
      "shard_17912 loaded\n",
      "shard_15194 loaded\n",
      "shard_1887 loaded\n",
      "shard_952 loaded\n",
      "shard_28949 loaded\n",
      "shard_34522 loaded\n",
      "shard_20591 loaded\n",
      "shard_33779 loaded\n",
      "shard_26537 loaded\n",
      "shard_45096 loaded\n",
      "shard_35794 loaded\n",
      "shard_39687 loaded\n",
      "shard_7280 loaded\n",
      "shard_8440 loaded\n",
      "shard_24588 loaded\n",
      "shard_10254 loaded\n",
      "shard_35315 loaded\n",
      "shard_47681 loaded\n",
      "shard_27082 loaded\n",
      "shard_11326 loaded\n",
      "shard_46860 loaded\n",
      "shard_45671 loaded\n",
      "shard_2071 loaded\n",
      "shard_21834 loaded\n",
      "shard_26513 loaded\n",
      "shard_34699 loaded\n",
      "shard_15565 loaded\n",
      "shard_10562 loaded\n",
      "shard_2835 loaded\n",
      "shard_8578 loaded\n",
      "shard_6195 loaded\n",
      "shard_19572 loaded\n",
      "shard_39946 loaded\n",
      "shard_27246 loaded\n",
      "shard_19141 loaded\n",
      "shard_31817 loaded\n",
      "shard_13819 loaded\n",
      "shard_47220 loaded\n",
      "shard_6874 loaded\n",
      "shard_6843 loaded\n",
      "shard_19684 loaded\n",
      "shard_41003 loaded\n",
      "shard_20897 loaded\n",
      "shard_35030 loaded\n",
      "shard_11961 loaded\n",
      "shard_9735 loaded\n",
      "shard_41120 loaded\n",
      "shard_2596 loaded\n",
      "shard_42160 loaded\n",
      "shard_15179 loaded\n",
      "shard_26636 loaded\n",
      "shard_41624 loaded\n",
      "shard_46512 loaded\n",
      "shard_34197 loaded\n",
      "shard_20047 loaded\n",
      "shard_25402 loaded\n",
      "shard_27829 loaded\n",
      "shard_47487 loaded\n",
      "shard_13245 loaded\n",
      "shard_9871 loaded\n",
      "shard_20640 loaded\n",
      "shard_10485 loaded\n",
      "shard_22673 loaded\n",
      "shard_18405 loaded\n",
      "shard_31206 loaded\n",
      "shard_47939 loaded\n",
      "shard_38325 loaded\n",
      "shard_8885 loaded\n",
      "shard_29197 loaded\n",
      "shard_46019 loaded\n",
      "shard_43745 loaded\n",
      "shard_47650 loaded\n",
      "shard_21466 loaded\n",
      "shard_35362 loaded\n",
      "shard_34921 loaded\n",
      "shard_27855 loaded\n",
      "shard_10305 loaded\n",
      "shard_44676 loaded\n",
      "shard_14412 loaded\n",
      "shard_26374 loaded\n",
      "shard_10518 loaded\n",
      "shard_23296 loaded\n",
      "shard_10205 loaded\n",
      "shard_3681 loaded\n",
      "shard_8640 loaded\n",
      "shard_47204 loaded\n",
      "shard_28501 loaded\n",
      "shard_34148 loaded\n",
      "shard_5740 loaded\n",
      "shard_15918 loaded\n",
      "shard_45219 loaded\n",
      "shard_18662 loaded\n",
      "shard_9945 loaded\n",
      "shard_7066 loaded\n",
      "shard_18650 loaded\n",
      "shard_36459 loaded\n",
      "shard_49371 loaded\n",
      "shard_32550 loaded\n",
      "shard_17280 loaded\n",
      "shard_34184 loaded\n",
      "shard_20071 loaded\n",
      "shard_39388 loaded\n",
      "shard_40088 loaded\n",
      "shard_39740 loaded\n",
      "shard_5413 loaded\n",
      "shard_7269 loaded\n",
      "shard_7209 loaded\n",
      "shard_49425 loaded\n",
      "shard_32847 loaded\n",
      "shard_24013 loaded\n",
      "shard_31988 loaded\n",
      "shard_70 loaded\n",
      "shard_1959 loaded\n",
      "shard_42264 loaded\n",
      "shard_8853 loaded\n",
      "shard_39621 loaded\n",
      "shard_10813 loaded\n",
      "shard_327 loaded\n",
      "shard_39462 loaded\n",
      "shard_45622 loaded\n",
      "shard_33472 loaded\n",
      "shard_30617 loaded\n",
      "shard_41777 loaded\n",
      "shard_32973 loaded\n",
      "shard_37351 loaded\n",
      "shard_21852 loaded\n",
      "shard_48608 loaded\n",
      "shard_7098 loaded\n",
      "shard_23291 loaded\n",
      "shard_5261 loaded\n",
      "shard_30144 loaded\n",
      "shard_687 loaded\n",
      "shard_46695 loaded\n",
      "shard_12803 loaded\n",
      "shard_28296 loaded\n",
      "shard_47919 loaded\n",
      "shard_40398 loaded\n",
      "shard_34506 loaded\n",
      "shard_27523 loaded\n",
      "shard_35961 loaded\n",
      "shard_20965 loaded\n",
      "shard_44864 loaded\n",
      "shard_30097 loaded\n",
      "shard_22244 loaded\n",
      "shard_25037 loaded\n",
      "shard_26790 loaded\n",
      "shard_26694 loaded\n",
      "shard_9319 loaded\n",
      "shard_4940 loaded\n",
      "shard_21425 loaded\n",
      "shard_44188 loaded\n",
      "shard_17632 loaded\n",
      "shard_1477 loaded\n",
      "shard_5922 loaded\n",
      "shard_31588 loaded\n",
      "shard_27216 loaded\n",
      "shard_5029 loaded\n",
      "shard_28015 loaded\n",
      "shard_42754 loaded\n",
      "shard_44541 loaded\n",
      "shard_7441 loaded\n",
      "shard_30010 loaded\n",
      "shard_19292 loaded\n",
      "shard_14665 loaded\n",
      "shard_42321 loaded\n",
      "shard_38565 loaded\n",
      "shard_19250 loaded\n",
      "shard_48385 loaded\n",
      "shard_2740 loaded\n",
      "shard_10599 loaded\n",
      "shard_25460 loaded\n",
      "shard_10335 loaded\n",
      "shard_10768 loaded\n",
      "shard_13559 loaded\n",
      "shard_11095 loaded\n",
      "shard_42318 loaded\n",
      "shard_14014 loaded\n",
      "shard_40533 loaded\n",
      "shard_22140 loaded\n",
      "shard_43832 loaded\n",
      "shard_35681 loaded\n",
      "shard_2453 loaded\n",
      "shard_4211 loaded\n",
      "shard_42009 loaded\n",
      "shard_16232 loaded\n",
      "shard_17903 loaded\n",
      "shard_19233 loaded\n",
      "shard_49941 loaded\n",
      "shard_34410 loaded\n",
      "shard_45735 loaded\n",
      "shard_9721 loaded\n",
      "shard_4509 loaded\n",
      "shard_37475 loaded\n",
      "shard_27265 loaded\n",
      "shard_17182 loaded\n",
      "shard_22454 loaded\n",
      "shard_31752 loaded\n",
      "shard_33089 loaded\n",
      "shard_1529 loaded\n",
      "shard_18847 loaded\n",
      "shard_16567 loaded\n",
      "shard_18371 loaded\n",
      "shard_21726 loaded\n",
      "shard_41969 loaded\n",
      "shard_60 loaded\n",
      "shard_17978 loaded\n",
      "shard_43293 loaded\n",
      "shard_27525 loaded\n",
      "shard_27747 loaded\n",
      "shard_18246 loaded\n",
      "shard_13258 loaded\n",
      "shard_27086 loaded\n",
      "shard_21457 loaded\n",
      "shard_31353 loaded\n",
      "shard_43226 loaded\n",
      "shard_45489 loaded\n",
      "shard_19396 loaded\n",
      "shard_7058 loaded\n",
      "shard_47959 loaded\n",
      "shard_2180 loaded\n",
      "shard_31638 loaded\n",
      "shard_13892 loaded\n",
      "shard_48350 loaded\n",
      "shard_28863 loaded\n",
      "shard_2479 loaded\n",
      "shard_3351 loaded\n",
      "shard_4365 loaded\n",
      "shard_6324 loaded\n",
      "shard_23562 loaded\n",
      "shard_25601 loaded\n",
      "shard_32658 loaded\n",
      "shard_9884 loaded\n",
      "shard_21799 loaded\n",
      "shard_25968 loaded\n",
      "shard_13264 loaded\n",
      "shard_41093 loaded\n",
      "shard_8080 loaded\n",
      "shard_46520 loaded\n",
      "shard_14634 loaded\n",
      "shard_23322 loaded\n",
      "shard_3832 loaded\n",
      "shard_12139 loaded\n",
      "shard_58 loaded\n",
      "shard_22347 loaded\n",
      "shard_2934 loaded\n",
      "shard_10784 loaded\n",
      "shard_48364 loaded\n",
      "shard_11264 loaded\n",
      "shard_9546 loaded\n",
      "shard_17642 loaded\n",
      "shard_40497 loaded\n",
      "shard_5726 loaded\n",
      "shard_21896 loaded\n",
      "shard_43804 loaded\n",
      "shard_40002 loaded\n",
      "shard_3407 loaded\n",
      "shard_41831 loaded\n",
      "shard_25871 loaded\n",
      "shard_44576 loaded\n",
      "shard_39183 loaded\n",
      "shard_6205 loaded\n",
      "shard_17708 loaded\n",
      "shard_41152 loaded\n",
      "shard_39455 loaded\n",
      "shard_4055 loaded\n",
      "shard_18626 loaded\n",
      "shard_33971 loaded\n",
      "shard_25 loaded\n",
      "shard_17178 loaded\n",
      "shard_26605 loaded\n",
      "shard_29176 loaded\n",
      "shard_25519 loaded\n",
      "shard_42354 loaded\n",
      "shard_34725 loaded\n",
      "shard_18930 loaded\n",
      "shard_7243 loaded\n",
      "shard_9771 loaded\n",
      "shard_29161 loaded\n",
      "shard_4806 loaded\n",
      "shard_9512 loaded\n",
      "shard_22652 loaded\n",
      "shard_37542 loaded\n",
      "shard_35558 loaded\n",
      "shard_47801 loaded\n",
      "shard_35084 loaded\n",
      "shard_35816 loaded\n",
      "shard_49481 loaded\n",
      "shard_13744 loaded\n",
      "shard_40595 loaded\n",
      "shard_25047 loaded\n",
      "shard_34580 loaded\n",
      "shard_26726 loaded\n",
      "shard_49583 loaded\n",
      "shard_7922 loaded\n",
      "shard_20772 loaded\n",
      "shard_29778 loaded\n",
      "shard_43668 loaded\n",
      "shard_17870 loaded\n",
      "shard_37641 loaded\n",
      "shard_16399 loaded\n",
      "shard_11257 loaded\n",
      "shard_37763 loaded\n",
      "shard_33100 loaded\n",
      "shard_38788 loaded\n",
      "shard_30847 loaded\n",
      "shard_8383 loaded\n",
      "shard_44452 loaded\n",
      "shard_5380 loaded\n",
      "shard_43624 loaded\n",
      "shard_33306 loaded\n",
      "shard_25310 loaded\n",
      "shard_43418 loaded\n",
      "shard_18328 loaded\n",
      "shard_3904 loaded\n",
      "shard_29017 loaded\n",
      "shard_39102 loaded\n",
      "shard_20549 loaded\n",
      "shard_19319 loaded\n",
      "shard_13238 loaded\n",
      "shard_2965 loaded\n",
      "shard_2768 loaded\n",
      "shard_9655 loaded\n",
      "shard_19849 loaded\n",
      "shard_9767 loaded\n",
      "shard_47090 loaded\n",
      "shard_4546 loaded\n",
      "shard_1211 loaded\n",
      "shard_16931 loaded\n",
      "shard_13928 loaded\n",
      "shard_35917 loaded\n",
      "shard_33813 loaded\n",
      "shard_7228 loaded\n",
      "shard_11232 loaded\n",
      "shard_35239 loaded\n",
      "shard_33891 loaded\n",
      "shard_36113 loaded\n",
      "shard_11116 loaded\n",
      "shard_40774 loaded\n",
      "shard_4810 loaded\n",
      "shard_31416 loaded\n",
      "shard_1562 loaded\n",
      "shard_27722 loaded\n",
      "shard_39288 loaded\n",
      "shard_47685 loaded\n",
      "shard_33980 loaded\n",
      "shard_36177 loaded\n",
      "shard_29303 loaded\n",
      "shard_6403 loaded\n",
      "shard_8971 loaded\n",
      "shard_16375 loaded\n",
      "shard_47222 loaded\n",
      "shard_32749 loaded\n",
      "shard_2500 loaded\n",
      "shard_34751 loaded\n",
      "shard_30853 loaded\n",
      "shard_12565 loaded\n",
      "shard_4648 loaded\n",
      "shard_47167 loaded\n",
      "shard_29385 loaded\n",
      "shard_23229 loaded\n",
      "shard_10879 loaded\n",
      "shard_42757 loaded\n",
      "shard_8445 loaded\n",
      "shard_12532 loaded\n",
      "shard_30802 loaded\n",
      "shard_15098 loaded\n",
      "shard_16704 loaded\n",
      "shard_13899 loaded\n",
      "shard_44379 loaded\n",
      "shard_32835 loaded\n",
      "shard_46232 loaded\n",
      "shard_14138 loaded\n",
      "shard_6763 loaded\n",
      "shard_13757 loaded\n",
      "shard_7113 loaded\n",
      "shard_30343 loaded\n",
      "shard_6966 loaded\n",
      "shard_31802 loaded\n",
      "shard_3916 loaded\n",
      "shard_27117 loaded\n",
      "shard_5485 loaded\n",
      "shard_18346 loaded\n",
      "shard_29568 loaded\n",
      "shard_4873 loaded\n",
      "shard_20131 loaded\n",
      "shard_48777 loaded\n",
      "shard_37635 loaded\n",
      "shard_1193 loaded\n",
      "shard_13636 loaded\n",
      "shard_35487 loaded\n",
      "shard_37799 loaded\n",
      "shard_23995 loaded\n",
      "shard_37616 loaded\n",
      "shard_33081 loaded\n",
      "shard_25803 loaded\n",
      "shard_32366 loaded\n",
      "shard_1281 loaded\n",
      "shard_24718 loaded\n",
      "shard_33386 loaded\n",
      "shard_17362 loaded\n",
      "shard_31675 loaded\n",
      "shard_27920 loaded\n",
      "shard_24103 loaded\n",
      "shard_5948 loaded\n",
      "shard_8416 loaded\n",
      "shard_13542 loaded\n",
      "shard_38440 loaded\n",
      "shard_2166 loaded\n",
      "shard_965 loaded\n",
      "shard_17552 loaded\n",
      "shard_29317 loaded\n",
      "shard_44311 loaded\n",
      "shard_39119 loaded\n",
      "shard_24533 loaded\n",
      "shard_10688 loaded\n",
      "shard_8447 loaded\n",
      "shard_26661 loaded\n",
      "shard_44714 loaded\n",
      "shard_39764 loaded\n",
      "shard_37806 loaded\n",
      "shard_20307 loaded\n",
      "shard_27084 loaded\n",
      "shard_19066 loaded\n",
      "shard_24593 loaded\n",
      "shard_7160 loaded\n",
      "shard_9384 loaded\n",
      "shard_20821 loaded\n",
      "shard_2251 loaded\n",
      "shard_5631 loaded\n",
      "shard_10025 loaded\n",
      "shard_45815 loaded\n",
      "shard_8433 loaded\n",
      "shard_21030 loaded\n",
      "shard_9600 loaded\n",
      "shard_5136 loaded\n",
      "shard_10304 loaded\n",
      "shard_4341 loaded\n",
      "shard_25625 loaded\n",
      "shard_41767 loaded\n",
      "shard_43519 loaded\n",
      "shard_45371 loaded\n",
      "shard_35577 loaded\n",
      "shard_13756 loaded\n",
      "shard_24747 loaded\n",
      "shard_49361 loaded\n",
      "shard_20661 loaded\n",
      "shard_24843 loaded\n",
      "shard_20344 loaded\n",
      "shard_20439 loaded\n",
      "shard_38938 loaded\n",
      "shard_1179 loaded\n",
      "shard_44363 loaded\n",
      "shard_4858 loaded\n",
      "shard_43965 loaded\n",
      "shard_699 loaded\n",
      "shard_46602 loaded\n",
      "shard_12759 loaded\n",
      "shard_41269 loaded\n",
      "shard_24594 loaded\n",
      "shard_38999 loaded\n",
      "shard_11798 loaded\n",
      "shard_27694 loaded\n",
      "shard_358 loaded\n",
      "shard_13000 loaded\n",
      "shard_46508 loaded\n",
      "shard_35747 loaded\n",
      "shard_27493 loaded\n",
      "shard_26823 loaded\n",
      "shard_38299 loaded\n",
      "shard_16450 loaded\n",
      "shard_19265 loaded\n",
      "shard_29700 loaded\n",
      "shard_33431 loaded\n",
      "shard_17473 loaded\n",
      "shard_48053 loaded\n",
      "shard_6792 loaded\n",
      "shard_49628 loaded\n",
      "shard_49514 loaded\n",
      "shard_13380 loaded\n",
      "shard_46157 loaded\n",
      "shard_16481 loaded\n",
      "shard_23875 loaded\n",
      "shard_3970 loaded\n",
      "shard_13350 loaded\n",
      "shard_10194 loaded\n",
      "shard_37202 loaded\n",
      "shard_2045 loaded\n",
      "shard_36010 loaded\n",
      "shard_11965 loaded\n",
      "shard_10423 loaded\n",
      "shard_47703 loaded\n",
      "shard_37140 loaded\n",
      "shard_12872 loaded\n",
      "shard_10033 loaded\n",
      "shard_33841 loaded\n",
      "shard_26628 loaded\n",
      "shard_40179 loaded\n",
      "shard_42094 loaded\n",
      "shard_12228 loaded\n",
      "shard_30585 loaded\n",
      "shard_27680 loaded\n",
      "shard_7939 loaded\n",
      "shard_48754 loaded\n",
      "shard_41332 loaded\n",
      "shard_37168 loaded\n",
      "shard_10001 loaded\n",
      "shard_17121 loaded\n",
      "shard_3643 loaded\n",
      "shard_4998 loaded\n",
      "shard_35401 loaded\n",
      "shard_23517 loaded\n",
      "shard_6570 loaded\n",
      "shard_16134 loaded\n",
      "shard_13664 loaded\n",
      "shard_12410 loaded\n",
      "shard_13228 loaded\n",
      "shard_26915 loaded\n",
      "shard_34247 loaded\n",
      "shard_43431 loaded\n",
      "shard_40005 loaded\n",
      "shard_21411 loaded\n",
      "shard_21213 loaded\n",
      "shard_20192 loaded\n",
      "shard_17373 loaded\n",
      "shard_36239 loaded\n",
      "shard_34829 loaded\n",
      "shard_45982 loaded\n",
      "shard_34052 loaded\n",
      "shard_20018 loaded\n",
      "shard_48153 loaded\n",
      "shard_48740 loaded\n",
      "shard_11523 loaded\n",
      "shard_26242 loaded\n",
      "shard_6559 loaded\n",
      "shard_11812 loaded\n",
      "shard_34832 loaded\n",
      "shard_14417 loaded\n",
      "shard_16728 loaded\n",
      "shard_28869 loaded\n",
      "shard_21294 loaded\n",
      "shard_49035 loaded\n",
      "shard_38513 loaded\n",
      "shard_17780 loaded\n",
      "shard_27866 loaded\n",
      "shard_46954 loaded\n",
      "shard_34675 loaded\n",
      "shard_47203 loaded\n",
      "shard_15021 loaded\n",
      "shard_6757 loaded\n",
      "shard_14762 loaded\n",
      "shard_28128 loaded\n",
      "shard_24255 loaded\n",
      "shard_7425 loaded\n",
      "shard_17744 loaded\n",
      "shard_44790 loaded\n",
      "shard_45467 loaded\n",
      "shard_28579 loaded\n",
      "shard_1394 loaded\n",
      "shard_10995 loaded\n",
      "shard_45785 loaded\n",
      "shard_33473 loaded\n",
      "shard_46867 loaded\n",
      "shard_40043 loaded\n",
      "shard_33217 loaded\n",
      "shard_27512 loaded\n",
      "shard_18274 loaded\n",
      "shard_34830 loaded\n",
      "shard_44205 loaded\n",
      "shard_7640 loaded\n",
      "shard_48664 loaded\n",
      "shard_36592 loaded\n",
      "shard_24872 loaded\n",
      "shard_41393 loaded\n",
      "shard_36566 loaded\n",
      "shard_22661 loaded\n",
      "shard_10820 loaded\n",
      "shard_19883 loaded\n",
      "shard_36663 loaded\n",
      "shard_37910 loaded\n",
      "shard_13327 loaded\n",
      "shard_13637 loaded\n",
      "shard_47900 loaded\n",
      "shard_18194 loaded\n",
      "shard_10300 loaded\n",
      "shard_1683 loaded\n",
      "shard_47056 loaded\n",
      "shard_2942 loaded\n",
      "shard_36711 loaded\n",
      "shard_31411 loaded\n",
      "shard_20271 loaded\n",
      "shard_20500 loaded\n",
      "shard_49670 loaded\n",
      "shard_46005 loaded\n",
      "shard_43566 loaded\n",
      "shard_28895 loaded\n",
      "shard_25259 loaded\n",
      "shard_13985 loaded\n",
      "shard_32469 loaded\n",
      "shard_33348 loaded\n",
      "shard_32347 loaded\n",
      "shard_12710 loaded\n",
      "shard_3284 loaded\n",
      "shard_8768 loaded\n",
      "shard_40658 loaded\n",
      "shard_32103 loaded\n",
      "shard_21592 loaded\n",
      "shard_29202 loaded\n",
      "shard_22795 loaded\n",
      "shard_34555 loaded\n",
      "shard_95 loaded\n",
      "shard_16550 loaded\n",
      "shard_21365 loaded\n",
      "shard_49780 loaded\n",
      "shard_46546 loaded\n",
      "shard_10945 loaded\n",
      "shard_12535 loaded\n",
      "shard_20270 loaded\n",
      "shard_39609 loaded\n",
      "shard_42732 loaded\n",
      "shard_12777 loaded\n",
      "shard_15893 loaded\n",
      "shard_17494 loaded\n",
      "shard_45590 loaded\n",
      "shard_32210 loaded\n",
      "shard_8918 loaded\n",
      "shard_10393 loaded\n",
      "shard_10871 loaded\n",
      "shard_21133 loaded\n",
      "shard_24893 loaded\n",
      "shard_38671 loaded\n",
      "shard_24730 loaded\n",
      "shard_28644 loaded\n",
      "shard_37182 loaded\n",
      "shard_9804 loaded\n",
      "shard_8018 loaded\n",
      "shard_39744 loaded\n",
      "shard_14058 loaded\n",
      "shard_30116 loaded\n",
      "shard_47604 loaded\n",
      "shard_28155 loaded\n",
      "shard_29163 loaded\n",
      "shard_20681 loaded\n",
      "shard_37256 loaded\n",
      "shard_3773 loaded\n",
      "shard_17332 loaded\n",
      "shard_33640 loaded\n",
      "shard_40553 loaded\n",
      "shard_25089 loaded\n",
      "shard_31563 loaded\n",
      "shard_15223 loaded\n",
      "shard_42648 loaded\n",
      "shard_2592 loaded\n",
      "shard_12271 loaded\n",
      "shard_6877 loaded\n",
      "shard_18449 loaded\n",
      "shard_39864 loaded\n",
      "shard_12135 loaded\n",
      "shard_8304 loaded\n",
      "shard_31017 loaded\n",
      "shard_9050 loaded\n",
      "shard_4658 loaded\n",
      "shard_4766 loaded\n",
      "shard_43246 loaded\n",
      "shard_36951 loaded\n",
      "shard_5990 loaded\n",
      "shard_10030 loaded\n",
      "shard_5611 loaded\n",
      "shard_39708 loaded\n",
      "shard_42556 loaded\n",
      "shard_20568 loaded\n",
      "shard_40839 loaded\n",
      "shard_13393 loaded\n",
      "shard_40119 loaded\n",
      "shard_41245 loaded\n",
      "shard_28366 loaded\n",
      "shard_47288 loaded\n",
      "shard_18045 loaded\n",
      "shard_1270 loaded\n",
      "shard_48657 loaded\n",
      "shard_23142 loaded\n",
      "shard_6781 loaded\n",
      "shard_45011 loaded\n",
      "shard_2719 loaded\n",
      "shard_942 loaded\n",
      "shard_16478 loaded\n",
      "shard_37983 loaded\n",
      "shard_65 loaded\n",
      "shard_8580 loaded\n",
      "shard_41523 loaded\n",
      "shard_18750 loaded\n",
      "shard_37508 loaded\n",
      "shard_13319 loaded\n",
      "shard_5012 loaded\n",
      "shard_45664 loaded\n",
      "shard_30882 loaded\n",
      "shard_47721 loaded\n",
      "shard_10734 loaded\n",
      "shard_7274 loaded\n",
      "shard_6473 loaded\n",
      "shard_48703 loaded\n",
      "shard_42358 loaded\n",
      "shard_30044 loaded\n",
      "shard_41050 loaded\n",
      "shard_28508 loaded\n",
      "shard_35312 loaded\n",
      "shard_6063 loaded\n",
      "shard_46050 loaded\n",
      "shard_47034 loaded\n",
      "shard_11203 loaded\n",
      "shard_4919 loaded\n",
      "shard_10697 loaded\n",
      "shard_753 loaded\n",
      "shard_31397 loaded\n",
      "shard_18084 loaded\n",
      "shard_12321 loaded\n",
      "shard_33648 loaded\n",
      "shard_891 loaded\n",
      "shard_22692 loaded\n",
      "shard_6987 loaded\n",
      "shard_23632 loaded\n",
      "shard_17311 loaded\n",
      "shard_8471 loaded\n",
      "shard_33689 loaded\n",
      "shard_32916 loaded\n",
      "shard_49276 loaded\n",
      "shard_34686 loaded\n",
      "shard_23283 loaded\n",
      "shard_15323 loaded\n",
      "shard_28672 loaded\n",
      "shard_8557 loaded\n",
      "shard_8393 loaded\n",
      "shard_48301 loaded\n",
      "shard_30992 loaded\n",
      "shard_3973 loaded\n",
      "shard_27573 loaded\n",
      "shard_39110 loaded\n",
      "shard_40008 loaded\n",
      "shard_26604 loaded\n",
      "shard_36603 loaded\n",
      "shard_12305 loaded\n",
      "shard_34856 loaded\n",
      "shard_20513 loaded\n",
      "shard_17509 loaded\n",
      "shard_9044 loaded\n",
      "shard_41645 loaded\n",
      "shard_6417 loaded\n",
      "shard_45654 loaded\n",
      "shard_4181 loaded\n",
      "shard_16921 loaded\n",
      "shard_14370 loaded\n",
      "shard_12073 loaded\n",
      "shard_36761 loaded\n",
      "shard_37252 loaded\n",
      "shard_30892 loaded\n",
      "shard_9378 loaded\n",
      "shard_17352 loaded\n",
      "shard_19683 loaded\n",
      "shard_32574 loaded\n",
      "shard_12720 loaded\n",
      "shard_4853 loaded\n",
      "shard_8977 loaded\n",
      "shard_297 loaded\n",
      "shard_15849 loaded\n",
      "shard_3739 loaded\n",
      "shard_19505 loaded\n",
      "shard_8204 loaded\n",
      "shard_11544 loaded\n",
      "shard_11275 loaded\n",
      "shard_33690 loaded\n",
      "shard_41429 loaded\n",
      "shard_1296 loaded\n",
      "shard_21791 loaded\n",
      "shard_38122 loaded\n",
      "shard_10715 loaded\n",
      "shard_995 loaded\n",
      "shard_27660 loaded\n",
      "shard_43768 loaded\n",
      "shard_30591 loaded\n",
      "shard_19988 loaded\n",
      "shard_3495 loaded\n",
      "shard_27749 loaded\n",
      "shard_10241 loaded\n",
      "shard_6562 loaded\n",
      "shard_45400 loaded\n",
      "shard_42345 loaded\n",
      "shard_26921 loaded\n",
      "shard_2913 loaded\n",
      "shard_20172 loaded\n",
      "shard_11043 loaded\n",
      "shard_29117 loaded\n",
      "shard_37329 loaded\n",
      "shard_3856 loaded\n",
      "shard_25197 loaded\n",
      "shard_13435 loaded\n",
      "shard_9758 loaded\n",
      "shard_15773 loaded\n",
      "shard_8911 loaded\n",
      "shard_33810 loaded\n",
      "shard_15933 loaded\n",
      "shard_9392 loaded\n",
      "shard_44046 loaded\n",
      "shard_46072 loaded\n",
      "shard_5617 loaded\n",
      "shard_48962 loaded\n",
      "shard_8036 loaded\n",
      "shard_42532 loaded\n",
      "shard_28190 loaded\n",
      "shard_3379 loaded\n",
      "shard_1622 loaded\n",
      "shard_29590 loaded\n",
      "shard_38394 loaded\n",
      "shard_6157 loaded\n",
      "shard_5155 loaded\n",
      "shard_13376 loaded\n",
      "shard_40219 loaded\n",
      "shard_12439 loaded\n",
      "shard_36156 loaded\n",
      "shard_21113 loaded\n",
      "shard_5309 loaded\n",
      "shard_28710 loaded\n",
      "shard_27049 loaded\n",
      "shard_21526 loaded\n",
      "shard_11782 loaded\n",
      "shard_23479 loaded\n",
      "shard_22362 loaded\n",
      "shard_21464 loaded\n",
      "shard_30714 loaded\n",
      "shard_27190 loaded\n",
      "shard_10789 loaded\n",
      "shard_34809 loaded\n",
      "shard_1781 loaded\n",
      "shard_822 loaded\n",
      "shard_26942 loaded\n",
      "shard_12500 loaded\n",
      "shard_15145 loaded\n",
      "shard_3565 loaded\n",
      "shard_13667 loaded\n",
      "shard_9246 loaded\n",
      "shard_46709 loaded\n",
      "shard_9810 loaded\n",
      "shard_10386 loaded\n",
      "shard_34649 loaded\n",
      "shard_4580 loaded\n",
      "shard_16527 loaded\n",
      "shard_18427 loaded\n",
      "shard_20318 loaded\n",
      "shard_824 loaded\n",
      "shard_42141 loaded\n",
      "shard_9188 loaded\n",
      "shard_9448 loaded\n",
      "shard_25071 loaded\n",
      "shard_3763 loaded\n",
      "shard_19167 loaded\n",
      "shard_43053 loaded\n",
      "shard_33832 loaded\n",
      "shard_7845 loaded\n",
      "shard_20619 loaded\n",
      "shard_25126 loaded\n",
      "shard_9862 loaded\n",
      "shard_37737 loaded\n",
      "shard_34341 loaded\n",
      "shard_20813 loaded\n",
      "shard_24136 loaded\n",
      "shard_407 loaded\n",
      "shard_49854 loaded\n",
      "shard_13723 loaded\n",
      "shard_35684 loaded\n",
      "shard_28715 loaded\n",
      "shard_25707 loaded\n",
      "shard_32290 loaded\n",
      "shard_11028 loaded\n",
      "shard_6680 loaded\n",
      "shard_26382 loaded\n",
      "shard_30037 loaded\n",
      "shard_28965 loaded\n",
      "shard_25201 loaded\n",
      "shard_26037 loaded\n",
      "shard_33024 loaded\n",
      "shard_35763 loaded\n",
      "shard_11504 loaded\n",
      "shard_28495 loaded\n",
      "shard_12218 loaded\n",
      "shard_4921 loaded\n",
      "shard_39408 loaded\n",
      "shard_15646 loaded\n",
      "shard_28270 loaded\n",
      "shard_24142 loaded\n",
      "shard_34662 loaded\n",
      "shard_29921 loaded\n",
      "shard_12604 loaded\n",
      "shard_45694 loaded\n",
      "shard_28016 loaded\n",
      "shard_17206 loaded\n",
      "shard_16168 loaded\n",
      "shard_22856 loaded\n",
      "shard_36768 loaded\n",
      "shard_29668 loaded\n",
      "shard_32830 loaded\n",
      "shard_3055 loaded\n",
      "shard_32180 loaded\n",
      "shard_42247 loaded\n",
      "shard_39120 loaded\n",
      "shard_18887 loaded\n",
      "shard_12131 loaded\n",
      "shard_11550 loaded\n",
      "shard_22817 loaded\n",
      "shard_4630 loaded\n",
      "shard_1472 loaded\n",
      "shard_31243 loaded\n",
      "shard_37200 loaded\n",
      "shard_3539 loaded\n",
      "shard_4456 loaded\n",
      "shard_437 loaded\n",
      "shard_42386 loaded\n",
      "shard_21390 loaded\n",
      "shard_38807 loaded\n",
      "shard_28438 loaded\n",
      "shard_34452 loaded\n",
      "shard_6941 loaded\n",
      "shard_20462 loaded\n",
      "shard_15755 loaded\n",
      "shard_2437 loaded\n",
      "shard_26785 loaded\n",
      "shard_39226 loaded\n",
      "shard_29279 loaded\n",
      "shard_44594 loaded\n",
      "shard_39202 loaded\n",
      "shard_48475 loaded\n",
      "shard_42197 loaded\n",
      "shard_25716 loaded\n",
      "shard_7196 loaded\n",
      "shard_39545 loaded\n",
      "shard_41510 loaded\n",
      "shard_8432 loaded\n",
      "shard_16467 loaded\n",
      "shard_10630 loaded\n",
      "shard_30181 loaded\n",
      "shard_30564 loaded\n",
      "shard_22509 loaded\n",
      "shard_49009 loaded\n",
      "shard_15012 loaded\n",
      "shard_20444 loaded\n",
      "shard_38060 loaded\n",
      "shard_38577 loaded\n",
      "shard_14923 loaded\n",
      "shard_23542 loaded\n",
      "shard_17210 loaded\n",
      "shard_19431 loaded\n",
      "shard_16757 loaded\n",
      "shard_39013 loaded\n",
      "shard_10847 loaded\n",
      "shard_593 loaded\n",
      "shard_46519 loaded\n",
      "shard_1307 loaded\n",
      "shard_48270 loaded\n",
      "shard_3793 loaded\n",
      "shard_15237 loaded\n",
      "shard_32887 loaded\n",
      "shard_25633 loaded\n",
      "shard_17858 loaded\n",
      "shard_22965 loaded\n",
      "shard_19387 loaded\n",
      "shard_10136 loaded\n",
      "shard_13458 loaded\n",
      "shard_18806 loaded\n",
      "shard_45388 loaded\n",
      "shard_40563 loaded\n",
      "shard_44468 loaded\n",
      "shard_16433 loaded\n",
      "shard_49568 loaded\n",
      "shard_3286 loaded\n",
      "shard_37167 loaded\n",
      "shard_33207 loaded\n",
      "shard_8281 loaded\n",
      "shard_41784 loaded\n",
      "shard_14077 loaded\n",
      "shard_48430 loaded\n",
      "shard_2405 loaded\n",
      "shard_32757 loaded\n",
      "shard_43146 loaded\n",
      "shard_28094 loaded\n",
      "shard_7233 loaded\n",
      "shard_42263 loaded\n",
      "shard_28008 loaded\n",
      "shard_18569 loaded\n",
      "shard_35202 loaded\n",
      "shard_42266 loaded\n",
      "shard_18939 loaded\n",
      "shard_42404 loaded\n",
      "shard_12084 loaded\n",
      "shard_9440 loaded\n",
      "shard_1992 loaded\n",
      "shard_38392 loaded\n",
      "shard_13304 loaded\n",
      "shard_28650 loaded\n",
      "shard_39415 loaded\n",
      "shard_41351 loaded\n",
      "shard_5035 loaded\n",
      "shard_6466 loaded\n",
      "shard_34582 loaded\n",
      "shard_7674 loaded\n",
      "shard_17132 loaded\n",
      "shard_48562 loaded\n",
      "shard_14494 loaded\n",
      "shard_1666 loaded\n",
      "shard_48528 loaded\n",
      "shard_49562 loaded\n",
      "shard_27186 loaded\n",
      "shard_39398 loaded\n",
      "shard_16296 loaded\n",
      "shard_42252 loaded\n",
      "shard_4005 loaded\n",
      "shard_10724 loaded\n",
      "shard_4017 loaded\n",
      "shard_2945 loaded\n",
      "shard_5755 loaded\n",
      "shard_13634 loaded\n",
      "shard_14284 loaded\n",
      "shard_44741 loaded\n",
      "shard_41865 loaded\n",
      "shard_19027 loaded\n",
      "shard_31870 loaded\n",
      "shard_12728 loaded\n",
      "shard_39391 loaded\n",
      "shard_5186 loaded\n",
      "shard_33544 loaded\n",
      "shard_37007 loaded\n",
      "shard_36013 loaded\n",
      "shard_18348 loaded\n",
      "shard_2927 loaded\n",
      "shard_8415 loaded\n",
      "shard_30006 loaded\n",
      "shard_44684 loaded\n",
      "shard_2636 loaded\n",
      "shard_36998 loaded\n",
      "shard_10276 loaded\n",
      "shard_36715 loaded\n",
      "shard_36091 loaded\n",
      "shard_9424 loaded\n",
      "shard_10322 loaded\n",
      "shard_45587 loaded\n",
      "shard_2497 loaded\n",
      "shard_34038 loaded\n",
      "shard_38929 loaded\n",
      "shard_17513 loaded\n",
      "shard_10329 loaded\n",
      "shard_21595 loaded\n",
      "shard_21708 loaded\n",
      "shard_44510 loaded\n",
      "shard_48456 loaded\n",
      "shard_48946 loaded\n",
      "shard_22265 loaded\n",
      "shard_37925 loaded\n",
      "shard_6444 loaded\n",
      "shard_37023 loaded\n",
      "shard_43502 loaded\n",
      "shard_1679 loaded\n",
      "shard_14086 loaded\n",
      "shard_28273 loaded\n",
      "shard_12059 loaded\n",
      "shard_5349 loaded\n",
      "shard_8285 loaded\n",
      "shard_43108 loaded\n",
      "shard_11586 loaded\n",
      "shard_25647 loaded\n",
      "shard_23179 loaded\n",
      "shard_35851 loaded\n",
      "shard_18982 loaded\n",
      "shard_39301 loaded\n",
      "shard_9672 loaded\n",
      "shard_13051 loaded\n",
      "shard_16782 loaded\n",
      "shard_32856 loaded\n",
      "shard_25722 loaded\n",
      "shard_13789 loaded\n",
      "shard_2616 loaded\n",
      "shard_27462 loaded\n",
      "shard_4309 loaded\n",
      "shard_5225 loaded\n",
      "shard_21910 loaded\n",
      "shard_1505 loaded\n",
      "shard_39629 loaded\n",
      "shard_41432 loaded\n",
      "shard_17169 loaded\n",
      "shard_416 loaded\n",
      "shard_3433 loaded\n",
      "shard_37955 loaded\n",
      "shard_17072 loaded\n",
      "shard_41753 loaded\n",
      "shard_15397 loaded\n",
      "shard_40750 loaded\n",
      "shard_5099 loaded\n",
      "shard_43542 loaded\n",
      "shard_44633 loaded\n",
      "shard_44868 loaded\n",
      "shard_1830 loaded\n",
      "shard_17615 loaded\n",
      "shard_27961 loaded\n",
      "shard_42149 loaded\n",
      "shard_38878 loaded\n",
      "shard_21930 loaded\n",
      "shard_38775 loaded\n",
      "shard_24321 loaded\n",
      "shard_22888 loaded\n",
      "shard_42192 loaded\n",
      "shard_40900 loaded\n",
      "shard_27285 loaded\n",
      "shard_39701 loaded\n",
      "shard_38728 loaded\n",
      "shard_19666 loaded\n",
      "shard_44896 loaded\n",
      "shard_6588 loaded\n",
      "shard_30552 loaded\n",
      "shard_15567 loaded\n",
      "shard_46183 loaded\n",
      "shard_11900 loaded\n",
      "shard_27755 loaded\n",
      "shard_29765 loaded\n",
      "shard_27798 loaded\n",
      "shard_41919 loaded\n",
      "shard_39335 loaded\n",
      "shard_28159 loaded\n",
      "shard_32182 loaded\n",
      "shard_42919 loaded\n",
      "shard_43439 loaded\n",
      "shard_3051 loaded\n",
      "shard_4375 loaded\n",
      "shard_32751 loaded\n",
      "shard_23190 loaded\n",
      "shard_28072 loaded\n",
      "shard_11159 loaded\n",
      "shard_4536 loaded\n",
      "shard_46063 loaded\n",
      "shard_49497 loaded\n",
      "shard_25801 loaded\n",
      "shard_22618 loaded\n",
      "shard_12082 loaded\n",
      "shard_19158 loaded\n",
      "shard_32367 loaded\n",
      "shard_41390 loaded\n",
      "shard_34650 loaded\n",
      "shard_29511 loaded\n",
      "shard_33172 loaded\n",
      "shard_43111 loaded\n",
      "shard_28773 loaded\n",
      "shard_42163 loaded\n",
      "shard_28703 loaded\n",
      "shard_22631 loaded\n",
      "shard_4157 loaded\n",
      "shard_43380 loaded\n",
      "shard_12397 loaded\n",
      "shard_25145 loaded\n",
      "shard_48742 loaded\n",
      "shard_25395 loaded\n",
      "shard_35563 loaded\n",
      "shard_29360 loaded\n",
      "shard_49205 loaded\n",
      "shard_17336 loaded\n",
      "shard_36890 loaded\n",
      "shard_41892 loaded\n",
      "shard_20905 loaded\n",
      "shard_44774 loaded\n",
      "shard_35203 loaded\n",
      "shard_3017 loaded\n",
      "shard_5569 loaded\n",
      "shard_10288 loaded\n",
      "shard_15464 loaded\n",
      "shard_7841 loaded\n",
      "shard_28440 loaded\n",
      "shard_32315 loaded\n",
      "shard_41205 loaded\n",
      "shard_44353 loaded\n",
      "shard_13793 loaded\n",
      "shard_27925 loaded\n",
      "shard_34425 loaded\n",
      "shard_7797 loaded\n",
      "shard_24802 loaded\n",
      "shard_3563 loaded\n",
      "shard_38009 loaded\n",
      "shard_31976 loaded\n",
      "shard_18122 loaded\n",
      "shard_27322 loaded\n",
      "shard_14470 loaded\n",
      "shard_14286 loaded\n",
      "shard_20176 loaded\n",
      "shard_29572 loaded\n",
      "shard_30099 loaded\n",
      "shard_5724 loaded\n",
      "shard_6851 loaded\n",
      "shard_39105 loaded\n",
      "shard_10504 loaded\n",
      "shard_7204 loaded\n",
      "shard_7560 loaded\n",
      "shard_15274 loaded\n",
      "shard_45680 loaded\n",
      "shard_36185 loaded\n",
      "shard_7578 loaded\n",
      "shard_49729 loaded\n",
      "shard_32173 loaded\n",
      "shard_18906 loaded\n",
      "shard_17069 loaded\n",
      "shard_48423 loaded\n",
      "shard_23725 loaded\n",
      "shard_16264 loaded\n",
      "shard_30496 loaded\n",
      "shard_23139 loaded\n",
      "shard_11699 loaded\n",
      "shard_26337 loaded\n",
      "shard_16177 loaded\n",
      "shard_16999 loaded\n",
      "shard_25711 loaded\n",
      "shard_7728 loaded\n",
      "shard_26343 loaded\n",
      "shard_35180 loaded\n",
      "shard_23116 loaded\n",
      "shard_42478 loaded\n",
      "shard_11348 loaded\n",
      "shard_31823 loaded\n",
      "shard_38985 loaded\n",
      "shard_12677 loaded\n",
      "shard_38330 loaded\n",
      "shard_10912 loaded\n",
      "shard_17392 loaded\n",
      "shard_4677 loaded\n",
      "shard_37138 loaded\n",
      "shard_15035 loaded\n",
      "shard_38921 loaded\n",
      "shard_48768 loaded\n",
      "shard_43830 loaded\n",
      "shard_47230 loaded\n",
      "shard_7984 loaded\n",
      "shard_10721 loaded\n",
      "shard_31646 loaded\n",
      "shard_9072 loaded\n",
      "shard_9190 loaded\n",
      "shard_23550 loaded\n",
      "shard_4863 loaded\n",
      "shard_34770 loaded\n",
      "shard_27351 loaded\n",
      "shard_26066 loaded\n",
      "shard_21066 loaded\n",
      "shard_35056 loaded\n",
      "shard_49393 loaded\n",
      "shard_33338 loaded\n",
      "shard_27909 loaded\n",
      "shard_31949 loaded\n",
      "shard_34810 loaded\n",
      "shard_19352 loaded\n",
      "shard_39792 loaded\n",
      "shard_23189 loaded\n",
      "shard_44184 loaded\n",
      "shard_31168 loaded\n",
      "shard_44846 loaded\n",
      "shard_15896 loaded\n",
      "shard_3316 loaded\n",
      "shard_28534 loaded\n",
      "shard_18601 loaded\n",
      "shard_28870 loaded\n",
      "shard_6124 loaded\n",
      "shard_18133 loaded\n",
      "shard_45597 loaded\n",
      "shard_25789 loaded\n",
      "shard_41925 loaded\n",
      "shard_10605 loaded\n",
      "shard_16970 loaded\n",
      "shard_23876 loaded\n",
      "shard_17572 loaded\n",
      "shard_41317 loaded\n",
      "shard_41350 loaded\n",
      "shard_33396 loaded\n",
      "shard_47216 loaded\n",
      "shard_32900 loaded\n",
      "shard_145 loaded\n",
      "shard_22376 loaded\n",
      "shard_18590 loaded\n",
      "shard_29984 loaded\n",
      "shard_23942 loaded\n",
      "shard_29170 loaded\n",
      "shard_19882 loaded\n",
      "shard_23541 loaded\n",
      "shard_13962 loaded\n",
      "shard_31847 loaded\n",
      "shard_45035 loaded\n",
      "shard_989 loaded\n",
      "shard_22295 loaded\n",
      "shard_17897 loaded\n",
      "shard_43556 loaded\n",
      "shard_43456 loaded\n",
      "shard_31925 loaded\n",
      "shard_30172 loaded\n",
      "shard_47646 loaded\n",
      "shard_38706 loaded\n",
      "shard_45570 loaded\n",
      "shard_3170 loaded\n",
      "shard_11539 loaded\n",
      "shard_14521 loaded\n",
      "shard_17930 loaded\n",
      "shard_31642 loaded\n",
      "shard_28985 loaded\n",
      "shard_27658 loaded\n",
      "shard_16490 loaded\n",
      "shard_25998 loaded\n",
      "shard_46750 loaded\n",
      "shard_47628 loaded\n",
      "shard_38816 loaded\n",
      "shard_11702 loaded\n",
      "shard_6574 loaded\n",
      "shard_19532 loaded\n",
      "shard_27147 loaded\n",
      "shard_31038 loaded\n",
      "shard_11317 loaded\n",
      "shard_6265 loaded\n",
      "shard_12723 loaded\n",
      "shard_35336 loaded\n",
      "shard_1433 loaded\n",
      "shard_37700 loaded\n",
      "shard_35668 loaded\n",
      "shard_24485 loaded\n",
      "shard_23015 loaded\n",
      "shard_323 loaded\n",
      "shard_33121 loaded\n",
      "shard_1455 loaded\n",
      "shard_46628 loaded\n",
      "shard_10769 loaded\n",
      "shard_1954 loaded\n",
      "shard_21670 loaded\n",
      "shard_42414 loaded\n",
      "shard_6902 loaded\n",
      "shard_15816 loaded\n",
      "shard_27129 loaded\n",
      "shard_30736 loaded\n",
      "shard_26820 loaded\n",
      "shard_45323 loaded\n",
      "shard_43229 loaded\n",
      "shard_15969 loaded\n",
      "shard_18570 loaded\n",
      "shard_19067 loaded\n",
      "shard_26724 loaded\n",
      "shard_9954 loaded\n",
      "shard_22752 loaded\n",
      "shard_36596 loaded\n",
      "shard_4923 loaded\n",
      "shard_12206 loaded\n",
      "shard_45454 loaded\n",
      "shard_48017 loaded\n",
      "shard_10961 loaded\n",
      "shard_35150 loaded\n",
      "shard_8319 loaded\n",
      "shard_39566 loaded\n",
      "shard_38059 loaded\n",
      "shard_28728 loaded\n",
      "shard_48722 loaded\n",
      "shard_36938 loaded\n",
      "shard_45189 loaded\n",
      "shard_16505 loaded\n",
      "shard_47616 loaded\n",
      "shard_39626 loaded\n",
      "shard_4488 loaded\n",
      "shard_14325 loaded\n",
      "shard_11701 loaded\n",
      "shard_5056 loaded\n",
      "shard_37685 loaded\n",
      "shard_11437 loaded\n",
      "shard_41095 loaded\n",
      "shard_30254 loaded\n",
      "shard_6606 loaded\n",
      "shard_20608 loaded\n",
      "shard_44703 loaded\n",
      "shard_8139 loaded\n",
      "shard_16873 loaded\n",
      "shard_19062 loaded\n",
      "shard_27092 loaded\n",
      "shard_38126 loaded\n",
      "shard_3943 loaded\n",
      "shard_36069 loaded\n",
      "shard_33455 loaded\n",
      "shard_10316 loaded\n",
      "shard_18676 loaded\n",
      "shard_27008 loaded\n",
      "shard_19717 loaded\n",
      "shard_42890 loaded\n",
      "shard_44070 loaded\n",
      "shard_33894 loaded\n",
      "shard_46736 loaded\n",
      "shard_22625 loaded\n",
      "shard_41756 loaded\n",
      "shard_44872 loaded\n",
      "shard_2377 loaded\n",
      "shard_29189 loaded\n",
      "shard_48427 loaded\n",
      "shard_40386 loaded\n",
      "shard_25369 loaded\n",
      "shard_7341 loaded\n",
      "shard_24661 loaded\n",
      "shard_6673 loaded\n",
      "shard_4593 loaded\n",
      "shard_4705 loaded\n",
      "shard_30805 loaded\n",
      "shard_42058 loaded\n",
      "shard_30980 loaded\n",
      "shard_28674 loaded\n",
      "shard_5376 loaded\n",
      "shard_1060 loaded\n",
      "shard_47182 loaded\n",
      "shard_48956 loaded\n",
      "shard_23450 loaded\n",
      "shard_31479 loaded\n",
      "shard_8403 loaded\n",
      "shard_9659 loaded\n",
      "shard_36708 loaded\n",
      "shard_41213 loaded\n",
      "shard_3176 loaded\n",
      "shard_10539 loaded\n",
      "shard_4426 loaded\n",
      "shard_29870 loaded\n",
      "shard_10110 loaded\n",
      "shard_40910 loaded\n",
      "shard_8639 loaded\n",
      "shard_49455 loaded\n",
      "shard_6766 loaded\n",
      "shard_10506 loaded\n",
      "shard_25153 loaded\n",
      "shard_1083 loaded\n",
      "shard_29661 loaded\n",
      "shard_38824 loaded\n",
      "shard_32744 loaded\n",
      "shard_25742 loaded\n",
      "shard_10167 loaded\n",
      "shard_31203 loaded\n",
      "shard_1504 loaded\n",
      "shard_25542 loaded\n",
      "shard_1463 loaded\n",
      "shard_5251 loaded\n",
      "shard_15706 loaded\n",
      "shard_22519 loaded\n",
      "shard_21301 loaded\n",
      "shard_3260 loaded\n",
      "shard_23285 loaded\n",
      "shard_39695 loaded\n",
      "shard_3007 loaded\n",
      "shard_10084 loaded\n",
      "shard_43644 loaded\n",
      "shard_23266 loaded\n",
      "shard_38134 loaded\n",
      "shard_5282 loaded\n",
      "shard_3491 loaded\n",
      "shard_16685 loaded\n",
      "shard_30209 loaded\n",
      "shard_14401 loaded\n",
      "shard_49886 loaded\n",
      "shard_31856 loaded\n",
      "shard_6753 loaded\n",
      "shard_31624 loaded\n",
      "shard_49207 loaded\n",
      "shard_10833 loaded\n",
      "shard_36900 loaded\n",
      "shard_2507 loaded\n",
      "shard_10885 loaded\n",
      "shard_30437 loaded\n",
      "shard_13997 loaded\n",
      "shard_36307 loaded\n",
      "shard_47987 loaded\n",
      "shard_6351 loaded\n",
      "shard_4088 loaded\n",
      "shard_33061 loaded\n",
      "shard_2400 loaded\n",
      "shard_46472 loaded\n",
      "shard_9186 loaded\n",
      "shard_37318 loaded\n",
      "shard_13218 loaded\n",
      "shard_46541 loaded\n",
      "shard_46058 loaded\n",
      "shard_46754 loaded\n",
      "shard_44983 loaded\n",
      "shard_35189 loaded\n",
      "shard_45679 loaded\n",
      "shard_35200 loaded\n",
      "shard_28295 loaded\n",
      "shard_19023 loaded\n",
      "shard_26415 loaded\n",
      "shard_14605 loaded\n",
      "shard_27328 loaded\n",
      "shard_26828 loaded\n",
      "shard_18250 loaded\n",
      "shard_22977 loaded\n",
      "shard_9429 loaded\n",
      "shard_35337 loaded\n",
      "shard_3752 loaded\n",
      "shard_9380 loaded\n",
      "shard_17845 loaded\n",
      "shard_31436 loaded\n",
      "shard_36734 loaded\n",
      "shard_40766 loaded\n",
      "shard_19071 loaded\n",
      "shard_11478 loaded\n",
      "shard_5159 loaded\n",
      "shard_44700 loaded\n",
      "shard_44400 loaded\n",
      "shard_23963 loaded\n",
      "shard_26074 loaded\n",
      "shard_39940 loaded\n",
      "shard_34918 loaded\n",
      "shard_29072 loaded\n",
      "shard_2924 loaded\n",
      "shard_23537 loaded\n",
      "shard_27959 loaded\n",
      "shard_40440 loaded\n",
      "shard_43703 loaded\n",
      "shard_37024 loaded\n",
      "shard_3343 loaded\n",
      "shard_48483 loaded\n",
      "shard_14811 loaded\n",
      "shard_638 loaded\n",
      "shard_28214 loaded\n",
      "shard_30741 loaded\n",
      "shard_22317 loaded\n",
      "shard_40619 loaded\n",
      "shard_35182 loaded\n",
      "shard_33262 loaded\n",
      "shard_3538 loaded\n",
      "shard_46290 loaded\n",
      "shard_11320 loaded\n",
      "shard_38953 loaded\n",
      "shard_32422 loaded\n",
      "shard_47793 loaded\n",
      "shard_15502 loaded\n",
      "shard_30309 loaded\n",
      "shard_19748 loaded\n",
      "shard_36855 loaded\n",
      "shard_43038 loaded\n",
      "shard_3598 loaded\n",
      "shard_816 loaded\n",
      "shard_8668 loaded\n",
      "shard_14544 loaded\n",
      "shard_24710 loaded\n",
      "shard_38400 loaded\n",
      "shard_15970 loaded\n",
      "shard_29037 loaded\n",
      "shard_8681 loaded\n",
      "shard_4103 loaded\n",
      "shard_13598 loaded\n",
      "shard_30669 loaded\n",
      "shard_30249 loaded\n",
      "shard_25610 loaded\n",
      "shard_48921 loaded\n",
      "shard_21679 loaded\n",
      "shard_32664 loaded\n",
      "shard_2550 loaded\n",
      "shard_15284 loaded\n",
      "shard_19334 loaded\n",
      "shard_34757 loaded\n",
      "shard_45695 loaded\n",
      "shard_11439 loaded\n",
      "shard_32020 loaded\n",
      "shard_42770 loaded\n",
      "shard_28463 loaded\n",
      "shard_28026 loaded\n",
      "shard_22570 loaded\n",
      "shard_45301 loaded\n",
      "shard_39108 loaded\n",
      "shard_21617 loaded\n",
      "shard_44613 loaded\n",
      "shard_26161 loaded\n",
      "shard_6983 loaded\n",
      "shard_41559 loaded\n",
      "shard_21964 loaded\n",
      "shard_35026 loaded\n",
      "shard_25302 loaded\n",
      "shard_7843 loaded\n",
      "shard_42911 loaded\n",
      "shard_9494 loaded\n",
      "shard_27757 loaded\n",
      "shard_47783 loaded\n",
      "shard_38359 loaded\n",
      "shard_5408 loaded\n",
      "shard_30778 loaded\n",
      "shard_13615 loaded\n",
      "shard_25590 loaded\n",
      "shard_7051 loaded\n",
      "shard_1147 loaded\n",
      "shard_39882 loaded\n",
      "shard_7265 loaded\n",
      "shard_47995 loaded\n",
      "shard_33580 loaded\n",
      "shard_39175 loaded\n",
      "shard_29088 loaded\n",
      "shard_33019 loaded\n",
      "shard_14572 loaded\n",
      "shard_9090 loaded\n",
      "shard_772 loaded\n",
      "shard_11916 loaded\n",
      "shard_28424 loaded\n",
      "shard_7874 loaded\n",
      "shard_3246 loaded\n",
      "shard_36289 loaded\n",
      "shard_20613 loaded\n",
      "shard_26326 loaded\n",
      "shard_40544 loaded\n",
      "shard_20647 loaded\n",
      "shard_22256 loaded\n",
      "shard_16879 loaded\n",
      "shard_24862 loaded\n",
      "shard_20477 loaded\n",
      "shard_5959 loaded\n",
      "shard_48397 loaded\n",
      "shard_49745 loaded\n",
      "shard_21917 loaded\n",
      "shard_26599 loaded\n",
      "shard_1841 loaded\n",
      "shard_72 loaded\n",
      "shard_26081 loaded\n",
      "shard_14253 loaded\n",
      "shard_41997 loaded\n",
      "shard_18854 loaded\n",
      "shard_34119 loaded\n",
      "shard_10036 loaded\n",
      "shard_45443 loaded\n",
      "shard_46433 loaded\n",
      "shard_40021 loaded\n",
      "shard_48511 loaded\n",
      "shard_19393 loaded\n",
      "shard_1932 loaded\n",
      "shard_36943 loaded\n",
      "shard_48957 loaded\n",
      "shard_47912 loaded\n",
      "shard_33568 loaded\n",
      "shard_37918 loaded\n",
      "shard_41979 loaded\n",
      "shard_48043 loaded\n",
      "shard_34156 loaded\n",
      "shard_34166 loaded\n",
      "shard_5479 loaded\n",
      "shard_31435 loaded\n",
      "shard_18989 loaded\n",
      "shard_10148 loaded\n",
      "shard_24953 loaded\n",
      "shard_28815 loaded\n",
      "shard_7976 loaded\n",
      "shard_49476 loaded\n",
      "shard_18461 loaded\n",
      "shard_17917 loaded\n",
      "shard_3355 loaded\n",
      "shard_48447 loaded\n",
      "shard_36889 loaded\n",
      "shard_48093 loaded\n",
      "shard_15448 loaded\n",
      "shard_34616 loaded\n",
      "shard_49515 loaded\n",
      "shard_15335 loaded\n",
      "shard_18285 loaded\n",
      "shard_27685 loaded\n",
      "shard_33221 loaded\n",
      "shard_2704 loaded\n",
      "shard_21827 loaded\n",
      "shard_37829 loaded\n",
      "shard_13454 loaded\n",
      "shard_21865 loaded\n",
      "shard_19934 loaded\n",
      "shard_12350 loaded\n",
      "shard_2178 loaded\n",
      "shard_2950 loaded\n",
      "shard_8431 loaded\n",
      "shard_22688 loaded\n",
      "shard_17888 loaded\n",
      "shard_746 loaded\n",
      "shard_42806 loaded\n",
      "shard_49117 loaded\n",
      "shard_43328 loaded\n",
      "shard_12349 loaded\n",
      "shard_30227 loaded\n",
      "shard_13662 loaded\n",
      "shard_41427 loaded\n",
      "shard_15291 loaded\n",
      "shard_552 loaded\n",
      "shard_15869 loaded\n",
      "shard_16061 loaded\n",
      "shard_43113 loaded\n",
      "shard_1918 loaded\n",
      "shard_3580 loaded\n",
      "shard_36667 loaded\n",
      "shard_28266 loaded\n",
      "shard_10119 loaded\n",
      "shard_18638 loaded\n",
      "shard_23031 loaded\n",
      "shard_37196 loaded\n",
      "shard_34294 loaded\n",
      "shard_16855 loaded\n",
      "shard_810 loaded\n",
      "shard_34228 loaded\n",
      "shard_21843 loaded\n",
      "shard_7933 loaded\n",
      "shard_2177 loaded\n",
      "shard_17701 loaded\n",
      "shard_19287 loaded\n",
      "shard_46280 loaded\n",
      "shard_20829 loaded\n",
      "shard_14543 loaded\n",
      "shard_28323 loaded\n",
      "shard_33903 loaded\n",
      "shard_30403 loaded\n",
      "shard_19247 loaded\n",
      "shard_45567 loaded\n",
      "shard_7743 loaded\n",
      "shard_38809 loaded\n",
      "shard_11883 loaded\n",
      "shard_3473 loaded\n",
      "shard_43372 loaded\n",
      "shard_36679 loaded\n",
      "shard_11 loaded\n",
      "shard_22546 loaded\n",
      "shard_48358 loaded\n",
      "shard_34295 loaded\n",
      "shard_41686 loaded\n",
      "shard_16287 loaded\n",
      "shard_24416 loaded\n",
      "shard_8081 loaded\n",
      "shard_7032 loaded\n",
      "shard_27278 loaded\n",
      "shard_47400 loaded\n",
      "shard_39842 loaded\n",
      "shard_22912 loaded\n",
      "shard_39261 loaded\n",
      "shard_13253 loaded\n",
      "shard_14698 loaded\n",
      "shard_37345 loaded\n",
      "shard_29369 loaded\n",
      "shard_38347 loaded\n",
      "shard_44673 loaded\n",
      "shard_39008 loaded\n",
      "shard_41306 loaded\n",
      "shard_6233 loaded\n",
      "shard_42439 loaded\n",
      "shard_39982 loaded\n",
      "shard_1522 loaded\n",
      "shard_25372 loaded\n",
      "shard_30923 loaded\n",
      "shard_41994 loaded\n",
      "shard_42815 loaded\n",
      "shard_26260 loaded\n",
      "shard_17393 loaded\n",
      "shard_10123 loaded\n",
      "shard_4740 loaded\n",
      "shard_12774 loaded\n",
      "shard_20690 loaded\n",
      "shard_1763 loaded\n",
      "shard_26895 loaded\n",
      "shard_2371 loaded\n",
      "shard_35855 loaded\n",
      "shard_45447 loaded\n",
      "shard_47114 loaded\n",
      "shard_22041 loaded\n",
      "shard_24667 loaded\n",
      "shard_17838 loaded\n",
      "shard_39676 loaded\n",
      "shard_38825 loaded\n",
      "shard_27347 loaded\n",
      "shard_47275 loaded\n",
      "shard_34050 loaded\n",
      "shard_28213 loaded\n",
      "shard_25862 loaded\n",
      "shard_26701 loaded\n",
      "shard_47368 loaded\n",
      "shard_34338 loaded\n",
      "shard_44214 loaded\n",
      "shard_17688 loaded\n",
      "shard_9204 loaded\n",
      "shard_7122 loaded\n",
      "shard_49092 loaded\n",
      "shard_32816 loaded\n",
      "shard_32925 loaded\n",
      "shard_32101 loaded\n",
      "shard_39420 loaded\n",
      "shard_27486 loaded\n",
      "shard_1627 loaded\n",
      "shard_49956 loaded\n",
      "shard_6249 loaded\n",
      "shard_23578 loaded\n",
      "shard_36080 loaded\n",
      "shard_8409 loaded\n",
      "shard_22054 loaded\n",
      "shard_22436 loaded\n",
      "shard_29777 loaded\n",
      "shard_27837 loaded\n",
      "shard_44546 loaded\n",
      "shard_31777 loaded\n",
      "shard_39308 loaded\n",
      "shard_17558 loaded\n",
      "shard_34706 loaded\n",
      "shard_34900 loaded\n",
      "shard_41323 loaded\n",
      "shard_10588 loaded\n",
      "shard_14230 loaded\n",
      "shard_11458 loaded\n",
      "shard_43915 loaded\n",
      "shard_29101 loaded\n",
      "shard_11052 loaded\n",
      "shard_45975 loaded\n",
      "shard_31710 loaded\n",
      "shard_29040 loaded\n",
      "shard_2253 loaded\n",
      "shard_27677 loaded\n",
      "shard_14399 loaded\n",
      "shard_18433 loaded\n",
      "shard_17329 loaded\n",
      "shard_35201 loaded\n",
      "shard_14276 loaded\n",
      "shard_19277 loaded\n",
      "shard_1386 loaded\n",
      "shard_47523 loaded\n",
      "shard_14660 loaded\n",
      "shard_6415 loaded\n",
      "shard_2595 loaded\n",
      "shard_48827 loaded\n",
      "shard_11825 loaded\n",
      "shard_2162 loaded\n",
      "shard_41411 loaded\n",
      "shard_2314 loaded\n",
      "shard_15348 loaded\n",
      "shard_46028 loaded\n",
      "shard_46527 loaded\n",
      "shard_9042 loaded\n",
      "shard_5570 loaded\n",
      "shard_27832 loaded\n",
      "shard_2821 loaded\n",
      "shard_19164 loaded\n",
      "shard_49821 loaded\n",
      "shard_6085 loaded\n",
      "shard_23415 loaded\n",
      "shard_49799 loaded\n",
      "shard_7301 loaded\n",
      "shard_1852 loaded\n",
      "shard_30821 loaded\n",
      "shard_9307 loaded\n",
      "shard_46928 loaded\n",
      "shard_34625 loaded\n",
      "shard_34472 loaded\n",
      "shard_8950 loaded\n",
      "shard_16923 loaded\n",
      "shard_7440 loaded\n",
      "shard_39275 loaded\n",
      "shard_23626 loaded\n",
      "shard_36392 loaded\n",
      "shard_43588 loaded\n",
      "shard_32732 loaded\n",
      "shard_35612 loaded\n",
      "shard_7942 loaded\n",
      "shard_15904 loaded\n",
      "shard_26443 loaded\n",
      "shard_37054 loaded\n",
      "shard_47143 loaded\n",
      "shard_21606 loaded\n",
      "shard_20160 loaded\n",
      "shard_34312 loaded\n",
      "shard_29624 loaded\n",
      "shard_13371 loaded\n",
      "shard_49995 loaded\n",
      "shard_15913 loaded\n",
      "shard_17134 loaded\n",
      "shard_40895 loaded\n",
      "shard_20089 loaded\n",
      "shard_35099 loaded\n",
      "shard_18677 loaded\n",
      "shard_6749 loaded\n",
      "shard_26897 loaded\n",
      "shard_12558 loaded\n",
      "shard_5967 loaded\n",
      "shard_25146 loaded\n",
      "shard_11515 loaded\n",
      "shard_3975 loaded\n",
      "shard_1546 loaded\n",
      "shard_1169 loaded\n",
      "shard_13773 loaded\n",
      "shard_22085 loaded\n",
      "shard_11119 loaded\n",
      "shard_1902 loaded\n",
      "shard_41027 loaded\n",
      "shard_7824 loaded\n",
      "shard_3269 loaded\n",
      "shard_38007 loaded\n",
      "shard_40752 loaded\n",
      "shard_11399 loaded\n",
      "shard_2517 loaded\n",
      "shard_16071 loaded\n",
      "shard_17560 loaded\n",
      "shard_10928 loaded\n",
      "shard_43699 loaded\n",
      "shard_1484 loaded\n",
      "shard_44554 loaded\n",
      "shard_23732 loaded\n",
      "shard_22984 loaded\n",
      "shard_30671 loaded\n",
      "shard_21694 loaded\n",
      "shard_15532 loaded\n",
      "shard_5742 loaded\n",
      "shard_4165 loaded\n",
      "shard_37032 loaded\n",
      "shard_25418 loaded\n",
      "shard_16938 loaded\n",
      "shard_25483 loaded\n",
      "shard_39596 loaded\n",
      "shard_12234 loaded\n",
      "shard_48485 loaded\n",
      "shard_6340 loaded\n",
      "shard_47507 loaded\n",
      "shard_32191 loaded\n",
      "shard_44610 loaded\n",
      "shard_39293 loaded\n",
      "shard_23141 loaded\n",
      "shard_30256 loaded\n",
      "shard_7726 loaded\n",
      "shard_28044 loaded\n",
      "shard_46454 loaded\n",
      "shard_12068 loaded\n",
      "shard_12114 loaded\n",
      "shard_15355 loaded\n",
      "shard_37269 loaded\n",
      "shard_23802 loaded\n",
      "shard_6427 loaded\n",
      "shard_15756 loaded\n",
      "shard_6062 loaded\n",
      "shard_13589 loaded\n",
      "shard_25076 loaded\n",
      "shard_7581 loaded\n",
      "shard_41504 loaded\n",
      "shard_23982 loaded\n",
      "shard_14290 loaded\n",
      "shard_21730 loaded\n",
      "shard_17522 loaded\n",
      "shard_40374 loaded\n",
      "shard_29899 loaded\n",
      "shard_8699 loaded\n",
      "shard_13171 loaded\n",
      "shard_24271 loaded\n",
      "shard_27691 loaded\n",
      "shard_5020 loaded\n",
      "shard_12286 loaded\n",
      "shard_6871 loaded\n",
      "shard_48865 loaded\n",
      "shard_8941 loaded\n",
      "shard_47675 loaded\n",
      "shard_3290 loaded\n",
      "shard_4675 loaded\n",
      "shard_36231 loaded\n",
      "shard_361 loaded\n",
      "shard_39779 loaded\n",
      "shard_13389 loaded\n",
      "shard_18776 loaded\n",
      "shard_45966 loaded\n",
      "shard_31052 loaded\n",
      "shard_22969 loaded\n",
      "shard_934 loaded\n",
      "shard_4029 loaded\n",
      "shard_12178 loaded\n",
      "shard_22122 loaded\n",
      "shard_49680 loaded\n",
      "shard_12486 loaded\n",
      "shard_40333 loaded\n",
      "shard_32583 loaded\n",
      "shard_39141 loaded\n",
      "shard_26065 loaded\n",
      "shard_12155 loaded\n",
      "shard_8921 loaded\n",
      "shard_43575 loaded\n",
      "shard_44298 loaded\n",
      "shard_30696 loaded\n",
      "shard_8776 loaded\n",
      "shard_37301 loaded\n",
      "shard_34010 loaded\n",
      "shard_49944 loaded\n",
      "shard_4539 loaded\n",
      "shard_45937 loaded\n",
      "shard_20163 loaded\n",
      "shard_46190 loaded\n",
      "shard_16528 loaded\n",
      "shard_26589 loaded\n",
      "shard_43354 loaded\n",
      "shard_38135 loaded\n",
      "shard_34370 loaded\n",
      "shard_12003 loaded\n",
      "shard_18587 loaded\n",
      "shard_12023 loaded\n",
      "shard_32790 loaded\n",
      "shard_16539 loaded\n",
      "shard_41342 loaded\n",
      "shard_44295 loaded\n",
      "shard_21081 loaded\n",
      "shard_15024 loaded\n",
      "shard_24102 loaded\n",
      "shard_25512 loaded\n",
      "shard_41572 loaded\n",
      "shard_1241 loaded\n",
      "shard_42605 loaded\n",
      "shard_19938 loaded\n",
      "shard_44027 loaded\n",
      "shard_39872 loaded\n",
      "shard_9775 loaded\n",
      "shard_24124 loaded\n",
      "shard_46308 loaded\n",
      "shard_39017 loaded\n",
      "shard_42873 loaded\n",
      "shard_20205 loaded\n",
      "shard_49791 loaded\n",
      "shard_7686 loaded\n",
      "shard_13679 loaded\n",
      "shard_36678 loaded\n",
      "shard_17719 loaded\n",
      "shard_22547 loaded\n",
      "shard_33644 loaded\n",
      "shard_5953 loaded\n",
      "shard_36747 loaded\n",
      "shard_4158 loaded\n",
      "shard_30043 loaded\n",
      "shard_41839 loaded\n",
      "shard_17180 loaded\n",
      "shard_6823 loaded\n",
      "shard_15047 loaded\n",
      "shard_28717 loaded\n",
      "shard_45837 loaded\n",
      "shard_42057 loaded\n",
      "shard_18810 loaded\n",
      "shard_40267 loaded\n",
      "shard_45739 loaded\n",
      "shard_24603 loaded\n",
      "shard_23427 loaded\n",
      "shard_9421 loaded\n",
      "shard_20079 loaded\n",
      "shard_4226 loaded\n",
      "shard_9714 loaded\n",
      "shard_44231 loaded\n",
      "shard_4527 loaded\n",
      "shard_15839 loaded\n",
      "shard_36725 loaded\n",
      "shard_23257 loaded\n",
      "shard_34492 loaded\n",
      "shard_34267 loaded\n",
      "shard_17056 loaded\n",
      "shard_2635 loaded\n",
      "shard_10681 loaded\n",
      "shard_46305 loaded\n",
      "shard_40214 loaded\n",
      "shard_6756 loaded\n",
      "shard_15952 loaded\n",
      "shard_3369 loaded\n",
      "shard_16426 loaded\n",
      "shard_33791 loaded\n",
      "shard_47095 loaded\n",
      "shard_619 loaded\n",
      "shard_5763 loaded\n",
      "shard_35927 loaded\n",
      "shard_1550 loaded\n",
      "shard_43352 loaded\n",
      "shard_22111 loaded\n",
      "shard_28151 loaded\n",
      "shard_18227 loaded\n",
      "shard_44212 loaded\n",
      "shard_14842 loaded\n",
      "shard_31884 loaded\n",
      "shard_47659 loaded\n",
      "shard_28356 loaded\n",
      "shard_28720 loaded\n",
      "shard_8454 loaded\n",
      "shard_1139 loaded\n",
      "shard_44618 loaded\n",
      "shard_10206 loaded\n",
      "shard_8816 loaded\n",
      "shard_30391 loaded\n",
      "shard_16581 loaded\n",
      "shard_24283 loaded\n",
      "shard_26325 loaded\n",
      "shard_27434 loaded\n",
      "shard_28943 loaded\n",
      "shard_33655 loaded\n",
      "shard_18073 loaded\n",
      "shard_21500 loaded\n",
      "shard_2 loaded\n",
      "shard_20381 loaded\n",
      "shard_47085 loaded\n",
      "shard_23228 loaded\n",
      "shard_35173 loaded\n",
      "shard_5077 loaded\n",
      "shard_47735 loaded\n",
      "shard_33403 loaded\n",
      "shard_35375 loaded\n",
      "shard_43413 loaded\n",
      "shard_38561 loaded\n",
      "shard_8572 loaded\n",
      "shard_23743 loaded\n",
      "shard_203 loaded\n",
      "shard_45149 loaded\n",
      "shard_44042 loaded\n",
      "shard_38332 loaded\n",
      "shard_2277 loaded\n",
      "shard_19581 loaded\n",
      "shard_39943 loaded\n",
      "shard_48891 loaded\n",
      "shard_22730 loaded\n",
      "shard_39338 loaded\n",
      "shard_47544 loaded\n",
      "shard_37047 loaded\n",
      "shard_24627 loaded\n",
      "shard_33232 loaded\n",
      "shard_14919 loaded\n",
      "shard_18490 loaded\n",
      "shard_1232 loaded\n",
      "shard_22206 loaded\n",
      "shard_17265 loaded\n",
      "shard_41146 loaded\n",
      "shard_13576 loaded\n",
      "shard_16147 loaded\n",
      "shard_10364 loaded\n",
      "shard_44670 loaded\n",
      "shard_3798 loaded\n",
      "shard_24984 loaded\n",
      "shard_38516 loaded\n",
      "shard_22368 loaded\n",
      "shard_16482 loaded\n",
      "shard_40508 loaded\n",
      "shard_5299 loaded\n",
      "shard_47296 loaded\n",
      "shard_19200 loaded\n",
      "shard_40160 loaded\n",
      "shard_25471 loaded\n",
      "shard_1303 loaded\n",
      "shard_46808 loaded\n",
      "shard_40299 loaded\n",
      "shard_4183 loaded\n",
      "shard_40056 loaded\n",
      "shard_30111 loaded\n",
      "shard_40420 loaded\n",
      "shard_4137 loaded\n",
      "shard_48418 loaded\n",
      "shard_33902 loaded\n",
      "shard_34742 loaded\n",
      "shard_27484 loaded\n",
      "shard_29867 loaded\n",
      "shard_42277 loaded\n",
      "shard_42422 loaded\n",
      "shard_31458 loaded\n",
      "shard_26995 loaded\n",
      "shard_12180 loaded\n",
      "shard_11288 loaded\n",
      "shard_44264 loaded\n",
      "shard_29091 loaded\n",
      "shard_47886 loaded\n",
      "shard_8407 loaded\n",
      "shard_39810 loaded\n",
      "shard_25832 loaded\n",
      "shard_19439 loaded\n",
      "shard_22531 loaded\n",
      "shard_35804 loaded\n",
      "shard_47469 loaded\n",
      "shard_39360 loaded\n",
      "shard_39628 loaded\n",
      "shard_4814 loaded\n",
      "shard_25702 loaded\n",
      "shard_28577 loaded\n",
      "shard_1545 loaded\n",
      "shard_42956 loaded\n",
      "shard_29125 loaded\n",
      "shard_20958 loaded\n",
      "shard_3101 loaded\n",
      "shard_12076 loaded\n",
      "shard_38423 loaded\n",
      "shard_26817 loaded\n",
      "shard_25701 loaded\n",
      "shard_19311 loaded\n",
      "shard_14865 loaded\n",
      "shard_39721 loaded\n",
      "shard_38477 loaded\n",
      "shard_10968 loaded\n",
      "shard_14019 loaded\n",
      "shard_31365 loaded\n",
      "shard_24108 loaded\n",
      "shard_45195 loaded\n",
      "shard_32950 loaded\n",
      "shard_41927 loaded\n",
      "shard_18717 loaded\n",
      "shard_6992 loaded\n",
      "shard_22403 loaded\n",
      "shard_16825 loaded\n",
      "shard_11628 loaded\n",
      "shard_38891 loaded\n",
      "shard_22934 loaded\n",
      "shard_22616 loaded\n",
      "shard_8997 loaded\n",
      "shard_5730 loaded\n",
      "shard_47377 loaded\n",
      "shard_44035 loaded\n",
      "shard_23232 loaded\n",
      "shard_334 loaded\n",
      "shard_47027 loaded\n",
      "shard_442 loaded\n",
      "shard_696 loaded\n",
      "shard_9345 loaded\n",
      "shard_4497 loaded\n",
      "shard_22394 loaded\n",
      "shard_23059 loaded\n",
      "shard_42944 loaded\n",
      "shard_36101 loaded\n",
      "shard_24716 loaded\n",
      "shard_16181 loaded\n",
      "shard_27402 loaded\n",
      "shard_45223 loaded\n",
      "shard_30782 loaded\n",
      "shard_31868 loaded\n",
      "shard_36293 loaded\n",
      "shard_9509 loaded\n",
      "shard_18802 loaded\n",
      "shard_31173 loaded\n",
      "shard_25958 loaded\n",
      "shard_15049 loaded\n",
      "shard_2588 loaded\n",
      "shard_23535 loaded\n",
      "shard_33387 loaded\n",
      "shard_26165 loaded\n",
      "shard_35671 loaded\n",
      "shard_46989 loaded\n",
      "shard_6599 loaded\n",
      "shard_21345 loaded\n",
      "shard_2192 loaded\n",
      "shard_6234 loaded\n",
      "shard_29357 loaded\n",
      "shard_28926 loaded\n",
      "shard_31836 loaded\n",
      "shard_18023 loaded\n",
      "shard_7220 loaded\n",
      "shard_28361 loaded\n",
      "shard_24299 loaded\n",
      "shard_18498 loaded\n",
      "shard_24390 loaded\n",
      "shard_45212 loaded\n",
      "shard_8946 loaded\n",
      "shard_8333 loaded\n",
      "shard_41708 loaded\n",
      "shard_24231 loaded\n",
      "shard_10980 loaded\n",
      "shard_8598 loaded\n",
      "shard_8611 loaded\n",
      "shard_34927 loaded\n",
      "shard_46819 loaded\n",
      "shard_5241 loaded\n",
      "shard_34210 loaded\n",
      "shard_23799 loaded\n",
      "shard_27986 loaded\n",
      "shard_1418 loaded\n",
      "shard_18465 loaded\n",
      "shard_10362 loaded\n",
      "shard_8596 loaded\n",
      "shard_48749 loaded\n",
      "shard_18069 loaded\n",
      "shard_47193 loaded\n",
      "shard_15412 loaded\n",
      "shard_2305 loaded\n",
      "shard_47907 loaded\n",
      "shard_45995 loaded\n",
      "shard_29307 loaded\n",
      "shard_22978 loaded\n",
      "shard_42598 loaded\n",
      "shard_25400 loaded\n",
      "shard_15749 loaded\n",
      "shard_36255 loaded\n",
      "shard_17647 loaded\n",
      "shard_34495 loaded\n",
      "shard_20939 loaded\n",
      "shard_19519 loaded\n",
      "shard_34848 loaded\n",
      "shard_24743 loaded\n",
      "shard_9439 loaded\n",
      "shard_19625 loaded\n",
      "shard_24246 loaded\n",
      "shard_40875 loaded\n",
      "shard_9972 loaded\n",
      "shard_36655 loaded\n",
      "shard_20482 loaded\n",
      "shard_22865 loaded\n",
      "shard_7646 loaded\n",
      "shard_18621 loaded\n",
      "shard_42834 loaded\n",
      "shard_33148 loaded\n",
      "shard_48344 loaded\n",
      "shard_2186 loaded\n",
      "shard_27068 loaded\n",
      "shard_44689 loaded\n",
      "shard_18247 loaded\n",
      "shard_14247 loaded\n",
      "shard_13691 loaded\n",
      "shard_22771 loaded\n",
      "shard_41525 loaded\n",
      "shard_41292 loaded\n",
      "shard_34056 loaded\n",
      "shard_6210 loaded\n",
      "shard_46877 loaded\n",
      "shard_25880 loaded\n",
      "shard_19565 loaded\n",
      "shard_20115 loaded\n",
      "shard_40709 loaded\n",
      "shard_43860 loaded\n",
      "shard_22502 loaded\n",
      "shard_27941 loaded\n",
      "shard_16316 loaded\n",
      "shard_15324 loaded\n",
      "shard_9303 loaded\n",
      "shard_26935 loaded\n",
      "shard_45722 loaded\n",
      "shard_3896 loaded\n",
      "shard_41754 loaded\n",
      "shard_31489 loaded\n",
      "shard_45746 loaded\n",
      "shard_8340 loaded\n",
      "shard_15560 loaded\n",
      "shard_45623 loaded\n",
      "shard_41680 loaded\n",
      "shard_33199 loaded\n",
      "shard_12933 loaded\n",
      "shard_30151 loaded\n",
      "shard_21370 loaded\n",
      "shard_1356 loaded\n",
      "shard_29515 loaded\n",
      "shard_19836 loaded\n",
      "shard_39908 loaded\n",
      "shard_6550 loaded\n",
      "shard_1348 loaded\n",
      "shard_12769 loaded\n",
      "shard_34413 loaded\n",
      "shard_25404 loaded\n",
      "shard_22857 loaded\n",
      "shard_12181 loaded\n",
      "shard_364 loaded\n",
      "shard_5395 loaded\n",
      "shard_15354 loaded\n",
      "shard_238 loaded\n",
      "shard_4349 loaded\n",
      "shard_15023 loaded\n",
      "shard_41000 loaded\n",
      "shard_37071 loaded\n",
      "shard_29371 loaded\n",
      "shard_46514 loaded\n",
      "shard_43336 loaded\n",
      "shard_49086 loaded\n",
      "shard_5483 loaded\n",
      "shard_4519 loaded\n",
      "shard_41480 loaded\n",
      "shard_7853 loaded\n",
      "shard_34437 loaded\n",
      "shard_16307 loaded\n",
      "shard_7129 loaded\n",
      "shard_108 loaded\n",
      "shard_21898 loaded\n",
      "shard_40913 loaded\n",
      "shard_46 loaded\n",
      "shard_8949 loaded\n",
      "shard_45508 loaded\n",
      "shard_34323 loaded\n",
      "shard_49284 loaded\n",
      "shard_14922 loaded\n",
      "shard_35758 loaded\n",
      "shard_9724 loaded\n",
      "shard_45627 loaded\n",
      "shard_24432 loaded\n",
      "shard_3228 loaded\n",
      "shard_26891 loaded\n",
      "shard_31830 loaded\n",
      "shard_3265 loaded\n",
      "shard_28846 loaded\n",
      "shard_31152 loaded\n",
      "shard_9759 loaded\n",
      "shard_33360 loaded\n",
      "shard_47013 loaded\n",
      "shard_42437 loaded\n",
      "shard_9915 loaded\n",
      "shard_10233 loaded\n",
      "shard_48638 loaded\n",
      "shard_46576 loaded\n",
      "shard_26383 loaded\n",
      "shard_5332 loaded\n",
      "shard_12837 loaded\n",
      "shard_40968 loaded\n",
      "shard_21631 loaded\n",
      "shard_36743 loaded\n",
      "shard_11833 loaded\n",
      "shard_37403 loaded\n",
      "shard_37773 loaded\n",
      "shard_40669 loaded\n",
      "shard_14742 loaded\n",
      "shard_28481 loaded\n",
      "shard_29917 loaded\n",
      "shard_29931 loaded\n",
      "shard_35920 loaded\n",
      "shard_24962 loaded\n",
      "shard_20350 loaded\n",
      "shard_28209 loaded\n",
      "shard_46991 loaded\n",
      "shard_47743 loaded\n",
      "shard_13299 loaded\n",
      "shard_23834 loaded\n",
      "shard_47933 loaded\n",
      "shard_32896 loaded\n",
      "shard_33666 loaded\n",
      "shard_14106 loaded\n",
      "shard_7695 loaded\n",
      "shard_8145 loaded\n",
      "shard_8481 loaded\n",
      "shard_2923 loaded\n",
      "shard_27656 loaded\n",
      "shard_7369 loaded\n",
      "shard_31625 loaded\n",
      "shard_38963 loaded\n",
      "shard_3776 loaded\n",
      "shard_34384 loaded\n",
      "shard_11859 loaded\n",
      "shard_33057 loaded\n",
      "shard_42885 loaded\n",
      "shard_39700 loaded\n",
      "shard_13276 loaded\n",
      "shard_18704 loaded\n",
      "shard_37778 loaded\n",
      "shard_44687 loaded\n",
      "shard_20191 loaded\n",
      "shard_41299 loaded\n",
      "shard_22461 loaded\n",
      "shard_4730 loaded\n",
      "shard_46803 loaded\n",
      "shard_8655 loaded\n",
      "shard_31793 loaded\n",
      "shard_29647 loaded\n",
      "shard_33239 loaded\n",
      "shard_4976 loaded\n",
      "shard_5683 loaded\n",
      "shard_11972 loaded\n",
      "shard_10213 loaded\n",
      "shard_7445 loaded\n",
      "shard_4968 loaded\n",
      "shard_49830 loaded\n",
      "shard_16231 loaded\n",
      "shard_3708 loaded\n",
      "shard_43265 loaded\n",
      "shard_45487 loaded\n",
      "shard_14177 loaded\n",
      "shard_35886 loaded\n",
      "shard_25795 loaded\n",
      "shard_35760 loaded\n",
      "shard_48733 loaded\n",
      "shard_2593 loaded\n",
      "shard_49149 loaded\n",
      "shard_13274 loaded\n",
      "shard_37102 loaded\n",
      "shard_49719 loaded\n",
      "shard_30743 loaded\n",
      "shard_31980 loaded\n",
      "shard_4010 loaded\n",
      "shard_6430 loaded\n",
      "shard_20333 loaded\n",
      "shard_12311 loaded\n",
      "shard_48782 loaded\n",
      "shard_30004 loaded\n",
      "shard_43228 loaded\n",
      "shard_19037 loaded\n",
      "shard_32047 loaded\n",
      "shard_28007 loaded\n",
      "shard_1531 loaded\n",
      "shard_16418 loaded\n",
      "shard_27037 loaded\n",
      "shard_35603 loaded\n",
      "shard_41651 loaded\n",
      "shard_8088 loaded\n",
      "shard_16602 loaded\n",
      "shard_36897 loaded\n",
      "shard_10894 loaded\n",
      "shard_3163 loaded\n",
      "shard_24714 loaded\n",
      "shard_29850 loaded\n",
      "shard_19112 loaded\n",
      "shard_12925 loaded\n",
      "shard_31522 loaded\n",
      "shard_10180 loaded\n",
      "shard_48583 loaded\n",
      "shard_946 loaded\n",
      "shard_16222 loaded\n",
      "shard_29596 loaded\n",
      "shard_2960 loaded\n",
      "shard_24494 loaded\n",
      "shard_32871 loaded\n",
      "shard_31354 loaded\n",
      "shard_30103 loaded\n",
      "shard_49074 loaded\n",
      "shard_49714 loaded\n",
      "shard_7483 loaded\n",
      "shard_38225 loaded\n",
      "shard_16612 loaded\n",
      "shard_15668 loaded\n",
      "shard_39057 loaded\n",
      "shard_25637 loaded\n",
      "shard_23764 loaded\n",
      "shard_33298 loaded\n",
      "shard_48256 loaded\n",
      "shard_17008 loaded\n",
      "shard_23628 loaded\n",
      "shard_8095 loaded\n",
      "shard_35321 loaded\n",
      "shard_49846 loaded\n",
      "shard_686 loaded\n",
      "shard_37131 loaded\n",
      "shard_21554 loaded\n",
      "shard_46516 loaded\n",
      "shard_668 loaded\n",
      "shard_11212 loaded\n",
      "shard_3884 loaded\n",
      "shard_5628 loaded\n",
      "shard_43991 loaded\n",
      "shard_45432 loaded\n",
      "shard_40713 loaded\n",
      "shard_25902 loaded\n",
      "shard_45253 loaded\n",
      "shard_29366 loaded\n",
      "shard_27287 loaded\n",
      "shard_18160 loaded\n",
      "shard_12318 loaded\n",
      "shard_46402 loaded\n",
      "shard_36802 loaded\n",
      "shard_49755 loaded\n",
      "shard_11140 loaded\n",
      "shard_7880 loaded\n",
      "shard_4564 loaded\n",
      "shard_35706 loaded\n",
      "shard_9283 loaded\n",
      "shard_47281 loaded\n",
      "shard_12974 loaded\n",
      "shard_16388 loaded\n",
      "shard_10594 loaded\n",
      "shard_2728 loaded\n",
      "shard_17466 loaded\n",
      "shard_27609 loaded\n",
      "shard_37142 loaded\n",
      "shard_23471 loaded\n",
      "shard_45046 loaded\n",
      "shard_23287 loaded\n",
      "shard_17648 loaded\n",
      "shard_47325 loaded\n",
      "shard_22576 loaded\n",
      "shard_49848 loaded\n",
      "shard_12986 loaded\n",
      "shard_37549 loaded\n",
      "shard_13226 loaded\n",
      "shard_41329 loaded\n",
      "shard_13628 loaded\n",
      "shard_6059 loaded\n",
      "shard_4662 loaded\n",
      "shard_33949 loaded\n",
      "shard_17846 loaded\n",
      "shard_18355 loaded\n",
      "shard_18799 loaded\n",
      "shard_33249 loaded\n",
      "shard_22067 loaded\n",
      "shard_16078 loaded\n",
      "shard_18392 loaded\n",
      "shard_14405 loaded\n",
      "shard_15617 loaded\n",
      "shard_44175 loaded\n",
      "shard_13027 loaded\n",
      "shard_24612 loaded\n",
      "shard_5008 loaded\n",
      "shard_9489 loaded\n",
      "shard_27715 loaded\n",
      "shard_43485 loaded\n",
      "shard_36176 loaded\n",
      "shard_25467 loaded\n",
      "shard_42091 loaded\n",
      "shard_9335 loaded\n",
      "shard_34919 loaded\n",
      "shard_49777 loaded\n",
      "shard_2464 loaded\n",
      "shard_48662 loaded\n",
      "shard_15570 loaded\n",
      "shard_28551 loaded\n",
      "shard_6362 loaded\n",
      "shard_9332 loaded\n",
      "shard_5572 loaded\n",
      "shard_46054 loaded\n",
      "shard_10048 loaded\n",
      "shard_45486 loaded\n",
      "shard_49329 loaded\n",
      "shard_33911 loaded\n",
      "shard_41402 loaded\n",
      "shard_49103 loaded\n",
      "shard_17254 loaded\n",
      "shard_25910 loaded\n",
      "shard_100 loaded\n",
      "shard_47191 loaded\n",
      "shard_27871 loaded\n",
      "shard_40951 loaded\n",
      "shard_12751 loaded\n",
      "shard_45269 loaded\n",
      "shard_40541 loaded\n",
      "shard_13663 loaded\n",
      "shard_30114 loaded\n",
      "shard_43063 loaded\n",
      "shard_44106 loaded\n",
      "shard_26482 loaded\n",
      "shard_30844 loaded\n",
      "shard_42011 loaded\n",
      "shard_1166 loaded\n",
      "shard_25863 loaded\n",
      "shard_49221 loaded\n",
      "shard_37615 loaded\n",
      "shard_14918 loaded\n",
      "shard_40049 loaded\n",
      "shard_3814 loaded\n",
      "shard_8746 loaded\n",
      "shard_19772 loaded\n",
      "shard_27233 loaded\n",
      "shard_17662 loaded\n",
      "shard_48795 loaded\n",
      "shard_36395 loaded\n",
      "shard_34973 loaded\n",
      "shard_8972 loaded\n",
      "shard_48367 loaded\n",
      "shard_37181 loaded\n",
      "shard_29678 loaded\n",
      "shard_30779 loaded\n",
      "shard_34493 loaded\n",
      "shard_40039 loaded\n",
      "shard_25507 loaded\n",
      "shard_15619 loaded\n",
      "shard_23899 loaded\n",
      "shard_30414 loaded\n",
      "shard_6006 loaded\n",
      "shard_46811 loaded\n",
      "shard_15318 loaded\n",
      "shard_45824 loaded\n",
      "shard_4099 loaded\n",
      "shard_7325 loaded\n",
      "shard_14119 loaded\n",
      "shard_29895 loaded\n",
      "shard_13638 loaded\n",
      "shard_41975 loaded\n",
      "shard_34340 loaded\n",
      "shard_43696 loaded\n",
      "shard_2731 loaded\n",
      "shard_15875 loaded\n",
      "shard_44451 loaded\n",
      "shard_17052 loaded\n",
      "shard_1674 loaded\n",
      "shard_26073 loaded\n",
      "shard_21814 loaded\n",
      "shard_25113 loaded\n",
      "shard_9720 loaded\n",
      "shard_42344 loaded\n",
      "shard_21469 loaded\n",
      "shard_11748 loaded\n",
      "shard_22100 loaded\n",
      "shard_40085 loaded\n",
      "shard_12977 loaded\n",
      "shard_20623 loaded\n",
      "shard_31032 loaded\n",
      "shard_26562 loaded\n",
      "shard_22582 loaded\n",
      "shard_608 loaded\n",
      "shard_23087 loaded\n",
      "shard_34112 loaded\n",
      "shard_25118 loaded\n",
      "shard_18882 loaded\n",
      "shard_13594 loaded\n",
      "shard_32028 loaded\n",
      "shard_15394 loaded\n",
      "shard_13116 loaded\n",
      "shard_25350 loaded\n",
      "shard_15836 loaded\n",
      "shard_15871 loaded\n",
      "shard_8851 loaded\n",
      "shard_16795 loaded\n",
      "shard_45874 loaded\n",
      "shard_18630 loaded\n",
      "shard_35497 loaded\n",
      "shard_39200 loaded\n",
      "shard_46186 loaded\n",
      "shard_21122 loaded\n",
      "shard_45887 loaded\n",
      "shard_41891 loaded\n",
      "shard_32219 loaded\n",
      "shard_45322 loaded\n",
      "shard_31005 loaded\n",
      "shard_13540 loaded\n",
      "shard_20577 loaded\n",
      "shard_7753 loaded\n",
      "shard_3712 loaded\n",
      "shard_17255 loaded\n",
      "shard_4595 loaded\n",
      "shard_35660 loaded\n",
      "shard_37720 loaded\n",
      "shard_20132 loaded\n",
      "shard_29534 loaded\n",
      "shard_9496 loaded\n",
      "shard_39968 loaded\n",
      "shard_43094 loaded\n",
      "shard_44060 loaded\n",
      "shard_43829 loaded\n",
      "shard_15980 loaded\n",
      "shard_5853 loaded\n",
      "shard_36428 loaded\n",
      "shard_12903 loaded\n",
      "shard_35290 loaded\n",
      "shard_18876 loaded\n",
      "shard_13353 loaded\n",
      "shard_5 loaded\n",
      "shard_12788 loaded\n",
      "shard_47155 loaded\n",
      "shard_7509 loaded\n",
      "shard_17584 loaded\n",
      "shard_42679 loaded\n",
      "shard_38793 loaded\n",
      "shard_14445 loaded\n",
      "shard_6691 loaded\n",
      "shard_19702 loaded\n",
      "shard_13338 loaded\n",
      "shard_34453 loaded\n",
      "shard_19594 loaded\n",
      "shard_21079 loaded\n",
      "shard_6274 loaded\n",
      "shard_46103 loaded\n",
      "shard_15751 loaded\n",
      "shard_27224 loaded\n",
      "shard_8590 loaded\n",
      "shard_10553 loaded\n",
      "shard_37292 loaded\n",
      "shard_32909 loaded\n",
      "shard_34960 loaded\n",
      "shard_23081 loaded\n",
      "shard_8501 loaded\n",
      "shard_21417 loaded\n",
      "shard_2669 loaded\n",
      "shard_12700 loaded\n",
      "shard_20379 loaded\n",
      "shard_37272 loaded\n",
      "shard_21994 loaded\n",
      "shard_6731 loaded\n",
      "shard_44688 loaded\n",
      "shard_2320 loaded\n",
      "shard_15172 loaded\n",
      "shard_27376 loaded\n",
      "shard_26197 loaded\n",
      "shard_22788 loaded\n",
      "shard_8880 loaded\n",
      "shard_28358 loaded\n",
      "shard_41088 loaded\n",
      "shard_30179 loaded\n",
      "shard_11489 loaded\n",
      "shard_10706 loaded\n",
      "shard_21352 loaded\n",
      "shard_26269 loaded\n",
      "shard_20061 loaded\n",
      "shard_48166 loaded\n",
      "shard_15182 loaded\n",
      "shard_43317 loaded\n",
      "shard_47224 loaded\n",
      "shard_20090 loaded\n",
      "shard_43881 loaded\n",
      "shard_3835 loaded\n",
      "shard_2118 loaded\n",
      "shard_45912 loaded\n",
      "shard_2351 loaded\n",
      "shard_9290 loaded\n",
      "shard_25283 loaded\n",
      "shard_21640 loaded\n",
      "shard_36073 loaded\n",
      "shard_18793 loaded\n",
      "shard_27298 loaded\n",
      "shard_48197 loaded\n",
      "shard_3723 loaded\n",
      "shard_6873 loaded\n",
      "shard_5487 loaded\n",
      "shard_21813 loaded\n",
      "shard_22738 loaded\n",
      "shard_11423 loaded\n",
      "shard_26103 loaded\n",
      "shard_38601 loaded\n",
      "shard_37803 loaded\n",
      "shard_49663 loaded\n",
      "shard_39471 loaded\n",
      "shard_27280 loaded\n",
      "shard_22047 loaded\n",
      "shard_24787 loaded\n",
      "shard_42259 loaded\n",
      "shard_14464 loaded\n",
      "shard_22361 loaded\n",
      "shard_28466 loaded\n",
      "shard_21878 loaded\n",
      "shard_33904 loaded\n",
      "shard_40720 loaded\n",
      "shard_8259 loaded\n",
      "shard_4214 loaded\n",
      "shard_35750 loaded\n",
      "shard_1846 loaded\n",
      "shard_25407 loaded\n",
      "shard_15196 loaded\n",
      "shard_35197 loaded\n",
      "shard_40239 loaded\n",
      "shard_37503 loaded\n",
      "shard_48147 loaded\n",
      "shard_34259 loaded\n",
      "shard_45885 loaded\n",
      "shard_13303 loaded\n",
      "shard_17716 loaded\n",
      "shard_47038 loaded\n",
      "shard_83 loaded\n",
      "shard_1843 loaded\n",
      "shard_14899 loaded\n",
      "shard_36631 loaded\n",
      "shard_35987 loaded\n",
      "shard_14041 loaded\n",
      "shard_34578 loaded\n",
      "shard_39203 loaded\n",
      "shard_10079 loaded\n",
      "shard_32352 loaded\n",
      "shard_38257 loaded\n",
      "shard_43731 loaded\n",
      "shard_22078 loaded\n",
      "shard_42921 loaded\n",
      "shard_17657 loaded\n",
      "shard_724 loaded\n",
      "shard_9505 loaded\n",
      "shard_45883 loaded\n",
      "shard_8928 loaded\n",
      "shard_25189 loaded\n",
      "shard_30565 loaded\n",
      "shard_4470 loaded\n",
      "shard_6232 loaded\n",
      "shard_41546 loaded\n",
      "shard_1125 loaded\n",
      "shard_9908 loaded\n",
      "shard_18832 loaded\n",
      "shard_4587 loaded\n",
      "shard_2240 loaded\n",
      "shard_9352 loaded\n",
      "shard_8263 loaded\n",
      "shard_28071 loaded\n",
      "shard_20403 loaded\n",
      "shard_23302 loaded\n",
      "shard_33619 loaded\n",
      "shard_17728 loaded\n",
      "shard_44220 loaded\n",
      "shard_33002 loaded\n",
      "shard_42018 loaded\n",
      "shard_46981 loaded\n",
      "shard_5041 loaded\n",
      "shard_42251 loaded\n",
      "shard_18886 loaded\n",
      "shard_19356 loaded\n",
      "shard_27035 loaded\n",
      "shard_48565 loaded\n",
      "shard_6791 loaded\n",
      "shard_47242 loaded\n",
      "shard_8857 loaded\n",
      "shard_38091 loaded\n",
      "shard_22749 loaded\n",
      "shard_14149 loaded\n",
      "shard_48313 loaded\n",
      "shard_45008 loaded\n",
      "shard_29622 loaded\n",
      "shard_47086 loaded\n",
      "shard_47930 loaded\n",
      "shard_10224 loaded\n",
      "shard_31231 loaded\n",
      "shard_49751 loaded\n",
      "shard_9396 loaded\n",
      "shard_19627 loaded\n",
      "shard_48414 loaded\n",
      "shard_27605 loaded\n",
      "shard_40256 loaded\n",
      "shard_39031 loaded\n",
      "shard_12924 loaded\n",
      "shard_3485 loaded\n",
      "shard_43172 loaded\n",
      "shard_21770 loaded\n",
      "shard_44241 loaded\n",
      "shard_9559 loaded\n",
      "shard_35142 loaded\n",
      "shard_40690 loaded\n",
      "shard_44930 loaded\n",
      "shard_10122 loaded\n",
      "shard_22138 loaded\n",
      "shard_21658 loaded\n",
      "shard_10319 loaded\n",
      "shard_24767 loaded\n",
      "shard_13748 loaded\n",
      "shard_39723 loaded\n",
      "shard_40795 loaded\n",
      "shard_36836 loaded\n",
      "shard_45455 loaded\n",
      "shard_20347 loaded\n",
      "shard_22715 loaded\n",
      "shard_38015 loaded\n",
      "shard_37709 loaded\n",
      "shard_25278 loaded\n",
      "shard_19997 loaded\n",
      "shard_19336 loaded\n",
      "shard_7007 loaded\n",
      "shard_40696 loaded\n",
      "shard_37558 loaded\n",
      "shard_26491 loaded\n",
      "shard_21319 loaded\n",
      "shard_23999 loaded\n",
      "shard_26059 loaded\n",
      "shard_39547 loaded\n",
      "shard_33248 loaded\n",
      "shard_47223 loaded\n",
      "shard_28134 loaded\n",
      "shard_25421 loaded\n",
      "shard_17604 loaded\n",
      "shard_13840 loaded\n",
      "shard_7851 loaded\n",
      "shard_12594 loaded\n",
      "shard_19120 loaded\n",
      "shard_30716 loaded\n",
      "shard_12868 loaded\n",
      "shard_37100 loaded\n",
      "shard_6499 loaded\n",
      "shard_46685 loaded\n",
      "shard_2384 loaded\n",
      "shard_6271 loaded\n",
      "shard_48591 loaded\n",
      "shard_7083 loaded\n",
      "shard_220 loaded\n",
      "shard_44195 loaded\n",
      "shard_49712 loaded\n",
      "shard_9238 loaded\n",
      "shard_22287 loaded\n",
      "shard_22504 loaded\n",
      "shard_20805 loaded\n",
      "shard_2117 loaded\n",
      "shard_46788 loaded\n",
      "shard_46107 loaded\n",
      "shard_49928 loaded\n",
      "shard_3824 loaded\n",
      "shard_30217 loaded\n",
      "shard_26039 loaded\n",
      "shard_24987 loaded\n",
      "shard_15540 loaded\n",
      "shard_4947 loaded\n",
      "shard_16070 loaded\n",
      "shard_45786 loaded\n",
      "shard_25213 loaded\n",
      "shard_19979 loaded\n",
      "shard_23324 loaded\n",
      "shard_42242 loaded\n",
      "shard_22844 loaded\n",
      "shard_6477 loaded\n",
      "shard_3310 loaded\n",
      "shard_46219 loaded\n",
      "shard_42857 loaded\n",
      "shard_16509 loaded\n",
      "shard_9579 loaded\n",
      "shard_8405 loaded\n",
      "shard_592 loaded\n",
      "shard_20114 loaded\n",
      "shard_6571 loaded\n",
      "shard_11720 loaded\n",
      "shard_2083 loaded\n",
      "shard_18581 loaded\n",
      "shard_32564 loaded\n",
      "shard_34469 loaded\n",
      "shard_5985 loaded\n",
      "shard_31589 loaded\n",
      "shard_11975 loaded\n",
      "shard_38303 loaded\n",
      "shard_35429 loaded\n",
      "shard_2745 loaded\n",
      "shard_10643 loaded\n",
      "shard_33425 loaded\n",
      "shard_17860 loaded\n",
      "shard_29417 loaded\n",
      "shard_17053 loaded\n",
      "shard_31672 loaded\n",
      "shard_24694 loaded\n",
      "shard_9404 loaded\n",
      "shard_35145 loaded\n",
      "shard_13593 loaded\n",
      "shard_24784 loaded\n",
      "shard_27606 loaded\n",
      "shard_4443 loaded\n",
      "shard_45114 loaded\n",
      "shard_36045 loaded\n",
      "shard_42311 loaded\n",
      "shard_26602 loaded\n",
      "shard_477 loaded\n",
      "shard_47268 loaded\n",
      "shard_26434 loaded\n",
      "shard_2680 loaded\n",
      "shard_28859 loaded\n",
      "shard_44834 loaded\n",
      "shard_3294 loaded\n",
      "shard_46534 loaded\n",
      "shard_33145 loaded\n",
      "shard_45359 loaded\n",
      "shard_3074 loaded\n",
      "shard_45422 loaded\n",
      "shard_1396 loaded\n",
      "shard_34800 loaded\n",
      "shard_2653 loaded\n",
      "shard_17588 loaded\n",
      "shard_17939 loaded\n",
      "shard_9018 loaded\n",
      "shard_14981 loaded\n",
      "shard_8986 loaded\n",
      "shard_44004 loaded\n",
      "shard_49397 loaded\n",
      "shard_34434 loaded\n",
      "shard_32573 loaded\n",
      "shard_17101 loaded\n",
      "shard_33334 loaded\n",
      "shard_43855 loaded\n",
      "shard_1114 loaded\n",
      "shard_49604 loaded\n",
      "shard_25373 loaded\n",
      "shard_25241 loaded\n",
      "shard_458 loaded\n",
      "shard_293 loaded\n",
      "shard_41341 loaded\n",
      "shard_23825 loaded\n",
      "shard_48510 loaded\n",
      "shard_49297 loaded\n",
      "shard_1084 loaded\n",
      "shard_31562 loaded\n",
      "shard_741 loaded\n",
      "shard_2648 loaded\n",
      "shard_22917 loaded\n",
      "shard_405 loaded\n",
      "shard_19758 loaded\n",
      "shard_6302 loaded\n",
      "shard_802 loaded\n",
      "shard_10674 loaded\n",
      "shard_28047 loaded\n",
      "shard_16446 loaded\n",
      "shard_47007 loaded\n",
      "shard_35956 loaded\n",
      "shard_13509 loaded\n",
      "shard_8652 loaded\n",
      "shard_24656 loaded\n",
      "shard_14900 loaded\n",
      "shard_4939 loaded\n",
      "shard_2935 loaded\n",
      "shard_27853 loaded\n",
      "shard_20174 loaded\n",
      "shard_30282 loaded\n",
      "shard_13745 loaded\n",
      "shard_45915 loaded\n",
      "shard_9726 loaded\n",
      "shard_46132 loaded\n",
      "shard_5215 loaded\n",
      "shard_33399 loaded\n",
      "shard_35875 loaded\n",
      "shard_32584 loaded\n",
      "shard_7811 loaded\n",
      "shard_3391 loaded\n",
      "shard_4776 loaded\n",
      "shard_28288 loaded\n",
      "shard_2016 loaded\n",
      "shard_19992 loaded\n",
      "shard_37008 loaded\n",
      "shard_36492 loaded\n",
      "shard_46273 loaded\n",
      "shard_12608 loaded\n",
      "shard_29090 loaded\n",
      "shard_3279 loaded\n",
      "shard_33130 loaded\n",
      "shard_18481 loaded\n",
      "shard_7065 loaded\n",
      "shard_15965 loaded\n",
      "shard_42475 loaded\n",
      "shard_29406 loaded\n",
      "shard_47935 loaded\n",
      "shard_35936 loaded\n",
      "shard_1820 loaded\n",
      "shard_25237 loaded\n",
      "shard_28764 loaded\n",
      "shard_25997 loaded\n",
      "shard_9584 loaded\n",
      "shard_10457 loaded\n",
      "shard_14830 loaded\n",
      "shard_7536 loaded\n",
      "shard_9131 loaded\n",
      "shard_11040 loaded\n",
      "shard_38523 loaded\n",
      "shard_34465 loaded\n",
      "shard_34008 loaded\n",
      "shard_18855 loaded\n",
      "shard_28538 loaded\n",
      "shard_18526 loaded\n",
      "shard_9272 loaded\n",
      "shard_21881 loaded\n",
      "shard_40051 loaded\n",
      "shard_34798 loaded\n",
      "shard_48905 loaded\n",
      "shard_27883 loaded\n",
      "shard_6972 loaded\n",
      "shard_16585 loaded\n",
      "shard_27355 loaded\n",
      "shard_40513 loaded\n",
      "shard_44140 loaded\n",
      "shard_20322 loaded\n",
      "shard_45170 loaded\n",
      "shard_6383 loaded\n",
      "shard_8982 loaded\n",
      "shard_23407 loaded\n",
      "shard_13567 loaded\n",
      "shard_9456 loaded\n",
      "shard_40687 loaded\n",
      "shard_38304 loaded\n",
      "shard_33760 loaded\n",
      "shard_7238 loaded\n",
      "shard_42184 loaded\n",
      "shard_5016 loaded\n",
      "shard_11770 loaded\n",
      "shard_19033 loaded\n",
      "shard_45729 loaded\n",
      "shard_3974 loaded\n",
      "shard_47851 loaded\n",
      "shard_25406 loaded\n",
      "shard_36116 loaded\n",
      "shard_25319 loaded\n",
      "shard_17548 loaded\n",
      "shard_7628 loaded\n",
      "shard_2201 loaded\n",
      "shard_35335 loaded\n",
      "shard_18302 loaded\n",
      "shard_6690 loaded\n",
      "shard_8940 loaded\n",
      "shard_42506 loaded\n",
      "shard_42703 loaded\n",
      "shard_35129 loaded\n",
      "shard_37061 loaded\n",
      "shard_30961 loaded\n",
      "shard_31647 loaded\n",
      "shard_936 loaded\n",
      "shard_2909 loaded\n",
      "shard_38239 loaded\n",
      "shard_41291 loaded\n",
      "shard_11682 loaded\n",
      "shard_42961 loaded\n",
      "shard_9427 loaded\n",
      "shard_24526 loaded\n",
      "shard_17700 loaded\n",
      "shard_17609 loaded\n",
      "shard_16271 loaded\n",
      "shard_30083 loaded\n",
      "shard_34796 loaded\n",
      "shard_7470 loaded\n",
      "shard_38313 loaded\n",
      "shard_12334 loaded\n",
      "shard_28492 loaded\n",
      "shard_19080 loaded\n",
      "shard_3819 loaded\n",
      "shard_16119 loaded\n",
      "shard_49638 loaded\n",
      "shard_14564 loaded\n",
      "shard_16586 loaded\n",
      "shard_174 loaded\n",
      "shard_5621 loaded\n",
      "shard_20431 loaded\n",
      "shard_25777 loaded\n",
      "shard_22725 loaded\n",
      "shard_48085 loaded\n",
      "shard_34838 loaded\n",
      "shard_15206 loaded\n",
      "shard_7634 loaded\n",
      "shard_49982 loaded\n",
      "shard_14016 loaded\n",
      "shard_46210 loaded\n",
      "shard_18058 loaded\n",
      "shard_46250 loaded\n",
      "shard_17126 loaded\n",
      "shard_8653 loaded\n",
      "shard_928 loaded\n",
      "shard_13363 loaded\n",
      "shard_44455 loaded\n",
      "shard_18685 loaded\n",
      "shard_45924 loaded\n",
      "shard_36637 loaded\n",
      "shard_25346 loaded\n",
      "shard_34646 loaded\n",
      "shard_43436 loaded\n",
      "shard_3842 loaded\n",
      "shard_28914 loaded\n",
      "shard_326 loaded\n",
      "shard_6605 loaded\n",
      "shard_47164 loaded\n",
      "shard_30203 loaded\n",
      "shard_5489 loaded\n",
      "shard_26653 loaded\n",
      "shard_28200 loaded\n",
      "shard_46023 loaded\n",
      "shard_28176 loaded\n",
      "shard_20001 loaded\n",
      "shard_29057 loaded\n",
      "shard_17908 loaded\n",
      "shard_7041 loaded\n",
      "shard_49024 loaded\n",
      "shard_4687 loaded\n",
      "shard_29265 loaded\n",
      "shard_20441 loaded\n",
      "shard_23890 loaded\n",
      "shard_37901 loaded\n",
      "shard_33704 loaded\n",
      "shard_48424 loaded\n",
      "shard_5268 loaded\n",
      "shard_46449 loaded\n",
      "shard_33525 loaded\n",
      "shard_22224 loaded\n",
      "shard_41377 loaded\n",
      "shard_5188 loaded\n",
      "shard_10372 loaded\n",
      "shard_44055 loaded\n",
      "shard_15030 loaded\n",
      "shard_44655 loaded\n",
      "shard_30601 loaded\n",
      "shard_4379 loaded\n",
      "shard_33324 loaded\n",
      "shard_35831 loaded\n",
      "shard_18758 loaded\n",
      "shard_24742 loaded\n",
      "shard_29215 loaded\n",
      "shard_10450 loaded\n",
      "shard_17037 loaded\n",
      "shard_19129 loaded\n",
      "shard_37590 loaded\n",
      "shard_5000 loaded\n",
      "shard_34791 loaded\n",
      "shard_4995 loaded\n",
      "shard_42750 loaded\n",
      "shard_14847 loaded\n",
      "shard_9117 loaded\n",
      "shard_48919 loaded\n",
      "shard_27013 loaded\n",
      "shard_43831 loaded\n",
      "shard_9441 loaded\n",
      "shard_7078 loaded\n",
      "shard_35667 loaded\n",
      "shard_5828 loaded\n",
      "shard_20183 loaded\n",
      "shard_40550 loaded\n",
      "shard_19420 loaded\n",
      "shard_26061 loaded\n",
      "shard_12115 loaded\n",
      "shard_29349 loaded\n",
      "shard_35634 loaded\n",
      "shard_42332 loaded\n",
      "shard_11874 loaded\n",
      "shard_948 loaded\n",
      "shard_21743 loaded\n",
      "shard_32907 loaded\n",
      "shard_26308 loaded\n",
      "shard_41264 loaded\n",
      "shard_43491 loaded\n",
      "shard_23355 loaded\n",
      "shard_18011 loaded\n",
      "shard_17567 loaded\n",
      "shard_26358 loaded\n",
      "shard_36609 loaded\n",
      "shard_14108 loaded\n",
      "shard_43239 loaded\n",
      "shard_33816 loaded\n",
      "shard_25928 loaded\n",
      "shard_6625 loaded\n",
      "shard_49490 loaded\n",
      "shard_22248 loaded\n",
      "shard_26394 loaded\n",
      "shard_27158 loaded\n",
      "shard_8430 loaded\n",
      "shard_10507 loaded\n",
      "shard_31418 loaded\n",
      "shard_37613 loaded\n",
      "shard_14577 loaded\n",
      "shard_17961 loaded\n",
      "shard_45700 loaded\n",
      "shard_22735 loaded\n",
      "shard_16398 loaded\n",
      "shard_35732 loaded\n",
      "shard_6723 loaded\n",
      "shard_48750 loaded\n",
      "shard_25169 loaded\n",
      "shard_2357 loaded\n",
      "shard_38146 loaded\n",
      "shard_9700 loaded\n",
      "shard_19378 loaded\n",
      "shard_36902 loaded\n",
      "shard_4699 loaded\n",
      "shard_13022 loaded\n",
      "shard_15058 loaded\n",
      "shard_3527 loaded\n",
      "shard_37154 loaded\n",
      "shard_21753 loaded\n",
      "shard_9729 loaded\n",
      "shard_34373 loaded\n",
      "shard_32765 loaded\n",
      "shard_19343 loaded\n",
      "shard_25465 loaded\n",
      "shard_19149 loaded\n",
      "shard_5462 loaded\n",
      "shard_32660 loaded\n",
      "shard_40444 loaded\n",
      "shard_11342 loaded\n",
      "shard_25917 loaded\n",
      "shard_33375 loaded\n",
      "shard_36351 loaded\n",
      "shard_39237 loaded\n",
      "shard_48677 loaded\n",
      "shard_29816 loaded\n",
      "shard_2445 loaded\n",
      "shard_6650 loaded\n",
      "shard_40132 loaded\n",
      "shard_14073 loaded\n",
      "shard_28353 loaded\n",
      "shard_43959 loaded\n",
      "shard_28635 loaded\n",
      "shard_11830 loaded\n",
      "shard_29200 loaded\n",
      "shard_48668 loaded\n",
      "shard_37608 loaded\n",
      "shard_9750 loaded\n",
      "shard_33994 loaded\n",
      "shard_11777 loaded\n",
      "shard_42473 loaded\n",
      "shard_32605 loaded\n",
      "shard_43243 loaded\n",
      "shard_38947 loaded\n",
      "shard_45999 loaded\n",
      "shard_41443 loaded\n",
      "shard_35866 loaded\n",
      "shard_23115 loaded\n",
      "shard_18664 loaded\n",
      "shard_13866 loaded\n",
      "shard_28847 loaded\n",
      "shard_28688 loaded\n",
      "shard_13548 loaded\n",
      "shard_3203 loaded\n",
      "shard_44162 loaded\n",
      "shard_12785 loaded\n",
      "shard_45533 loaded\n",
      "shard_28211 loaded\n",
      "shard_33726 loaded\n",
      "shard_27488 loaded\n",
      "shard_2294 loaded\n",
      "shard_17248 loaded\n",
      "shard_23395 loaded\n",
      "shard_1052 loaded\n",
      "shard_45688 loaded\n",
      "shard_14851 loaded\n",
      "shard_36435 loaded\n",
      "shard_36593 loaded\n",
      "shard_24733 loaded\n",
      "shard_1608 loaded\n",
      "shard_15398 loaded\n",
      "shard_9639 loaded\n",
      "shard_42071 loaded\n",
      "shard_23657 loaded\n",
      "shard_46092 loaded\n",
      "shard_7211 loaded\n",
      "shard_9459 loaded\n",
      "shard_46590 loaded\n",
      "shard_18674 loaded\n",
      "shard_4452 loaded\n",
      "shard_15584 loaded\n",
      "shard_214 loaded\n",
      "shard_45709 loaded\n",
      "shard_14299 loaded\n",
      "shard_29172 loaded\n",
      "shard_37971 loaded\n",
      "shard_11691 loaded\n",
      "shard_45324 loaded\n",
      "shard_10411 loaded\n",
      "shard_27683 loaded\n",
      "shard_23125 loaded\n",
      "shard_49065 loaded\n",
      "shard_12854 loaded\n",
      "shard_8064 loaded\n",
      "shard_25357 loaded\n",
      "shard_11006 loaded\n",
      "shard_31041 loaded\n",
      "shard_11241 loaded\n",
      "shard_2152 loaded\n",
      "shard_26578 loaded\n",
      "shard_18946 loaded\n",
      "shard_29968 loaded\n",
      "shard_41911 loaded\n",
      "shard_33829 loaded\n",
      "shard_22744 loaded\n",
      "shard_11747 loaded\n",
      "shard_2781 loaded\n",
      "shard_5223 loaded\n",
      "shard_22957 loaded\n",
      "shard_17098 loaded\n",
      "shard_19363 loaded\n",
      "shard_11304 loaded\n",
      "shard_34902 loaded\n",
      "shard_2658 loaded\n",
      "shard_36575 loaded\n",
      "shard_39284 loaded\n",
      "shard_10108 loaded\n",
      "shard_402 loaded\n",
      "shard_39220 loaded\n",
      "shard_7222 loaded\n",
      "shard_25956 loaded\n",
      "shard_1823 loaded\n",
      "shard_10487 loaded\n",
      "shard_46592 loaded\n",
      "shard_22391 loaded\n",
      "shard_22075 loaded\n",
      "shard_12274 loaded\n",
      "shard_19101 loaded\n",
      "shard_35052 loaded\n",
      "shard_21866 loaded\n",
      "shard_2179 loaded\n",
      "shard_14727 loaded\n",
      "shard_38380 loaded\n",
      "shard_14124 loaded\n",
      "shard_27085 loaded\n",
      "shard_35585 loaded\n",
      "shard_13979 loaded\n",
      "shard_28122 loaded\n",
      "shard_20634 loaded\n",
      "shard_11765 loaded\n",
      "shard_13478 loaded\n",
      "shard_47962 loaded\n",
      "shard_44424 loaded\n",
      "shard_39985 loaded\n",
      "shard_13369 loaded\n",
      "shard_35713 loaded\n",
      "shard_32978 loaded\n",
      "shard_5867 loaded\n",
      "shard_18215 loaded\n",
      "shard_23035 loaded\n",
      "shard_9183 loaded\n",
      "shard_7716 loaded\n",
      "shard_21875 loaded\n",
      "shard_13198 loaded\n",
      "shard_41953 loaded\n",
      "shard_10172 loaded\n",
      "shard_15984 loaded\n",
      "shard_990 loaded\n",
      "shard_24253 loaded\n",
      "shard_34092 loaded\n",
      "shard_35780 loaded\n",
      "shard_43386 loaded\n",
      "shard_27499 loaded\n",
      "shard_16313 loaded\n",
      "shard_45292 loaded\n",
      "shard_38395 loaded\n",
      "shard_26227 loaded\n",
      "shard_36457 loaded\n",
      "shard_36353 loaded\n",
      "shard_27361 loaded\n",
      "shard_33230 loaded\n",
      "shard_30735 loaded\n",
      "shard_5374 loaded\n",
      "shard_24670 loaded\n",
      "shard_45793 loaded\n",
      "shard_8559 loaded\n",
      "shard_5809 loaded\n",
      "shard_22896 loaded\n",
      "shard_16254 loaded\n",
      "shard_38989 loaded\n",
      "shard_44713 loaded\n",
      "shard_18983 loaded\n",
      "shard_29786 loaded\n",
      "shard_16560 loaded\n",
      "shard_36220 loaded\n",
      "shard_16624 loaded\n",
      "shard_35103 loaded\n",
      "shard_13145 loaded\n",
      "shard_16321 loaded\n",
      "shard_39208 loaded\n",
      "shard_46740 loaded\n",
      "shard_13919 loaded\n",
      "shard_29296 loaded\n",
      "shard_35765 loaded\n",
      "shard_28777 loaded\n",
      "shard_40035 loaded\n",
      "shard_28548 loaded\n",
      "shard_32120 loaded\n",
      "shard_1953 loaded\n",
      "shard_16079 loaded\n",
      "shard_463 loaded\n",
      "shard_42143 loaded\n",
      "shard_37718 loaded\n",
      "shard_39058 loaded\n",
      "shard_10332 loaded\n",
      "shard_49298 loaded\n",
      "shard_33032 loaded\n",
      "shard_30540 loaded\n",
      "shard_26085 loaded\n",
      "shard_37118 loaded\n",
      "shard_31170 loaded\n",
      "shard_16663 loaded\n",
      "shard_33180 loaded\n",
      "shard_45611 loaded\n",
      "shard_49551 loaded\n",
      "shard_21000 loaded\n",
      "shard_1748 loaded\n",
      "shard_41989 loaded\n",
      "shard_31213 loaded\n",
      "shard_21146 loaded\n",
      "shard_44464 loaded\n",
      "shard_27170 loaded\n",
      "shard_45963 loaded\n",
      "shard_1785 loaded\n",
      "shard_16622 loaded\n",
      "shard_32937 loaded\n",
      "shard_39672 loaded\n",
      "shard_16409 loaded\n",
      "shard_30220 loaded\n",
      "shard_242 loaded\n",
      "shard_24393 loaded\n",
      "shard_15375 loaded\n",
      "shard_30112 loaded\n",
      "shard_28627 loaded\n",
      "shard_44878 loaded\n",
      "shard_1951 loaded\n",
      "shard_460 loaded\n",
      "shard_14704 loaded\n",
      "shard_37800 loaded\n",
      "shard_49702 loaded\n",
      "shard_17378 loaded\n",
      "shard_49091 loaded\n",
      "shard_20556 loaded\n",
      "shard_11945 loaded\n",
      "shard_30739 loaded\n",
      "shard_21278 loaded\n",
      "shard_7607 loaded\n",
      "shard_33080 loaded\n",
      "shard_39978 loaded\n",
      "shard_2498 loaded\n",
      "shard_8125 loaded\n",
      "shard_34741 loaded\n",
      "shard_10348 loaded\n",
      "shard_28667 loaded\n",
      "shard_3395 loaded\n",
      "shard_38555 loaded\n",
      "shard_42001 loaded\n",
      "shard_20927 loaded\n",
      "shard_49502 loaded\n",
      "shard_34233 loaded\n",
      "shard_7287 loaded\n",
      "shard_25158 loaded\n",
      "shard_12619 loaded\n",
      "shard_23927 loaded\n",
      "shard_46194 loaded\n",
      "shard_1576 loaded\n",
      "shard_14211 loaded\n",
      "shard_2633 loaded\n",
      "shard_5603 loaded\n",
      "shard_15302 loaded\n",
      "shard_21119 loaded\n",
      "shard_7785 loaded\n",
      "shard_3698 loaded\n",
      "shard_27501 loaded\n",
      "shard_1341 loaded\n",
      "shard_40401 loaded\n",
      "shard_39331 loaded\n",
      "shard_16648 loaded\n",
      "shard_6280 loaded\n",
      "shard_28988 loaded\n",
      "shard_21215 loaded\n",
      "shard_25333 loaded\n",
      "shard_28396 loaded\n",
      "shard_43180 loaded\n",
      "shard_3077 loaded\n",
      "shard_43953 loaded\n",
      "shard_5315 loaded\n",
      "shard_28244 loaded\n",
      "shard_26432 loaded\n",
      "shard_40947 loaded\n",
      "shard_40578 loaded\n",
      "shard_26776 loaded\n",
      "shard_21980 loaded\n",
      "shard_25950 loaded\n",
      "shard_32039 loaded\n",
      "shard_12448 loaded\n",
      "shard_22739 loaded\n",
      "shard_22709 loaded\n",
      "shard_36308 loaded\n",
      "shard_7151 loaded\n",
      "shard_41554 loaded\n",
      "shard_28117 loaded\n",
      "shard_11847 loaded\n",
      "shard_42172 loaded\n",
      "shard_20216 loaded\n",
      "shard_38997 loaded\n",
      "shard_17618 loaded\n",
      "shard_40969 loaded\n",
      "shard_9863 loaded\n",
      "shard_35051 loaded\n",
      "shard_20438 loaded\n",
      "shard_40941 loaded\n",
      "shard_18580 loaded\n",
      "shard_45866 loaded\n",
      "shard_9522 loaded\n",
      "shard_2067 loaded\n",
      "shard_4722 loaded\n",
      "shard_23255 loaded\n",
      "shard_29021 loaded\n",
      "shard_8040 loaded\n",
      "shard_41045 loaded\n",
      "shard_28461 loaded\n",
      "shard_30311 loaded\n",
      "shard_25142 loaded\n",
      "shard_32461 loaded\n",
      "shard_39591 loaded\n",
      "shard_24835 loaded\n",
      "shard_15301 loaded\n",
      "shard_8540 loaded\n",
      "shard_1837 loaded\n",
      "shard_44174 loaded\n",
      "shard_7416 loaded\n",
      "shard_24002 loaded\n",
      "shard_37920 loaded\n",
      "shard_36720 loaded\n",
      "shard_4045 loaded\n",
      "shard_11147 loaded\n",
      "shard_37447 loaded\n",
      "shard_11940 loaded\n",
      "shard_29538 loaded\n",
      "shard_23444 loaded\n",
      "shard_5003 loaded\n",
      "shard_20224 loaded\n",
      "shard_45608 loaded\n",
      "shard_41145 loaded\n",
      "shard_39206 loaded\n",
      "shard_15793 loaded\n",
      "shard_46642 loaded\n",
      "shard_4180 loaded\n",
      "shard_7668 loaded\n",
      "shard_43715 loaded\n",
      "shard_19622 loaded\n",
      "shard_34223 loaded\n",
      "shard_30642 loaded\n",
      "shard_28705 loaded\n",
      "shard_22497 loaded\n",
      "shard_28450 loaded\n",
      "shard_42497 loaded\n",
      "shard_23777 loaded\n",
      "shard_16110 loaded\n",
      "shard_9114 loaded\n",
      "shard_34114 loaded\n",
      "shard_9647 loaded\n",
      "shard_34450 loaded\n",
      "shard_3207 loaded\n",
      "shard_6704 loaded\n",
      "shard_26607 loaded\n",
      "shard_3686 loaded\n",
      "shard_26508 loaded\n",
      "shard_3914 loaded\n",
      "shard_10596 loaded\n",
      "shard_13534 loaded\n",
      "shard_32498 loaded\n",
      "shard_40784 loaded\n",
      "shard_7431 loaded\n",
      "shard_35582 loaded\n",
      "shard_25098 loaded\n",
      "shard_26721 loaded\n",
      "shard_36697 loaded\n",
      "shard_9931 loaded\n",
      "shard_48557 loaded\n",
      "shard_16238 loaded\n",
      "shard_44361 loaded\n",
      "shard_11909 loaded\n",
      "shard_33052 loaded\n",
      "shard_15006 loaded\n",
      "shard_30796 loaded\n",
      "shard_47035 loaded\n",
      "shard_7875 loaded\n",
      "shard_3952 loaded\n",
      "shard_6498 loaded\n",
      "shard_6998 loaded\n",
      "shard_49642 loaded\n",
      "shard_33266 loaded\n",
      "shard_47484 loaded\n",
      "shard_2985 loaded\n",
      "shard_17153 loaded\n",
      "shard_17832 loaded\n",
      "shard_30577 loaded\n",
      "shard_30586 loaded\n",
      "shard_14928 loaded\n",
      "shard_2099 loaded\n",
      "shard_25268 loaded\n",
      "shard_48739 loaded\n",
      "shard_17307 loaded\n",
      "shard_2057 loaded\n",
      "shard_16020 loaded\n",
      "shard_16015 loaded\n",
      "shard_41552 loaded\n",
      "shard_23596 loaded\n",
      "shard_36834 loaded\n",
      "shard_44096 loaded\n",
      "shard_31516 loaded\n",
      "shard_30916 loaded\n",
      "shard_36861 loaded\n",
      "shard_23389 loaded\n",
      "shard_43190 loaded\n",
      "shard_38692 loaded\n",
      "shard_35331 loaded\n",
      "shard_33305 loaded\n",
      "shard_37536 loaded\n",
      "shard_1372 loaded\n",
      "shard_19722 loaded\n",
      "shard_44929 loaded\n",
      "shard_7263 loaded\n",
      "shard_4303 loaded\n",
      "shard_32433 loaded\n",
      "shard_6098 loaded\n",
      "shard_16454 loaded\n",
      "shard_16525 loaded\n",
      "shard_25746 loaded\n",
      "shard_20614 loaded\n",
      "shard_31695 loaded\n",
      "shard_26003 loaded\n",
      "shard_9717 loaded\n",
      "shard_5662 loaded\n",
      "shard_42681 loaded\n",
      "shard_18553 loaded\n",
      "shard_6147 loaded\n",
      "shard_33397 loaded\n",
      "shard_47887 loaded\n",
      "shard_46091 loaded\n",
      "shard_36964 loaded\n",
      "shard_40829 loaded\n",
      "shard_36613 loaded\n",
      "shard_18694 loaded\n",
      "shard_27770 loaded\n",
      "shard_45079 loaded\n",
      "shard_25940 loaded\n",
      "shard_3031 loaded\n",
      "shard_2164 loaded\n",
      "shard_1596 loaded\n",
      "shard_9539 loaded\n",
      "shard_33325 loaded\n",
      "shard_41745 loaded\n",
      "shard_21738 loaded\n",
      "shard_27851 loaded\n",
      "shard_5445 loaded\n",
      "shard_13503 loaded\n",
      "shard_4199 loaded\n",
      "shard_8476 loaded\n",
      "shard_44420 loaded\n",
      "shard_40311 loaded\n",
      "shard_11921 loaded\n",
      "shard_30911 loaded\n",
      "shard_45051 loaded\n",
      "shard_42720 loaded\n",
      "shard_43990 loaded\n",
      "shard_31254 loaded\n",
      "shard_32791 loaded\n",
      "shard_46772 loaded\n",
      "shard_41071 loaded\n",
      "shard_26249 loaded\n",
      "shard_28392 loaded\n",
      "shard_24550 loaded\n",
      "shard_11179 loaded\n",
      "shard_5477 loaded\n",
      "shard_12032 loaded\n",
      "shard_42049 loaded\n",
      "shard_24171 loaded\n",
      "shard_12136 loaded\n",
      "shard_13764 loaded\n",
      "shard_40255 loaded\n",
      "shard_40014 loaded\n",
      "shard_12516 loaded\n",
      "shard_40764 loaded\n",
      "shard_49576 loaded\n",
      "shard_30243 loaded\n",
      "shard_13712 loaded\n",
      "shard_23421 loaded\n",
      "shard_4168 loaded\n",
      "shard_11127 loaded\n",
      "shard_9299 loaded\n",
      "shard_43850 loaded\n",
      "shard_37827 loaded\n",
      "shard_16256 loaded\n",
      "shard_11337 loaded\n",
      "shard_26456 loaded\n",
      "shard_47500 loaded\n",
      "shard_42460 loaded\n",
      "shard_33443 loaded\n",
      "shard_17741 loaded\n",
      "shard_43505 loaded\n",
      "shard_4868 loaded\n",
      "shard_16638 loaded\n",
      "shard_39885 loaded\n",
      "shard_15163 loaded\n",
      "shard_37346 loaded\n",
      "shard_43360 loaded\n",
      "shard_7056 loaded\n",
      "shard_16476 loaded\n",
      "shard_22704 loaded\n",
      "shard_26889 loaded\n",
      "shard_38675 loaded\n",
      "shard_31201 loaded\n",
      "shard_47111 loaded\n",
      "shard_23200 loaded\n",
      "shard_2284 loaded\n",
      "shard_14882 loaded\n",
      "shard_33986 loaded\n",
      "shard_12843 loaded\n",
      "shard_2329 loaded\n",
      "shard_14451 loaded\n",
      "shard_45023 loaded\n",
      "shard_17433 loaded\n",
      "shard_16112 loaded\n",
      "shard_13643 loaded\n",
      "shard_21308 loaded\n",
      "shard_15805 loaded\n",
      "shard_19582 loaded\n",
      "shard_16820 loaded\n",
      "shard_8379 loaded\n",
      "shard_23453 loaded\n",
      "shard_44268 loaded\n",
      "shard_36346 loaded\n",
      "shard_45248 loaded\n",
      "shard_44180 loaded\n",
      "shard_25732 loaded\n",
      "shard_18593 loaded\n",
      "shard_17228 loaded\n",
      "shard_41850 loaded\n",
      "shard_3164 loaded\n",
      "shard_5388 loaded\n",
      "shard_15974 loaded\n",
      "shard_36000 loaded\n",
      "shard_26141 loaded\n",
      "shard_48717 loaded\n",
      "shard_24776 loaded\n",
      "shard_5635 loaded\n",
      "shard_16455 loaded\n",
      "shard_2830 loaded\n",
      "shard_37601 loaded\n",
      "shard_38344 loaded\n",
      "shard_35112 loaded\n",
      "shard_15195 loaded\n",
      "shard_5839 loaded\n",
      "shard_4526 loaded\n",
      "shard_13767 loaded\n",
      "shard_5934 loaded\n",
      "shard_39806 loaded\n",
      "shard_27975 loaded\n",
      "shard_5597 loaded\n",
      "shard_31172 loaded\n",
      "shard_20427 loaded\n",
      "shard_39767 loaded\n",
      "shard_37607 loaded\n",
      "shard_11785 loaded\n",
      "shard_1541 loaded\n",
      "shard_48229 loaded\n",
      "shard_41644 loaded\n",
      "shard_41040 loaded\n",
      "shard_7717 loaded\n",
      "shard_49553 loaded\n",
      "shard_4326 loaded\n",
      "shard_4755 loaded\n",
      "shard_28837 loaded\n",
      "shard_19005 loaded\n",
      "shard_13306 loaded\n",
      "shard_30234 loaded\n",
      "shard_956 loaded\n",
      "shard_19688 loaded\n",
      "shard_4030 loaded\n",
      "shard_6475 loaded\n",
      "shard_38943 loaded\n",
      "shard_42908 loaded\n",
      "shard_1822 loaded\n",
      "shard_33272 loaded\n",
      "shard_18003 loaded\n",
      "shard_7299 loaded\n",
      "shard_24600 loaded\n",
      "shard_33570 loaded\n",
      "shard_47496 loaded\n",
      "shard_904 loaded\n",
      "shard_29395 loaded\n",
      "shard_36198 loaded\n",
      "shard_15715 loaded\n",
      "shard_9576 loaded\n",
      "shard_39987 loaded\n",
      "shard_7458 loaded\n",
      "shard_34584 loaded\n",
      "shard_15789 loaded\n",
      "shard_25175 loaded\n",
      "shard_41372 loaded\n",
      "shard_44652 loaded\n",
      "shard_36944 loaded\n",
      "shard_11711 loaded\n",
      "shard_11773 loaded\n",
      "shard_11459 loaded\n",
      "shard_31028 loaded\n",
      "shard_14248 loaded\n",
      "shard_23682 loaded\n",
      "shard_16479 loaded\n",
      "shard_30968 loaded\n",
      "shard_25715 loaded\n",
      "shard_14565 loaded\n",
      "shard_25846 loaded\n",
      "shard_10544 loaded\n",
      "shard_37036 loaded\n",
      "shard_45865 loaded\n",
      "shard_39389 loaded\n",
      "shard_46225 loaded\n",
      "shard_8434 loaded\n",
      "shard_48369 loaded\n",
      "shard_47327 loaded\n",
      "shard_12041 loaded\n",
      "shard_4953 loaded\n",
      "shard_42984 loaded\n",
      "shard_38273 loaded\n",
      "shard_45823 loaded\n",
      "shard_39520 loaded\n",
      "shard_4996 loaded\n",
      "shard_41475 loaded\n",
      "shard_3416 loaded\n",
      "shard_23177 loaded\n",
      "shard_31608 loaded\n",
      "shard_8725 loaded\n",
      "shard_10222 loaded\n",
      "shard_14287 loaded\n",
      "shard_41984 loaded\n",
      "shard_34419 loaded\n",
      "shard_19122 loaded\n",
      "shard_4036 loaded\n",
      "shard_43064 loaded\n",
      "shard_47073 loaded\n",
      "shard_33564 loaded\n",
      "shard_49031 loaded\n",
      "shard_4053 loaded\n",
      "shard_17738 loaded\n",
      "shard_25414 loaded\n",
      "shard_4948 loaded\n",
      "shard_24404 loaded\n",
      "shard_11309 loaded\n",
      "shard_16312 loaded\n",
      "shard_25537 loaded\n",
      "shard_34899 loaded\n",
      "shard_32194 loaded\n",
      "shard_7917 loaded\n",
      "shard_13268 loaded\n",
      "shard_35320 loaded\n",
      "shard_31934 loaded\n",
      "shard_4588 loaded\n",
      "shard_9811 loaded\n",
      "shard_21513 loaded\n",
      "shard_39920 loaded\n",
      "shard_45598 loaded\n",
      "shard_21138 loaded\n",
      "shard_12819 loaded\n",
      "shard_42131 loaded\n",
      "shard_48106 loaded\n",
      "shard_7635 loaded\n",
      "shard_48302 loaded\n",
      "shard_20075 loaded\n",
      "shard_31267 loaded\n",
      "shard_38766 loaded\n",
      "shard_21509 loaded\n",
      "shard_41684 loaded\n",
      "shard_15880 loaded\n",
      "shard_18541 loaded\n",
      "shard_22341 loaded\n",
      "shard_33318 loaded\n",
      "shard_12787 loaded\n",
      "shard_22350 loaded\n",
      "shard_18727 loaded\n",
      "shard_25836 loaded\n",
      "shard_40841 loaded\n",
      "shard_44310 loaded\n",
      "shard_36947 loaded\n",
      "shard_27666 loaded\n",
      "shard_16582 loaded\n",
      "shard_27437 loaded\n",
      "shard_413 loaded\n",
      "shard_6850 loaded\n",
      "shard_5767 loaded\n",
      "shard_33159 loaded\n",
      "shard_49377 loaded\n",
      "shard_25083 loaded\n",
      "shard_44937 loaded\n",
      "shard_20956 loaded\n",
      "shard_41447 loaded\n",
      "shard_48389 loaded\n",
      "shard_2981 loaded\n",
      "shard_14747 loaded\n",
      "shard_23441 loaded\n",
      "shard_1416 loaded\n",
      "shard_4193 loaded\n",
      "shard_3610 loaded\n",
      "shard_9205 loaded\n",
      "shard_9148 loaded\n",
      "shard_47386 loaded\n",
      "shard_29833 loaded\n",
      "shard_18372 loaded\n",
      "shard_2189 loaded\n",
      "shard_32467 loaded\n",
      "shard_17340 loaded\n",
      "shard_32542 loaded\n",
      "shard_7605 loaded\n",
      "shard_9458 loaded\n",
      "shard_26911 loaded\n",
      "shard_19175 loaded\n",
      "shard_16787 loaded\n",
      "shard_30275 loaded\n",
      "shard_43614 loaded\n",
      "shard_32915 loaded\n",
      "shard_7018 loaded\n",
      "shard_7293 loaded\n",
      "shard_49051 loaded\n",
      "shard_30616 loaded\n",
      "shard_43495 loaded\n",
      "shard_2539 loaded\n",
      "shard_17031 loaded\n",
      "shard_10059 loaded\n",
      "shard_30434 loaded\n",
      "shard_23388 loaded\n",
      "shard_25046 loaded\n",
      "shard_45211 loaded\n",
      "shard_36790 loaded\n",
      "shard_7637 loaded\n",
      "shard_17186 loaded\n",
      "shard_7599 loaded\n",
      "shard_418 loaded\n",
      "shard_26226 loaded\n",
      "shard_3406 loaded\n",
      "shard_27997 loaded\n",
      "shard_21948 loaded\n",
      "shard_33009 loaded\n",
      "shard_17033 loaded\n",
      "shard_29881 loaded\n",
      "shard_353 loaded\n",
      "shard_14536 loaded\n",
      "shard_26182 loaded\n",
      "shard_49215 loaded\n",
      "shard_38207 loaded\n",
      "shard_6539 loaded\n",
      "shard_26928 loaded\n",
      "shard_12841 loaded\n",
      "shard_42508 loaded\n",
      "shard_24701 loaded\n",
      "shard_24791 loaded\n",
      "shard_32410 loaded\n",
      "shard_33833 loaded\n",
      "shard_164 loaded\n",
      "shard_19655 loaded\n",
      "shard_3033 loaded\n",
      "shard_19792 loaded\n",
      "shard_20179 loaded\n",
      "shard_9965 loaded\n",
      "shard_17422 loaded\n",
      "shard_46622 loaded\n",
      "shard_20279 loaded\n",
      "shard_13818 loaded\n",
      "shard_7499 loaded\n",
      "shard_19028 loaded\n",
      "shard_5802 loaded\n",
      "shard_21724 loaded\n",
      "shard_28749 loaded\n",
      "shard_15048 loaded\n",
      "shard_32097 loaded\n",
      "shard_30051 loaded\n",
      "shard_4386 loaded\n",
      "shard_17756 loaded\n",
      "shard_35884 loaded\n",
      "shard_42231 loaded\n",
      "shard_36145 loaded\n",
      "shard_5538 loaded\n",
      "shard_35553 loaded\n",
      "shard_32413 loaded\n",
      "shard_39812 loaded\n",
      "shard_12094 loaded\n",
      "shard_10854 loaded\n",
      "shard_19868 loaded\n",
      "shard_17356 loaded\n",
      "shard_9093 loaded\n",
      "shard_15769 loaded\n",
      "shard_31356 loaded\n",
      "shard_13156 loaded\n",
      "shard_23114 loaded\n",
      "shard_5127 loaded\n",
      "shard_19731 loaded\n",
      "shard_20277 loaded\n",
      "shard_41161 loaded\n",
      "shard_19262 loaded\n",
      "shard_11493 loaded\n",
      "shard_37708 loaded\n",
      "shard_42626 loaded\n",
      "shard_38300 loaded\n",
      "shard_43287 loaded\n",
      "shard_22950 loaded\n",
      "shard_44052 loaded\n",
      "shard_39918 loaded\n",
      "shard_8603 loaded\n",
      "shard_34669 loaded\n",
      "shard_35010 loaded\n",
      "shard_3167 loaded\n",
      "shard_41971 loaded\n",
      "shard_2435 loaded\n",
      "shard_7252 loaded\n",
      "shard_28045 loaded\n",
      "shard_6949 loaded\n",
      "shard_27458 loaded\n",
      "shard_9028 loaded\n",
      "shard_16286 loaded\n",
      "shard_5401 loaded\n",
      "shard_11474 loaded\n",
      "shard_38543 loaded\n",
      "shard_35890 loaded\n",
      "shard_43319 loaded\n",
      "shard_33918 loaded\n",
      "shard_14411 loaded\n",
      "shard_3373 loaded\n",
      "shard_40463 loaded\n",
      "shard_33803 loaded\n",
      "shard_25907 loaded\n",
      "shard_6304 loaded\n",
      "shard_39693 loaded\n",
      "shard_12175 loaded\n",
      "shard_49601 loaded\n",
      "shard_16515 loaded\n",
      "shard_31947 loaded\n",
      "shard_12137 loaded\n",
      "shard_11967 loaded\n",
      "shard_456 loaded\n",
      "shard_21201 loaded\n",
      "shard_43028 loaded\n",
      "shard_4664 loaded\n",
      "shard_49345 loaded\n",
      "shard_49784 loaded\n",
      "shard_41960 loaded\n",
      "shard_12419 loaded\n",
      "shard_40303 loaded\n",
      "shard_15753 loaded\n",
      "shard_17456 loaded\n",
      "shard_46281 loaded\n",
      "shard_34946 loaded\n",
      "shard_33815 loaded\n",
      "shard_28746 loaded\n",
      "shard_41591 loaded\n",
      "shard_43769 loaded\n",
      "shard_44432 loaded\n",
      "shard_33326 loaded\n",
      "shard_25996 loaded\n",
      "shard_41457 loaded\n",
      "shard_45378 loaded\n",
      "shard_31009 loaded\n",
      "shard_49947 loaded\n",
      "shard_9356 loaded\n",
      "shard_12756 loaded\n",
      "shard_16044 loaded\n",
      "shard_35163 loaded\n",
      "shard_38131 loaded\n",
      "shard_28723 loaded\n",
      "shard_8152 loaded\n",
      "shard_10245 loaded\n",
      "shard_28922 loaded\n",
      "shard_18820 loaded\n",
      "shard_37404 loaded\n",
      "shard_40758 loaded\n",
      "shard_16831 loaded\n",
      "shard_16524 loaded\n",
      "shard_24815 loaded\n",
      "shard_40762 loaded\n",
      "shard_19730 loaded\n",
      "shard_11712 loaded\n",
      "shard_4829 loaded\n",
      "shard_10272 loaded\n",
      "shard_48863 loaded\n",
      "shard_28981 loaded\n",
      "shard_31426 loaded\n",
      "shard_44217 loaded\n",
      "shard_20327 loaded\n",
      "shard_44252 loaded\n",
      "shard_2727 loaded\n",
      "shard_37886 loaded\n",
      "shard_42423 loaded\n",
      "shard_43504 loaded\n",
      "shard_10091 loaded\n",
      "shard_39380 loaded\n",
      "shard_17508 loaded\n",
      "shard_48101 loaded\n",
      "shard_46456 loaded\n",
      "shard_23756 loaded\n",
      "shard_36004 loaded\n",
      "shard_24174 loaded\n",
      "shard_5624 loaded\n",
      "shard_39801 loaded\n",
      "shard_39213 loaded\n",
      "shard_37239 loaded\n",
      "shard_3025 loaded\n",
      "shard_22155 loaded\n",
      "shard_29294 loaded\n",
      "shard_26802 loaded\n",
      "shard_4198 loaded\n",
      "shard_20998 loaded\n",
      "shard_2336 loaded\n",
      "shard_12749 loaded\n",
      "shard_40144 loaded\n",
      "shard_2753 loaded\n",
      "shard_15430 loaded\n",
      "shard_24930 loaded\n",
      "shard_43194 loaded\n",
      "shard_28049 loaded\n",
      "shard_32031 loaded\n",
      "shard_36184 loaded\n",
      "shard_20419 loaded\n",
      "shard_21620 loaded\n",
      "shard_15151 loaded\n",
      "shard_49645 loaded\n",
      "shard_11225 loaded\n",
      "shard_23043 loaded\n",
      "shard_472 loaded\n",
      "shard_31405 loaded\n",
      "shard_22435 loaded\n",
      "shard_2122 loaded\n",
      "shard_27528 loaded\n",
      "shard_7239 loaded\n",
      "shard_32725 loaded\n",
      "shard_17816 loaded\n",
      "shard_18564 loaded\n",
      "shard_45382 loaded\n",
      "shard_8130 loaded\n",
      "shard_18980 loaded\n",
      "shard_6797 loaded\n",
      "shard_15943 loaded\n",
      "shard_19860 loaded\n",
      "shard_25758 loaded\n",
      "shard_3701 loaded\n",
      "shard_13288 loaded\n",
      "shard_28393 loaded\n",
      "shard_23012 loaded\n",
      "shard_21809 loaded\n",
      "shard_39233 loaded\n",
      "shard_33493 loaded\n",
      "shard_32946 loaded\n",
      "shard_38117 loaded\n",
      "shard_16396 loaded\n",
      "shard_33647 loaded\n",
      "shard_10633 loaded\n",
      "shard_47080 loaded\n",
      "shard_3172 loaded\n",
      "shard_26540 loaded\n",
      "shard_28454 loaded\n",
      "shard_17460 loaded\n",
      "shard_48655 loaded\n",
      "shard_34730 loaded\n",
      "shard_33377 loaded\n",
      "shard_33686 loaded\n",
      "shard_33003 loaded\n",
      "shard_6598 loaded\n",
      "shard_26542 loaded\n",
      "shard_2356 loaded\n",
      "shard_26592 loaded\n",
      "shard_41210 loaded\n",
      "shard_44918 loaded\n",
      "shard_10367 loaded\n",
      "shard_22568 loaded\n",
      "shard_34759 loaded\n",
      "shard_42992 loaded\n",
      "shard_33059 loaded\n",
      "shard_11891 loaded\n",
      "shard_34424 loaded\n",
      "shard_21609 loaded\n",
      "shard_22960 loaded\n",
      "shard_46446 loaded\n",
      "shard_29147 loaded\n",
      "shard_17152 loaded\n",
      "shard_29789 loaded\n",
      "shard_3627 loaded\n",
      "shard_4101 loaded\n",
      "shard_46484 loaded\n",
      "shard_44421 loaded\n",
      "shard_40012 loaded\n",
      "shard_20597 loaded\n",
      "shard_43901 loaded\n",
      "shard_29014 loaded\n",
      "shard_49691 loaded\n",
      "shard_27923 loaded\n",
      "shard_34708 loaded\n",
      "shard_20825 loaded\n",
      "shard_30851 loaded\n",
      "shard_35993 loaded\n",
      "shard_15102 loaded\n",
      "shard_18705 loaded\n",
      "shard_27531 loaded\n",
      "shard_43896 loaded\n",
      "shard_4004 loaded\n",
      "shard_40959 loaded\n",
      "shard_9106 loaded\n",
      "shard_40775 loaded\n",
      "shard_38826 loaded\n",
      "shard_34058 loaded\n",
      "shard_2488 loaded\n",
      "shard_48874 loaded\n",
      "shard_32825 loaded\n",
      "shard_27536 loaded\n",
      "shard_21490 loaded\n",
      "shard_1326 loaded\n",
      "shard_36023 loaded\n",
      "shard_26869 loaded\n",
      "shard_42016 loaded\n",
      "shard_2097 loaded\n",
      "shard_2921 loaded\n",
      "shard_19226 loaded\n",
      "shard_23248 loaded\n",
      "shard_27454 loaded\n",
      "shard_19089 loaded\n",
      "shard_29813 loaded\n",
      "shard_34868 loaded\n",
      "shard_46381 loaded\n",
      "shard_3330 loaded\n",
      "shard_27480 loaded\n",
      "shard_36680 loaded\n",
      "shard_23787 loaded\n",
      "shard_7813 loaded\n",
      "shard_41128 loaded\n",
      "shard_2693 loaded\n",
      "shard_10037 loaded\n",
      "shard_14105 loaded\n",
      "shard_6296 loaded\n",
      "shard_27255 loaded\n",
      "shard_49833 loaded\n",
      "shard_22677 loaded\n",
      "shard_9174 loaded\n",
      "shard_47370 loaded\n",
      "shard_5761 loaded\n",
      "shard_44712 loaded\n",
      "shard_29652 loaded\n",
      "shard_37025 loaded\n",
      "shard_22897 loaded\n",
      "shard_17172 loaded\n",
      "shard_37430 loaded\n",
      "shard_10111 loaded\n",
      "shard_31547 loaded\n",
      "shard_7024 loaded\n",
      "shard_26246 loaded\n",
      "shard_30384 loaded\n",
      "shard_28725 loaded\n",
      "shard_29862 loaded\n",
      "shard_2929 loaded\n",
      "shard_3927 loaded\n",
      "shard_25166 loaded\n",
      "shard_22094 loaded\n",
      "shard_37557 loaded\n",
      "shard_6617 loaded\n",
      "shard_38282 loaded\n",
      "shard_33119 loaded\n",
      "shard_46998 loaded\n",
      "shard_33944 loaded\n",
      "shard_27364 loaded\n",
      "shard_7479 loaded\n",
      "shard_11294 loaded\n",
      "shard_16330 loaded\n",
      "shard_49699 loaded\n",
      "shard_18559 loaded\n",
      "shard_45630 loaded\n",
      "shard_40207 loaded\n",
      "shard_48685 loaded\n",
      "shard_21916 loaded\n",
      "shard_5078 loaded\n",
      "shard_13078 loaded\n",
      "shard_16401 loaded\n",
      "shard_40061 loaded\n",
      "shard_25895 loaded\n",
      "shard_10268 loaded\n",
      "shard_43347 loaded\n",
      "shard_31498 loaded\n",
      "shard_31399 loaded\n",
      "shard_11115 loaded\n",
      "shard_36373 loaded\n",
      "shard_15607 loaded\n",
      "shard_23332 loaded\n",
      "shard_43755 loaded\n",
      "shard_9472 loaded\n",
      "shard_42445 loaded\n",
      "shard_17985 loaded\n",
      "shard_5765 loaded\n",
      "shard_33074 loaded\n",
      "shard_29797 loaded\n",
      "shard_34608 loaded\n",
      "shard_6267 loaded\n",
      "shard_29779 loaded\n",
      "shard_47816 loaded\n",
      "shard_42085 loaded\n",
      "shard_37573 loaded\n",
      "shard_22416 loaded\n",
      "shard_25813 loaded\n",
      "shard_27111 loaded\n",
      "shard_34193 loaded\n",
      "shard_45420 loaded\n",
      "shard_43134 loaded\n",
      "shard_21148 loaded\n",
      "shard_14986 loaded\n",
      "shard_5750 loaded\n",
      "shard_34971 loaded\n",
      "shard_44375 loaded\n",
      "shard_12893 loaded\n",
      "shard_24064 loaded\n",
      "shard_33954 loaded\n",
      "shard_30017 loaded\n",
      "shard_45278 loaded\n",
      "shard_37199 loaded\n",
      "shard_16676 loaded\n",
      "shard_28020 loaded\n",
      "shard_3861 loaded\n",
      "shard_43267 loaded\n",
      "shard_23473 loaded\n",
      "shard_23613 loaded\n",
      "shard_27969 loaded\n",
      "shard_22312 loaded\n",
      "shard_19867 loaded\n",
      "shard_39171 loaded\n",
      "shard_4723 loaded\n",
      "shard_23983 loaded\n",
      "shard_26852 loaded\n",
      "shard_33234 loaded\n",
      "shard_31937 loaded\n",
      "shard_31598 loaded\n",
      "shard_32513 loaded\n",
      "shard_35211 loaded\n",
      "shard_25937 loaded\n",
      "shard_835 loaded\n",
      "shard_11741 loaded\n",
      "shard_32009 loaded\n",
      "shard_3786 loaded\n",
      "shard_3380 loaded\n",
      "shard_20198 loaded\n",
      "shard_47885 loaded\n",
      "shard_33381 loaded\n",
      "shard_28486 loaded\n",
      "shard_44550 loaded\n",
      "shard_29947 loaded\n",
      "shard_19643 loaded\n",
      "shard_39618 loaded\n",
      "shard_14870 loaded\n",
      "shard_9646 loaded\n",
      "shard_30202 loaded\n",
      "shard_32133 loaded\n",
      "shard_48373 loaded\n",
      "shard_8692 loaded\n",
      "shard_29192 loaded\n",
      "shard_38657 loaded\n",
      "shard_2576 loaded\n",
      "shard_25878 loaded\n",
      "shard_9652 loaded\n",
      "shard_22423 loaded\n",
      "shard_24513 loaded\n",
      "shard_830 loaded\n",
      "shard_1884 loaded\n",
      "shard_40734 loaded\n",
      "shard_18721 loaded\n",
      "shard_39814 loaded\n",
      "shard_45872 loaded\n",
      "shard_8991 loaded\n",
      "shard_19609 loaded\n",
      "shard_20618 loaded\n",
      "shard_40491 loaded\n",
      "shard_32536 loaded\n",
      "shard_49392 loaded\n",
      "shard_6624 loaded\n",
      "shard_5751 loaded\n",
      "shard_7808 loaded\n",
      "shard_5423 loaded\n",
      "shard_34288 loaded\n",
      "shard_20708 loaded\n",
      "shard_7182 loaded\n",
      "shard_24509 loaded\n",
      "shard_29368 loaded\n",
      "shard_46450 loaded\n",
      "shard_537 loaded\n",
      "shard_8932 loaded\n",
      "shard_26927 loaded\n",
      "shard_6911 loaded\n",
      "shard_26778 loaded\n",
      "shard_23993 loaded\n",
      "shard_15271 loaded\n",
      "shard_45859 loaded\n",
      "shard_18969 loaded\n",
      "shard_27705 loaded\n",
      "shard_49635 loaded\n",
      "shard_24609 loaded\n",
      "shard_30104 loaded\n",
      "shard_19885 loaded\n",
      "shard_28060 loaded\n",
      "shard_38279 loaded\n",
      "shard_6635 loaded\n",
      "shard_14519 loaded\n",
      "shard_39247 loaded\n",
      "shard_30269 loaded\n",
      "shard_40181 loaded\n",
      "shard_30443 loaded\n",
      "shard_47447 loaded\n",
      "shard_29791 loaded\n",
      "shard_20113 loaded\n",
      "shard_36958 loaded\n",
      "shard_8705 loaded\n",
      "shard_15589 loaded\n",
      "shard_25160 loaded\n",
      "shard_12039 loaded\n",
      "shard_12682 loaded\n",
      "shard_36443 loaded\n",
      "shard_11164 loaded\n",
      "shard_41536 loaded\n",
      "shard_18937 loaded\n",
      "shard_38345 loaded\n",
      "shard_44061 loaded\n",
      "shard_13443 loaded\n",
      "shard_6728 loaded\n",
      "shard_43775 loaded\n",
      "shard_11447 loaded\n",
      "shard_22402 loaded\n",
      "shard_10579 loaded\n",
      "shard_3579 loaded\n",
      "shard_30152 loaded\n",
      "shard_10921 loaded\n",
      "shard_7780 loaded\n",
      "shard_15717 loaded\n",
      "shard_11806 loaded\n",
      "shard_24522 loaded\n",
      "shard_8891 loaded\n",
      "shard_36333 loaded\n",
      "shard_18571 loaded\n",
      "shard_5875 loaded\n",
      "shard_2959 loaded\n",
      "shard_17661 loaded\n",
      "shard_8307 loaded\n",
      "shard_31621 loaded\n",
      "shard_27422 loaded\n",
      "shard_20443 loaded\n",
      "shard_44135 loaded\n",
      "shard_15829 loaded\n",
      "shard_27921 loaded\n",
      "shard_49300 loaded\n",
      "shard_32815 loaded\n",
      "shard_8674 loaded\n",
      "shard_30307 loaded\n",
      "shard_2820 loaded\n",
      "shard_13863 loaded\n",
      "shard_35117 loaded\n",
      "shard_34898 loaded\n",
      "shard_35955 loaded\n",
      "shard_17518 loaded\n",
      "shard_45829 loaded\n",
      "shard_9776 loaded\n",
      "shard_12896 loaded\n",
      "shard_21741 loaded\n",
      "shard_30519 loaded\n",
      "shard_20334 loaded\n",
      "shard_23701 loaded\n",
      "shard_36276 loaded\n",
      "shard_27807 loaded\n",
      "shard_8874 loaded\n",
      "shard_33818 loaded\n",
      "shard_38308 loaded\n",
      "shard_15673 loaded\n",
      "shard_1236 loaded\n",
      "shard_48904 loaded\n",
      "shard_22793 loaded\n",
      "shard_6350 loaded\n",
      "shard_10726 loaded\n",
      "shard_49607 loaded\n",
      "shard_44291 loaded\n",
      "shard_5291 loaded\n",
      "shard_37095 loaded\n",
      "shard_32509 loaded\n",
      "shard_20466 loaded\n",
      "shard_9191 loaded\n",
      "shard_22128 loaded\n",
      "shard_49119 loaded\n",
      "shard_45260 loaded\n",
      "shard_3086 loaded\n",
      "shard_26772 loaded\n",
      "shard_9366 loaded\n",
      "shard_29914 loaded\n",
      "shard_14169 loaded\n",
      "shard_26230 loaded\n",
      "shard_19956 loaded\n",
      "shard_40237 loaded\n",
      "shard_3339 loaded\n",
      "shard_5323 loaded\n",
      "shard_34781 loaded\n",
      "shard_46118 loaded\n",
      "shard_10802 loaded\n",
      "shard_28239 loaded\n",
      "shard_16315 loaded\n",
      "shard_44702 loaded\n",
      "shard_19477 loaded\n",
      "shard_26338 loaded\n",
      "shard_29975 loaded\n",
      "shard_30932 loaded\n",
      "shard_8234 loaded\n",
      "shard_34442 loaded\n",
      "shard_17338 loaded\n",
      "shard_5304 loaded\n",
      "shard_35277 loaded\n",
      "shard_16171 loaded\n",
      "shard_25211 loaded\n",
      "shard_45931 loaded\n",
      "shard_25026 loaded\n",
      "shard_39272 loaded\n",
      "shard_11313 loaded\n",
      "shard_44761 loaded\n",
      "shard_3081 loaded\n",
      "shard_41472 loaded\n",
      "shard_30839 loaded\n",
      "shard_18588 loaded\n",
      "shard_7619 loaded\n",
      "shard_25320 loaded\n",
      "shard_3525 loaded\n",
      "shard_16228 loaded\n",
      "shard_5417 loaded\n",
      "shard_43299 loaded\n",
      "shard_446 loaded\n",
      "shard_44345 loaded\n",
      "shard_31156 loaded\n",
      "shard_24442 loaded\n",
      "shard_45595 loaded\n",
      "shard_19055 loaded\n",
      "shard_8763 loaded\n",
      "shard_38221 loaded\n",
      "shard_37065 loaded\n",
      "shard_6563 loaded\n",
      "shard_46678 loaded\n",
      "shard_4689 loaded\n",
      "shard_39745 loaded\n",
      "shard_4571 loaded\n",
      "shard_24005 loaded\n",
      "shard_26855 loaded\n",
      "shard_43237 loaded\n",
      "shard_19099 loaded\n",
      "shard_39757 loaded\n",
      "shard_32688 loaded\n",
      "shard_6174 loaded\n",
      "shard_14571 loaded\n",
      "shard_28253 loaded\n",
      "shard_38557 loaded\n",
      "shard_48354 loaded\n",
      "shard_36088 loaded\n",
      "shard_147 loaded\n",
      "shard_29531 loaded\n",
      "shard_5657 loaded\n",
      "shard_20049 loaded\n",
      "shard_16579 loaded\n",
      "shard_36298 loaded\n",
      "shard_43369 loaded\n",
      "shard_2785 loaded\n",
      "shard_25060 loaded\n",
      "shard_17447 loaded\n",
      "shard_13155 loaded\n",
      "shard_47677 loaded\n",
      "shard_31829 loaded\n",
      "shard_38309 loaded\n",
      "shard_46413 loaded\n",
      "shard_306 loaded\n",
      "shard_30317 loaded\n",
      "shard_27284 loaded\n",
      "shard_22149 loaded\n",
      "shard_46323 loaded\n",
      "shard_30734 loaded\n",
      "shard_22431 loaded\n",
      "shard_49672 loaded\n",
      "shard_46714 loaded\n",
      "shard_17819 loaded\n",
      "shard_28063 loaded\n",
      "shard_42817 loaded\n",
      "shard_28791 loaded\n",
      "shard_34412 loaded\n",
      "shard_16775 loaded\n",
      "shard_330 loaded\n",
      "shard_10005 loaded\n",
      "shard_14332 loaded\n",
      "shard_32711 loaded\n",
      "shard_47159 loaded\n",
      "shard_36514 loaded\n",
      "shard_11233 loaded\n",
      "shard_41873 loaded\n",
      "shard_1462 loaded\n",
      "shard_17477 loaded\n",
      "shard_18995 loaded\n",
      "shard_45499 loaded\n",
      "shard_30036 loaded\n",
      "shard_32707 loaded\n",
      "shard_14500 loaded\n",
      "shard_7805 loaded\n",
      "shard_43012 loaded\n",
      "shard_4259 loaded\n",
      "shard_1406 loaded\n",
      "shard_31464 loaded\n",
      "shard_48225 loaded\n",
      "shard_984 loaded\n",
      "shard_39143 loaded\n",
      "shard_12006 loaded\n",
      "shard_31897 loaded\n",
      "shard_6365 loaded\n",
      "shard_42744 loaded\n",
      "shard_1095 loaded\n",
      "shard_14886 loaded\n",
      "shard_21593 loaded\n",
      "shard_46188 loaded\n",
      "shard_40701 loaded\n",
      "shard_29164 loaded\n",
      "shard_41280 loaded\n",
      "shard_37355 loaded\n",
      "shard_26292 loaded\n",
      "shard_11889 loaded\n",
      "shard_24406 loaded\n",
      "shard_24699 loaded\n",
      "shard_40108 loaded\n",
      "shard_7313 loaded\n",
      "shard_20632 loaded\n",
      "shard_48433 loaded\n",
      "shard_16771 loaded\n",
      "shard_27406 loaded\n",
      "shard_22583 loaded\n",
      "shard_21520 loaded\n",
      "shard_6924 loaded\n",
      "shard_10240 loaded\n",
      "shard_44612 loaded\n",
      "shard_35087 loaded\n",
      "shard_33060 loaded\n",
      "shard_23820 loaded\n",
      "shard_35390 loaded\n",
      "shard_87 loaded\n",
      "shard_42301 loaded\n",
      "shard_20885 loaded\n",
      "shard_10787 loaded\n",
      "shard_8390 loaded\n",
      "shard_35679 loaded\n",
      "shard_3054 loaded\n",
      "shard_1322 loaded\n",
      "shard_38541 loaded\n",
      "shard_10034 loaded\n",
      "shard_34508 loaded\n",
      "shard_12332 loaded\n",
      "shard_32562 loaded\n",
      "shard_30450 loaded\n",
      "shard_44785 loaded\n",
      "shard_17852 loaded\n",
      "shard_35118 loaded\n",
      "shard_35355 loaded\n",
      "shard_44478 loaded\n",
      "shard_1475 loaded\n",
      "shard_48606 loaded\n",
      "shard_2763 loaded\n",
      "shard_1663 loaded\n",
      "shard_39813 loaded\n",
      "shard_38283 loaded\n",
      "shard_29818 loaded\n",
      "shard_20290 loaded\n",
      "shard_10290 loaded\n",
      "shard_24657 loaded\n",
      "shard_4141 loaded\n",
      "shard_7036 loaded\n",
      "shard_154 loaded\n",
      "shard_29416 loaded\n",
      "shard_48713 loaded\n",
      "shard_21835 loaded\n",
      "shard_42697 loaded\n",
      "shard_1410 loaded\n",
      "shard_10564 loaded\n",
      "shard_13233 loaded\n",
      "shard_12333 loaded\n",
      "shard_3162 loaded\n",
      "shard_21101 loaded\n",
      "shard_24738 loaded\n",
      "shard_7655 loaded\n",
      "shard_45267 loaded\n",
      "shard_2038 loaded\n",
      "shard_37662 loaded\n",
      "shard_1757 loaded\n",
      "shard_23862 loaded\n",
      "shard_21099 loaded\n",
      "shard_18804 loaded\n",
      "shard_34855 loaded\n",
      "shard_14217 loaded\n",
      "shard_48885 loaded\n",
      "shard_37134 loaded\n",
      "shard_30895 loaded\n",
      "shard_16752 loaded\n",
      "shard_13039 loaded\n",
      "shard_33078 loaded\n",
      "shard_1213 loaded\n",
      "shard_22747 loaded\n",
      "shard_14148 loaded\n",
      "shard_48984 loaded\n",
      "shard_24029 loaded\n",
      "shard_28242 loaded\n",
      "shard_24681 loaded\n",
      "shard_13001 loaded\n",
      "shard_32636 loaded\n",
      "shard_13034 loaded\n",
      "shard_6088 loaded\n",
      "shard_34827 loaded\n",
      "shard_17285 loaded\n",
      "shard_8429 loaded\n",
      "shard_8322 loaded\n",
      "shard_36736 loaded\n",
      "shard_21049 loaded\n",
      "shard_14661 loaded\n",
      "shard_41771 loaded\n",
      "shard_28005 loaded\n",
      "shard_13497 loaded\n",
      "shard_13079 loaded\n",
      "shard_25913 loaded\n",
      "shard_15579 loaded\n",
      "shard_14638 loaded\n",
      "shard_17424 loaded\n",
      "shard_8651 loaded\n",
      "shard_10597 loaded\n",
      "shard_21110 loaded\n",
      "shard_19675 loaded\n",
      "shard_48110 loaded\n",
      "shard_31357 loaded\n",
      "shard_49083 loaded\n",
      "shard_19169 loaded\n",
      "shard_6255 loaded\n",
      "shard_48289 loaded\n",
      "shard_16484 loaded\n",
      "shard_38183 loaded\n",
      "shard_31493 loaded\n",
      "shard_36180 loaded\n",
      "shard_19726 loaded\n",
      "shard_47948 loaded\n",
      "shard_49961 loaded\n",
      "shard_10269 loaded\n",
      "shard_15651 loaded\n",
      "shard_190 loaded\n",
      "shard_5852 loaded\n",
      "shard_46570 loaded\n",
      "shard_25181 loaded\n",
      "shard_10673 loaded\n",
      "shard_22383 loaded\n",
      "shard_38572 loaded\n",
      "shard_12588 loaded\n",
      "shard_21936 loaded\n",
      "shard_41732 loaded\n",
      "shard_49808 loaded\n",
      "shard_1279 loaded\n",
      "shard_7919 loaded\n",
      "shard_47613 loaded\n",
      "shard_155 loaded\n",
      "shard_12817 loaded\n",
      "shard_11855 loaded\n",
      "shard_30682 loaded\n",
      "shard_5088 loaded\n",
      "shard_23225 loaded\n",
      "shard_13900 loaded\n",
      "shard_11369 loaded\n",
      "shard_1458 loaded\n",
      "shard_1598 loaded\n",
      "shard_16041 loaded\n",
      "shard_11229 loaded\n",
      "shard_6553 loaded\n",
      "shard_28867 loaded\n",
      "shard_22378 loaded\n",
      "shard_35527 loaded\n",
      "shard_16917 loaded\n",
      "shard_3078 loaded\n",
      "shard_8056 loaded\n",
      "shard_9389 loaded\n",
      "shard_29020 loaded\n",
      "shard_35874 loaded\n",
      "shard_26675 loaded\n",
      "shard_49534 loaded\n",
      "shard_37485 loaded\n",
      "shard_49943 loaded\n",
      "shard_44620 loaded\n",
      "shard_5900 loaded\n",
      "shard_46208 loaded\n",
      "shard_44570 loaded\n",
      "shard_46831 loaded\n",
      "shard_19821 loaded\n",
      "shard_40495 loaded\n",
      "shard_47306 loaded\n",
      "shard_7701 loaded\n",
      "shard_6744 loaded\n",
      "shard_41177 loaded\n",
      "shard_31413 loaded\n",
      "shard_4305 loaded\n",
      "shard_26646 loaded\n",
      "shard_35095 loaded\n",
      "shard_19114 loaded\n",
      "shard_5899 loaded\n",
      "shard_49177 loaded\n",
      "shard_15233 loaded\n",
      "shard_32585 loaded\n",
      "shard_42644 loaded\n",
      "shard_3990 loaded\n",
      "shard_46672 loaded\n",
      "shard_47470 loaded\n",
      "shard_41270 loaded\n",
      "shard_37707 loaded\n",
      "shard_8801 loaded\n",
      "shard_12681 loaded\n",
      "shard_36078 loaded\n",
      "shard_4238 loaded\n",
      "shard_10202 loaded\n",
      "shard_42476 loaded\n",
      "shard_34916 loaded\n",
      "shard_46543 loaded\n",
      "shard_13565 loaded\n",
      "shard_26470 loaded\n",
      "shard_184 loaded\n",
      "shard_19353 loaded\n",
      "shard_1074 loaded\n",
      "shard_30762 loaded\n",
      "shard_18777 loaded\n",
      "shard_27629 loaded\n",
      "shard_42451 loaded\n",
      "shard_1708 loaded\n",
      "shard_14904 loaded\n",
      "shard_5812 loaded\n",
      "shard_32525 loaded\n",
      "shard_33433 loaded\n",
      "shard_29244 loaded\n",
      "shard_24909 loaded\n",
      "shard_46847 loaded\n",
      "shard_34048 loaded\n",
      "shard_37297 loaded\n",
      "shard_47810 loaded\n",
      "shard_45742 loaded\n",
      "shard_32653 loaded\n",
      "shard_22079 loaded\n",
      "shard_28708 loaded\n",
      "shard_18077 loaded\n",
      "shard_39999 loaded\n",
      "shard_49112 loaded\n",
      "shard_31370 loaded\n",
      "shard_23336 loaded\n",
      "shard_16294 loaded\n",
      "shard_40423 loaded\n",
      "shard_13525 loaded\n",
      "shard_8082 loaded\n",
      "shard_4407 loaded\n",
      "shard_17957 loaded\n",
      "shard_37265 loaded\n",
      "shard_1092 loaded\n",
      "shard_42305 loaded\n",
      "shard_23182 loaded\n",
      "shard_15306 loaded\n",
      "shard_28405 loaded\n",
      "shard_4461 loaded\n",
      "shard_27481 loaded\n",
      "shard_19820 loaded\n",
      "shard_21961 loaded\n",
      "shard_42024 loaded\n",
      "shard_1751 loaded\n",
      "shard_33050 loaded\n",
      "shard_38786 loaded\n",
      "shard_42518 loaded\n",
      "shard_48332 loaded\n",
      "shard_31990 loaded\n",
      "shard_21154 loaded\n",
      "shard_45818 loaded\n",
      "shard_23250 loaded\n",
      "shard_11800 loaded\n",
      "shard_4195 loaded\n",
      "shard_25522 loaded\n",
      "shard_13811 loaded\n",
      "shard_35515 loaded\n",
      "shard_32301 loaded\n",
      "shard_40475 loaded\n",
      "shard_31848 loaded\n",
      "shard_40307 loaded\n",
      "shard_49498 loaded\n",
      "shard_17776 loaded\n",
      "shard_13160 loaded\n",
      "shard_45836 loaded\n",
      "shard_30510 loaded\n",
      "shard_373 loaded\n",
      "shard_41235 loaded\n",
      "shard_41325 loaded\n",
      "shard_20400 loaded\n",
      "shard_30720 loaded\n",
      "shard_44727 loaded\n",
      "shard_30906 loaded\n",
      "shard_30242 loaded\n",
      "shard_20372 loaded\n",
      "shard_1638 loaded\n",
      "shard_13271 loaded\n",
      "shard_20940 loaded\n",
      "shard_28642 loaded\n",
      "shard_5522 loaded\n",
      "shard_14627 loaded\n",
      "shard_5214 loaded\n",
      "shard_32912 loaded\n",
      "shard_31877 loaded\n",
      "shard_48888 loaded\n",
      "shard_17794 loaded\n",
      "shard_20246 loaded\n",
      "shard_41155 loaded\n",
      "shard_29551 loaded\n",
      "shard_17282 loaded\n",
      "shard_4353 loaded\n",
      "shard_42683 loaded\n",
      "shard_39717 loaded\n",
      "shard_6521 loaded\n",
      "shard_14446 loaded\n",
      "shard_5144 loaded\n",
      "shard_35018 loaded\n",
      "shard_9133 loaded\n",
      "shard_17411 loaded\n",
      "shard_13399 loaded\n",
      "shard_33628 loaded\n",
      "shard_44132 loaded\n",
      "shard_42179 loaded\n",
      "shard_46212 loaded\n",
      "shard_6338 loaded\n",
      "shard_6122 loaded\n",
      "shard_35179 loaded\n",
      "shard_4517 loaded\n",
      "shard_28606 loaded\n",
      "shard_6339 loaded\n",
      "shard_49238 loaded\n",
      "shard_25511 loaded\n",
      "shard_27209 loaded\n",
      "shard_29754 loaded\n",
      "shard_21168 loaded\n",
      "shard_7451 loaded\n",
      "shard_30340 loaded\n",
      "shard_35450 loaded\n",
      "shard_39059 loaded\n",
      "shard_15429 loaded\n",
      "shard_38495 loaded\n",
      "shard_19236 loaded\n",
      "shard_34877 loaded\n",
      "shard_29729 loaded\n",
      "shard_44587 loaded\n",
      "shard_28838 loaded\n",
      "shard_22548 loaded\n",
      "shard_41998 loaded\n",
      "shard_14223 loaded\n",
      "shard_254 loaded\n",
      "shard_37129 loaded\n",
      "shard_32753 loaded\n",
      "shard_24814 loaded\n",
      "shard_47837 loaded\n",
      "shard_11234 loaded\n",
      "shard_23344 loaded\n",
      "shard_17015 loaded\n",
      "shard_19553 loaded\n",
      "shard_32282 loaded\n",
      "shard_27468 loaded\n",
      "shard_40565 loaded\n",
      "shard_31738 loaded\n",
      "shard_14245 loaded\n",
      "shard_25322 loaded\n",
      "shard_1778 loaded\n",
      "shard_46641 loaded\n",
      "shard_39624 loaded\n",
      "shard_32517 loaded\n",
      "shard_19903 loaded\n",
      "shard_23064 loaded\n",
      "shard_813 loaded\n",
      "shard_40302 loaded\n",
      "shard_12810 loaded\n",
      "shard_49328 loaded\n",
      "shard_45387 loaded\n",
      "shard_29451 loaded\n",
      "shard_39417 loaded\n",
      "shard_35297 loaded\n",
      "shard_34604 loaded\n",
      "shard_17498 loaded\n",
      "shard_41229 loaded\n",
      "shard_47741 loaded\n",
      "shard_27762 loaded\n",
      "shard_34401 loaded\n",
      "shard_25214 loaded\n",
      "shard_2103 loaded\n",
      "shard_39035 loaded\n",
      "shard_1187 loaded\n",
      "shard_15411 loaded\n",
      "shard_24268 loaded\n",
      "shard_13192 loaded\n",
      "shard_7164 loaded\n",
      "shard_8811 loaded\n",
      "shard_16278 loaded\n",
      "shard_32429 loaded\n",
      "shard_32139 loaded\n",
      "shard_18317 loaded\n",
      "shard_43214 loaded\n",
      "shard_13126 loaded\n",
      "shard_24553 loaded\n",
      "shard_44658 loaded\n",
      "shard_12171 loaded\n",
      "shard_35094 loaded\n",
      "shard_21252 loaded\n",
      "shard_41134 loaded\n",
      "shard_20687 loaded\n",
      "shard_19059 loaded\n",
      "shard_9692 loaded\n",
      "shard_4325 loaded\n",
      "shard_44856 loaded\n",
      "shard_10861 loaded\n",
      "shard_8708 loaded\n",
      "shard_45988 loaded\n",
      "shard_16751 loaded\n",
      "shard_4633 loaded\n",
      "shard_9368 loaded\n",
      "shard_4232 loaded\n",
      "shard_28456 loaded\n",
      "shard_24595 loaded\n",
      "shard_14746 loaded\n",
      "shard_38771 loaded\n",
      "shard_3981 loaded\n",
      "shard_45731 loaded\n",
      "shard_4081 loaded\n",
      "shard_48172 loaded\n",
      "shard_11381 loaded\n",
      "shard_11178 loaded\n",
      "shard_28039 loaded\n",
      "shard_4368 loaded\n",
      "shard_37831 loaded\n",
      "shard_37073 loaded\n",
      "shard_19458 loaded\n",
      "shard_524 loaded\n",
      "shard_24546 loaded\n",
      "shard_35864 loaded\n",
      "shard_47423 loaded\n",
      "shard_32750 loaded\n",
      "shard_24574 loaded\n",
      "shard_37058 loaded\n",
      "shard_33063 loaded\n",
      "shard_13496 loaded\n",
      "shard_29997 loaded\n",
      "shard_22555 loaded\n",
      "shard_30554 loaded\n",
      "shard_32620 loaded\n",
      "shard_27636 loaded\n",
      "shard_45024 loaded\n",
      "shard_8289 loaded\n",
      "shard_32332 loaded\n",
      "shard_37735 loaded\n",
      "shard_18565 loaded\n",
      "shard_5715 loaded\n",
      "shard_40177 loaded\n",
      "shard_30532 loaded\n",
      "shard_36782 loaded\n",
      "shard_25761 loaded\n",
      "shard_22671 loaded\n",
      "shard_38696 loaded\n",
      "shard_18973 loaded\n",
      "shard_40570 loaded\n",
      "shard_710 loaded\n",
      "shard_40608 loaded\n",
      "shard_30046 loaded\n",
      "shard_42893 loaded\n",
      "shard_8667 loaded\n",
      "shard_2717 loaded\n",
      "shard_11528 loaded\n",
      "shard_25587 loaded\n",
      "shard_19286 loaded\n",
      "shard_6225 loaded\n",
      "shard_33984 loaded\n",
      "shard_14976 loaded\n",
      "shard_41791 loaded\n",
      "shard_11630 loaded\n",
      "shard_23667 loaded\n",
      "shard_39439 loaded\n",
      "shard_7028 loaded\n",
      "shard_3090 loaded\n",
      "shard_13092 loaded\n",
      "shard_46578 loaded\n",
      "shard_11151 loaded\n",
      "shard_2625 loaded\n",
      "shard_25768 loaded\n",
      "shard_17167 loaded\n",
      "shard_25692 loaded\n",
      "shard_40186 loaded\n",
      "shard_23590 loaded\n",
      "shard_46444 loaded\n",
      "shard_7213 loaded\n",
      "shard_36846 loaded\n",
      "shard_47451 loaded\n",
      "shard_37929 loaded\n",
      "shard_25018 loaded\n",
      "shard_18354 loaded\n",
      "shard_22338 loaded\n",
      "shard_17791 loaded\n",
      "shard_48196 loaded\n",
      "shard_1724 loaded\n",
      "shard_38852 loaded\n",
      "shard_16260 loaded\n",
      "shard_6765 loaded\n",
      "shard_28713 loaded\n",
      "shard_31722 loaded\n",
      "shard_43857 loaded\n",
      "shard_9805 loaded\n",
      "shard_44115 loaded\n",
      "shard_4579 loaded\n",
      "shard_3102 loaded\n",
      "shard_3029 loaded\n",
      "shard_9451 loaded\n",
      "shard_15637 loaded\n",
      "shard_13779 loaded\n",
      "shard_38915 loaded\n",
      "shard_38863 loaded\n",
      "shard_37758 loaded\n",
      "shard_25457 loaded\n",
      "shard_18113 loaded\n",
      "shard_10331 loaded\n",
      "shard_2003 loaded\n",
      "shard_32077 loaded\n",
      "shard_24157 loaded\n",
      "shard_8714 loaded\n",
      "shard_27720 loaded\n",
      "shard_33392 loaded\n",
      "shard_15699 loaded\n",
      "shard_28183 loaded\n",
      "shard_48880 loaded\n",
      "shard_48064 loaded\n",
      "shard_4437 loaded\n",
      "shard_27818 loaded\n",
      "shard_3410 loaded\n",
      "shard_49655 loaded\n",
      "shard_41585 loaded\n",
      "shard_41531 loaded\n",
      "shard_43236 loaded\n",
      "shard_22529 loaded\n",
      "shard_48807 loaded\n",
      "shard_14220 loaded\n",
      "shard_15161 loaded\n",
      "shard_46817 loaded\n",
      "shard_20496 loaded\n",
      "shard_30705 loaded\n",
      "shard_11530 loaded\n",
      "shard_33705 loaded\n",
      "shard_21598 loaded\n",
      "shard_46626 loaded\n",
      "shard_31987 loaded\n",
      "shard_14204 loaded\n",
      "shard_8805 loaded\n",
      "shard_15716 loaded\n",
      "shard_27626 loaded\n",
      "shard_24263 loaded\n",
      "shard_8131 loaded\n",
      "shard_27477 loaded\n",
      "shard_46187 loaded\n",
      "shard_1101 loaded\n",
      "shard_48052 loaded\n",
      "shard_1805 loaded\n",
      "shard_4695 loaded\n",
      "shard_3940 loaded\n",
      "shard_48967 loaded\n",
      "shard_31412 loaded\n",
      "shard_39000 loaded\n",
      "shard_18499 loaded\n",
      "shard_3372 loaded\n",
      "shard_16908 loaded\n",
      "shard_34972 loaded\n",
      "shard_29550 loaded\n",
      "shard_32012 loaded\n",
      "shard_43617 loaded\n",
      "shard_29882 loaded\n",
      "shard_41301 loaded\n",
      "shard_15180 loaded\n",
      "shard_11828 loaded\n",
      "shard_16391 loaded\n",
      "shard_6920 loaded\n",
      "shard_39658 loaded\n",
      "shard_21040 loaded\n",
      "shard_4673 loaded\n",
      "shard_31702 loaded\n",
      "shard_36864 loaded\n",
      "shard_8452 loaded\n",
      "shard_34494 loaded\n",
      "shard_16557 loaded\n",
      "shard_35143 loaded\n",
      "shard_42000 loaded\n",
      "shard_46828 loaded\n",
      "shard_48065 loaded\n",
      "shard_34362 loaded\n",
      "shard_30087 loaded\n",
      "shard_48701 loaded\n",
      "shard_47941 loaded\n",
      "shard_12080 loaded\n",
      "shard_48520 loaded\n",
      "shard_39430 loaded\n",
      "shard_26495 loaded\n",
      "shard_19087 loaded\n",
      "shard_15418 loaded\n",
      "shard_21182 loaded\n",
      "shard_49457 loaded\n",
      "shard_8353 loaded\n",
      "shard_1688 loaded\n",
      "shard_39580 loaded\n",
      "shard_47424 loaded\n",
      "shard_33311 loaded\n",
      "shard_15480 loaded\n",
      "shard_32252 loaded\n",
      "shard_19682 loaded\n",
      "shard_23736 loaded\n",
      "shard_40809 loaded\n",
      "shard_28874 loaded\n",
      "shard_26714 loaded\n",
      "shard_8446 loaded\n",
      "shard_32834 loaded\n",
      "shard_18525 loaded\n",
      "shard_15957 loaded\n",
      "shard_1398 loaded\n",
      "shard_6015 loaded\n",
      "shard_17596 loaded\n",
      "shard_10580 loaded\n",
      "shard_34908 loaded\n",
      "shard_32555 loaded\n",
      "shard_16191 loaded\n",
      "shard_39983 loaded\n",
      "shard_21954 loaded\n",
      "shard_5833 loaded\n",
      "shard_12132 loaded\n",
      "shard_5563 loaded\n",
      "shard_48282 loaded\n",
      "shard_17672 loaded\n",
      "shard_48665 loaded\n",
      "shard_10113 loaded\n",
      "shard_14530 loaded\n",
      "shard_31979 loaded\n",
      "shard_42615 loaded\n",
      "shard_46138 loaded\n",
      "shard_25376 loaded\n",
      "shard_24257 loaded\n",
      "shard_48661 loaded\n",
      "shard_42912 loaded\n",
      "shard_26461 loaded\n",
      "shard_45084 loaded\n",
      "shard_36209 loaded\n",
      "shard_30409 loaded\n",
      "shard_7693 loaded\n",
      "shard_3287 loaded\n",
      "shard_22496 loaded\n",
      "shard_18480 loaded\n",
      "shard_42406 loaded\n",
      "shard_33573 loaded\n",
      "shard_13686 loaded\n",
      "shard_36344 loaded\n",
      "shard_35193 loaded\n",
      "shard_24066 loaded\n",
      "shard_22414 loaded\n",
      "shard_45147 loaded\n",
      "shard_44393 loaded\n",
      "shard_31364 loaded\n",
      "shard_31114 loaded\n",
      "shard_29642 loaded\n",
      "shard_47920 loaded\n",
      "shard_28679 loaded\n",
      "shard_25621 loaded\n",
      "shard_45964 loaded\n",
      "shard_37872 loaded\n",
      "shard_31649 loaded\n",
      "shard_13661 loaded\n",
      "shard_23231 loaded\n",
      "shard_6888 loaded\n",
      "shard_24579 loaded\n",
      "shard_48165 loaded\n",
      "shard_29387 loaded\n",
      "shard_35480 loaded\n",
      "shard_12996 loaded\n",
      "shard_27229 loaded\n",
      "shard_3747 loaded\n",
      "shard_16872 loaded\n",
      "shard_38500 loaded\n",
      "shard_28245 loaded\n",
      "shard_32643 loaded\n",
      "shard_23393 loaded\n",
      "shard_18315 loaded\n",
      "shard_41584 loaded\n",
      "shard_39644 loaded\n",
      "shard_12261 loaded\n",
      "shard_42338 loaded\n",
      "shard_13573 loaded\n",
      "shard_23323 loaded\n",
      "shard_21310 loaded\n",
      "shard_39650 loaded\n",
      "shard_17747 loaded\n",
      "shard_26506 loaded\n",
      "shard_10414 loaded\n",
      "shard_38909 loaded\n",
      "shard_24539 loaded\n",
      "shard_33857 loaded\n",
      "shard_26224 loaded\n",
      "shard_34583 loaded\n",
      "shard_30250 loaded\n",
      "shard_33865 loaded\n",
      "shard_5459 loaded\n",
      "shard_14339 loaded\n",
      "shard_9807 loaded\n",
      "shard_29495 loaded\n",
      "shard_20301 loaded\n",
      "shard_8822 loaded\n",
      "shard_26384 loaded\n",
      "shard_15785 loaded\n",
      "shard_34558 loaded\n",
      "shard_23832 loaded\n",
      "shard_36175 loaded\n",
      "shard_36550 loaded\n",
      "shard_6783 loaded\n",
      "shard_35762 loaded\n",
      "shard_4307 loaded\n",
      "shard_5190 loaded\n",
      "shard_49040 loaded\n",
      "shard_38334 loaded\n",
      "shard_29073 loaded\n",
      "shard_25353 loaded\n",
      "shard_33730 loaded\n",
      "shard_36011 loaded\n",
      "shard_27744 loaded\n",
      "shard_28343 loaded\n",
      "shard_23133 loaded\n",
      "shard_21555 loaded\n",
      "shard_16665 loaded\n",
      "shard_45636 loaded\n",
      "shard_2491 loaded\n",
      "shard_49437 loaded\n",
      "shard_39023 loaded\n",
      "shard_6939 loaded\n",
      "shard_27191 loaded\n",
      "shard_26851 loaded\n",
      "shard_1945 loaded\n",
      "shard_36641 loaded\n",
      "shard_40981 loaded\n",
      "shard_37846 loaded\n",
      "shard_12921 loaded\n",
      "shard_45960 loaded\n",
      "shard_42430 loaded\n",
      "shard_16679 loaded\n",
      "shard_21880 loaded\n",
      "shard_3226 loaded\n",
      "shard_7514 loaded\n",
      "shard_21577 loaded\n",
      "shard_23497 loaded\n",
      "shard_38301 loaded\n",
      "shard_25516 loaded\n",
      "shard_32183 loaded\n",
      "shard_39951 loaded\n",
      "shard_48481 loaded\n",
      "shard_49061 loaded\n",
      "shard_12450 loaded\n",
      "shard_38230 loaded\n",
      "shard_13659 loaded\n",
      "shard_34692 loaded\n",
      "shard_12744 loaded\n",
      "shard_856 loaded\n",
      "shard_35694 loaded\n",
      "shard_11596 loaded\n",
      "shard_27579 loaded\n",
      "shard_23678 loaded\n",
      "shard_47642 loaded\n",
      "shard_49675 loaded\n",
      "shard_33494 loaded\n",
      "shard_2870 loaded\n",
      "shard_28569 loaded\n",
      "shard_45551 loaded\n",
      "shard_31191 loaded\n",
      "shard_18102 loaded\n",
      "shard_8502 loaded\n",
      "shard_538 loaded\n",
      "shard_14952 loaded\n",
      "shard_30548 loaded\n",
      "shard_40189 loaded\n",
      "shard_49413 loaded\n",
      "shard_11303 loaded\n",
      "shard_28510 loaded\n",
      "shard_4077 loaded\n",
      "shard_24943 loaded\n",
      "shard_13912 loaded\n",
      "shard_47433 loaded\n",
      "shard_4150 loaded\n",
      "shard_14055 loaded\n",
      "shard_29039 loaded\n",
      "shard_41278 loaded\n",
      "shard_8519 loaded\n",
      "shard_29711 loaded\n",
      "shard_4054 loaded\n",
      "shard_46150 loaded\n",
      "shard_27483 loaded\n",
      "shard_12421 loaded\n",
      "shard_32948 loaded\n",
      "shard_2682 loaded\n",
      "shard_26987 loaded\n",
      "shard_25619 loaded\n",
      "shard_20324 loaded\n",
      "shard_47055 loaded\n",
      "shard_6645 loaded\n",
      "shard_5348 loaded\n",
      "shard_39921 loaded\n",
      "shard_17581 loaded\n",
      "shard_36669 loaded\n",
      "shard_43313 loaded\n",
      "shard_33321 loaded\n",
      "shard_42864 loaded\n",
      "shard_25561 loaded\n",
      "shard_7603 loaded\n",
      "shard_15202 loaded\n",
      "shard_15675 loaded\n",
      "shard_20051 loaded\n",
      "shard_32403 loaded\n",
      "shard_5618 loaded\n",
      "shard_4860 loaded\n",
      "shard_1506 loaded\n",
      "shard_17875 loaded\n",
      "shard_9577 loaded\n",
      "shard_42610 loaded\n",
      "shard_23551 loaded\n",
      "shard_41355 loaded\n",
      "shard_6489 loaded\n",
      "shard_838 loaded\n",
      "shard_42981 loaded\n",
      "shard_30719 loaded\n",
      "shard_9351 loaded\n",
      "shard_28362 loaded\n",
      "shard_16989 loaded\n",
      "shard_35947 loaded\n",
      "shard_6078 loaded\n",
      "shard_3825 loaded\n",
      "shard_48463 loaded\n",
      "shard_45801 loaded\n",
      "shard_34246 loaded\n",
      "shard_44454 loaded\n",
      "shard_22037 loaded\n",
      "shard_48479 loaded\n",
      "shard_27188 loaded\n",
      "shard_43936 loaded\n",
      "shard_44951 loaded\n",
      "shard_40583 loaded\n",
      "shard_2146 loaded\n",
      "shard_43736 loaded\n",
      "shard_20143 loaded\n",
      "shard_22426 loaded\n",
      "shard_19249 loaded\n",
      "shard_35430 loaded\n",
      "shard_5797 loaded\n",
      "shard_9992 loaded\n",
      "shard_17544 loaded\n",
      "shard_27339 loaded\n",
      "shard_42167 loaded\n",
      "shard_21224 loaded\n",
      "shard_22233 loaded\n",
      "shard_8084 loaded\n",
      "shard_32772 loaded\n",
      "shard_422 loaded\n",
      "shard_7148 loaded\n",
      "shard_17305 loaded\n",
      "shard_9606 loaded\n",
      "shard_14639 loaded\n",
      "shard_21377 loaded\n",
      "shard_38725 loaded\n",
      "shard_48298 loaded\n",
      "shard_2678 loaded\n",
      "shard_25569 loaded\n",
      "shard_15249 loaded\n",
      "shard_47399 loaded\n",
      "shard_7678 loaded\n",
      "shard_38889 loaded\n",
      "shard_6712 loaded\n",
      "shard_26630 loaded\n",
      "shard_33673 loaded\n",
      "shard_9739 loaded\n",
      "shard_14047 loaded\n",
      "shard_35104 loaded\n",
      "shard_16274 loaded\n",
      "shard_23587 loaded\n",
      "shard_23122 loaded\n",
      "shard_6469 loaded\n",
      "shard_34677 loaded\n",
      "shard_38261 loaded\n",
      "shard_16116 loaded\n",
      "shard_38743 loaded\n",
      "shard_36334 loaded\n",
      "shard_28437 loaded\n",
      "shard_26188 loaded\n",
      "shard_32770 loaded\n",
      "shard_33728 loaded\n",
      "shard_8999 loaded\n",
      "shard_25977 loaded\n",
      "shard_15966 loaded\n",
      "shard_10882 loaded\n",
      "shard_44908 loaded\n",
      "shard_21636 loaded\n",
      "shard_32330 loaded\n",
      "shard_6143 loaded\n",
      "shard_23237 loaded\n",
      "shard_21103 loaded\n",
      "shard_21243 loaded\n",
      "shard_4432 loaded\n",
      "shard_5238 loaded\n",
      "shard_22392 loaded\n",
      "shard_39931 loaded\n",
      "shard_21779 loaded\n",
      "shard_8137 loaded\n",
      "shard_39228 loaded\n",
      "shard_16194 loaded\n",
      "shard_11378 loaded\n",
      "shard_35731 loaded\n",
      "shard_6028 loaded\n",
      "shard_26473 loaded\n",
      "shard_11503 loaded\n",
      "shard_3038 loaded\n",
      "shard_48079 loaded\n",
      "shard_25670 loaded\n",
      "shard_34587 loaded\n",
      "shard_7711 loaded\n",
      "shard_7448 loaded\n",
      "shard_28776 loaded\n",
      "shard_26304 loaded\n",
      "shard_31316 loaded\n",
      "shard_14232 loaded\n",
      "shard_41020 loaded\n",
      "shard_2667 loaded\n",
      "shard_18093 loaded\n",
      "shard_23008 loaded\n",
      "shard_27984 loaded\n",
      "shard_6614 loaded\n",
      "shard_44025 loaded\n",
      "shard_47730 loaded\n",
      "shard_48168 loaded\n",
      "shard_35857 loaded\n",
      "shard_49936 loaded\n",
      "shard_25067 loaded\n",
      "shard_15275 loaded\n",
      "shard_42805 loaded\n",
      "shard_2290 loaded\n",
      "shard_32518 loaded\n",
      "shard_30386 loaded\n",
      "shard_2000 loaded\n",
      "shard_31977 loaded\n",
      "shard_38669 loaded\n",
      "shard_41497 loaded\n",
      "shard_46842 loaded\n",
      "shard_23658 loaded\n",
      "shard_14587 loaded\n",
      "shard_39189 loaded\n",
      "shard_16247 loaded\n",
      "shard_48547 loaded\n",
      "shard_43015 loaded\n",
      "shard_49834 loaded\n",
      "shard_45364 loaded\n",
      "shard_26600 loaded\n",
      "shard_6105 loaded\n",
      "shard_21984 loaded\n",
      "shard_22756 loaded\n",
      "shard_33308 loaded\n",
      "shard_10686 loaded\n",
      "shard_41878 loaded\n",
      "shard_445 loaded\n",
      "shard_49338 loaded\n",
      "shard_48966 loaded\n",
      "shard_1624 loaded\n",
      "shard_16849 loaded\n",
      "shard_19291 loaded\n",
      "shard_9279 loaded\n",
      "shard_22393 loaded\n",
      "shard_26777 loaded\n",
      "shard_39552 loaded\n",
      "shard_37178 loaded\n",
      "shard_29095 loaded\n",
      "shard_43949 loaded\n",
      "shard_26918 loaded\n",
      "shard_6503 loaded\n",
      "shard_5149 loaded\n",
      "shard_24076 loaded\n",
      "shard_28383 loaded\n",
      "shard_45245 loaded\n",
      "shard_14607 loaded\n",
      "shard_38013 loaded\n",
      "shard_36485 loaded\n",
      "shard_10346 loaded\n",
      "shard_42138 loaded\n",
      "shard_30012 loaded\n",
      "shard_39027 loaded\n",
      "shard_38269 loaded\n",
      "shard_36383 loaded\n",
      "shard_33720 loaded\n",
      "shard_9305 loaded\n",
      "shard_41747 loaded\n",
      "shard_49564 loaded\n",
      "shard_42240 loaded\n",
      "shard_13625 loaded\n",
      "shard_9354 loaded\n",
      "shard_7079 loaded\n",
      "shard_13360 loaded\n",
      "shard_3740 loaded\n",
      "shard_47161 loaded\n",
      "shard_21277 loaded\n",
      "shard_37079 loaded\n",
      "shard_5999 loaded\n",
      "shard_39179 loaded\n",
      "shard_17535 loaded\n",
      "shard_19440 loaded\n",
      "shard_36092 loaded\n",
      "shard_28150 loaded\n",
      "shard_38064 loaded\n",
      "shard_39258 loaded\n",
      "shard_42802 loaded\n",
      "shard_24919 loaded\n",
      "shard_20550 loaded\n",
      "shard_2425 loaded\n",
      "shard_36384 loaded\n",
      "shard_37644 loaded\n",
      "shard_44250 loaded\n",
      "shard_16636 loaded\n",
      "shard_48490 loaded\n",
      "shard_10979 loaded\n",
      "shard_35139 loaded\n",
      "shard_24291 loaded\n",
      "shard_32808 loaded\n",
      "shard_46018 loaded\n",
      "shard_1835 loaded\n",
      "shard_4544 loaded\n",
      "shard_33546 loaded\n",
      "shard_32156 loaded\n",
      "shard_11944 loaded\n",
      "shard_21439 loaded\n",
      "shard_18642 loaded\n",
      "shard_131 loaded\n",
      "shard_20165 loaded\n",
      "shard_43233 loaded\n",
      "shard_21651 loaded\n",
      "shard_27123 loaded\n",
      "shard_1150 loaded\n",
      "shard_38215 loaded\n",
      "shard_6899 loaded\n",
      "shard_48960 loaded\n",
      "shard_39184 loaded\n",
      "shard_8510 loaded\n",
      "shard_41015 loaded\n",
      "shard_27243 loaded\n",
      "shard_25075 loaded\n",
      "shard_20339 loaded\n",
      "shard_32074 loaded\n",
      "shard_5032 loaded\n",
      "shard_48158 loaded\n",
      "shard_27991 loaded\n",
      "shard_9971 loaded\n",
      "shard_16273 loaded\n",
      "shard_23644 loaded\n",
      "shard_1423 loaded\n",
      "shard_18382 loaded\n",
      "shard_21630 loaded\n",
      "shard_44318 loaded\n",
      "shard_31417 loaded\n",
      "shard_47317 loaded\n",
      "shard_26809 loaded\n",
      "shard_22695 loaded\n",
      "shard_37816 loaded\n",
      "shard_37016 loaded\n",
      "shard_43902 loaded\n",
      "shard_23021 loaded\n",
      "shard_39351 loaded\n",
      "shard_15622 loaded\n",
      "shard_18203 loaded\n",
      "shard_25150 loaded\n",
      "shard_33600 loaded\n",
      "shard_23457 loaded\n",
      "shard_27 loaded\n",
      "shard_10509 loaded\n",
      "shard_10058 loaded\n",
      "shard_4492 loaded\n",
      "shard_12711 loaded\n",
      "shard_882 loaded\n",
      "shard_37210 loaded\n",
      "shard_45556 loaded\n",
      "shard_43667 loaded\n",
      "shard_16968 loaded\n",
      "shard_10926 loaded\n",
      "shard_6131 loaded\n",
      "shard_19189 loaded\n",
      "shard_14921 loaded\n",
      "shard_1305 loaded\n",
      "shard_18343 loaded\n",
      "shard_45072 loaded\n",
      "shard_35395 loaded\n",
      "shard_41698 loaded\n",
      "shard_31165 loaded\n",
      "shard_23016 loaded\n",
      "shard_1512 loaded\n",
      "shard_30626 loaded\n",
      "shard_38342 loaded\n",
      "shard_27532 loaded\n",
      "shard_17804 loaded\n",
      "shard_1834 loaded\n",
      "shard_3595 loaded\n",
      "shard_3295 loaded\n",
      "shard_20703 loaded\n",
      "shard_1121 loaded\n",
      "shard_21977 loaded\n",
      "shard_38608 loaded\n",
      "shard_11125 loaded\n",
      "shard_17278 loaded\n",
      "shard_8316 loaded\n",
      "shard_39732 loaded\n",
      "shard_26453 loaded\n",
      "shard_47663 loaded\n",
      "shard_28069 loaded\n",
      "shard_42374 loaded\n",
      "shard_42468 loaded\n",
      "shard_9278 loaded\n",
      "shard_31606 loaded\n",
      "shard_40130 loaded\n",
      "shard_29001 loaded\n",
      "shard_43979 loaded\n",
      "shard_49637 loaded\n",
      "shard_42077 loaded\n",
      "shard_11424 loaded\n",
      "shard_30977 loaded\n",
      "shard_11980 loaded\n",
      "shard_21900 loaded\n",
      "shard_1722 loaded\n",
      "shard_32150 loaded\n",
      "shard_6020 loaded\n",
      "shard_42117 loaded\n",
      "shard_40477 loaded\n",
      "shard_39127 loaded\n",
      "shard_633 loaded\n",
      "shard_44226 loaded\n",
      "shard_21218 loaded\n",
      "shard_32604 loaded\n",
      "shard_47021 loaded\n",
      "shard_28552 loaded\n",
      "shard_7706 loaded\n",
      "shard_31835 loaded\n",
      "shard_49106 loaded\n",
      "shard_37756 loaded\n",
      "shard_22097 loaded\n",
      "shard_45537 loaded\n",
      "shard_789 loaded\n",
      "shard_6637 loaded\n",
      "shard_40988 loaded\n",
      "shard_43353 loaded\n",
      "shard_18620 loaded\n",
      "shard_9035 loaded\n",
      "shard_48303 loaded\n",
      "shard_3690 loaded\n",
      "shard_37934 loaded\n",
      "shard_17949 loaded\n",
      "shard_18229 loaded\n",
      "shard_29974 loaded\n",
      "shard_14172 loaded\n",
      "shard_39130 loaded\n",
      "shard_6721 loaded\n",
      "shard_23700 loaded\n",
      "shard_42288 loaded\n",
      "shard_33585 loaded\n",
      "shard_43414 loaded\n",
      "shard_10472 loaded\n",
      "shard_44447 loaded\n",
      "shard_2608 loaded\n",
      "shard_16513 loaded\n",
      "shard_20242 loaded\n",
      "shard_40331 loaded\n",
      "shard_6087 loaded\n",
      "shard_32618 loaded\n",
      "shard_9527 loaded\n",
      "shard_15165 loaded\n",
      "shard_38662 loaded\n",
      "shard_6118 loaded\n",
      "shard_33659 loaded\n",
      "shard_19376 loaded\n",
      "shard_5546 loaded\n",
      "shard_31037 loaded\n",
      "shard_5176 loaded\n",
      "shard_12077 loaded\n",
      "shard_11496 loaded\n",
      "shard_34060 loaded\n",
      "shard_38335 loaded\n",
      "shard_7423 loaded\n",
      "shard_4207 loaded\n",
      "shard_31595 loaded\n",
      "shard_6169 loaded\n",
      "shard_21571 loaded\n",
      "shard_32483 loaded\n",
      "shard_7407 loaded\n",
      "shard_11937 loaded\n",
      "shard_12200 loaded\n",
      "shard_28891 loaded\n",
      "shard_1526 loaded\n",
      "shard_38667 loaded\n",
      "shard_17297 loaded\n",
      "shard_23386 loaded\n",
      "shard_13300 loaded\n",
      "shard_7404 loaded\n",
      "shard_47692 loaded\n",
      "shard_22443 loaded\n",
      "shard_9999 loaded\n",
      "shard_23751 loaded\n",
      "shard_11850 loaded\n",
      "shard_38932 loaded\n",
      "shard_44749 loaded\n",
      "shard_42852 loaded\n",
      "shard_39532 loaded\n",
      "shard_12634 loaded\n",
      "shard_17902 loaded\n",
      "shard_37602 loaded\n",
      "shard_20215 loaded\n",
      "shard_34886 loaded\n",
      "shard_27260 loaded\n",
      "shard_5411 loaded\n",
      "shard_4267 loaded\n",
      "shard_19475 loaded\n",
      "shard_18423 loaded\n",
      "shard_19042 loaded\n",
      "shard_11619 loaded\n",
      "shard_22337 loaded\n",
      "shard_26864 loaded\n",
      "shard_28442 loaded\n",
      "shard_37290 loaded\n",
      "shard_11421 loaded\n",
      "shard_42228 loaded\n",
      "shard_36916 loaded\n",
      "shard_13403 loaded\n",
      "shard_7038 loaded\n",
      "shard_32554 loaded\n",
      "shard_18521 loaded\n",
      "shard_32237 loaded\n",
      "shard_22736 loaded\n",
      "shard_35708 loaded\n",
      "shard_25699 loaded\n",
      "shard_29185 loaded\n",
      "shard_37206 loaded\n",
      "shard_45362 loaded\n",
      "shard_20206 loaded\n",
      "shard_10298 loaded\n",
      "shard_599 loaded\n",
      "shard_46417 loaded\n",
      "shard_35471 loaded\n",
      "shard_30951 loaded\n",
      "shard_40223 loaded\n",
      "shard_23342 loaded\n",
      "shard_42594 loaded\n",
      "shard_13411 loaded\n",
      "shard_35818 loaded\n",
      "shard_15672 loaded\n",
      "shard_17029 loaded\n",
      "shard_33454 loaded\n",
      "shard_18542 loaded\n",
      "shard_2937 loaded\n",
      "shard_32539 loaded\n",
      "shard_11281 loaded\n",
      "shard_49126 loaded\n",
      "shard_17036 loaded\n",
      "shard_46621 loaded\n",
      "shard_1806 loaded\n",
      "shard_44460 loaded\n",
      "shard_2385 loaded\n",
      "shard_41413 loaded\n",
      "shard_36134 loaded\n",
      "shard_13239 loaded\n",
      "shard_22954 loaded\n",
      "shard_11445 loaded\n",
      "shard_17943 loaded\n",
      "shard_15941 loaded\n",
      "shard_28967 loaded\n",
      "shard_46807 loaded\n",
      "shard_43895 loaded\n",
      "shard_38106 loaded\n",
      "shard_44469 loaded\n",
      "shard_41950 loaded\n",
      "shard_5980 loaded\n",
      "shard_37912 loaded\n",
      "shard_34402 loaded\n",
      "shard_19518 loaded\n",
      "shard_6612 loaded\n",
      "shard_23635 loaded\n",
      "shard_1565 loaded\n",
      "shard_47985 loaded\n",
      "shard_31023 loaded\n",
      "shard_19126 loaded\n",
      "shard_46312 loaded\n",
      "shard_9552 loaded\n",
      "shard_33566 loaded\n",
      "shard_5096 loaded\n",
      "shard_17507 loaded\n",
      "shard_18786 loaded\n",
      "shard_19370 loaded\n",
      "shard_20110 loaded\n",
      "shard_6710 loaded\n",
      "shard_21418 loaded\n",
      "shard_31067 loaded\n",
      "shard_9270 loaded\n",
      "shard_148 loaded\n",
      "shard_17635 loaded\n",
      "shard_35924 loaded\n",
      "shard_4732 loaded\n",
      "shard_34186 loaded\n",
      "shard_31419 loaded\n",
      "shard_49508 loaded\n",
      "shard_7094 loaded\n",
      "shard_3196 loaded\n",
      "shard_28228 loaded\n",
      "shard_9541 loaded\n",
      "shard_4989 loaded\n",
      "shard_6309 loaded\n",
      "shard_19628 loaded\n",
      "shard_11786 loaded\n",
      "shard_20247 loaded\n",
      "shard_20636 loaded\n",
      "shard_46144 loaded\n",
      "shard_21366 loaded\n",
      "shard_4320 loaded\n",
      "shard_21389 loaded\n",
      "shard_33985 loaded\n",
      "shard_29617 loaded\n",
      "shard_10063 loaded\n",
      "shard_42721 loaded\n",
      "shard_3600 loaded\n",
      "shard_42215 loaded\n",
      "shard_32588 loaded\n",
      "shard_40137 loaded\n",
      "shard_9470 loaded\n",
      "shard_44328 loaded\n",
      "shard_22525 loaded\n",
      "shard_48791 loaded\n",
      "shard_42991 loaded\n",
      "shard_49542 loaded\n",
      "shard_29487 loaded\n",
      "shard_38726 loaded\n",
      "shard_20371 loaded\n",
      "shard_33463 loaded\n",
      "shard_19046 loaded\n",
      "shard_9230 loaded\n",
      "shard_32920 loaded\n",
      "shard_16587 loaded\n",
      "shard_47067 loaded\n",
      "shard_14720 loaded\n",
      "shard_12762 loaded\n",
      "shard_9390 loaded\n",
      "shard_30653 loaded\n",
      "shard_3357 loaded\n",
      "shard_15615 loaded\n",
      "shard_12849 loaded\n",
      "shard_43807 loaded\n",
      "shard_5118 loaded\n",
      "shard_18923 loaded\n",
      "shard_44288 loaded\n",
      "shard_39348 loaded\n",
      "shard_26914 loaded\n",
      "shard_2209 loaded\n",
      "shard_15778 loaded\n",
      "shard_47871 loaded\n",
      "shard_31232 loaded\n",
      "shard_40096 loaded\n",
      "shard_47867 loaded\n",
      "shard_42591 loaded\n",
      "shard_28084 loaded\n",
      "shard_32300 loaded\n",
      "shard_12683 loaded\n",
      "shard_48255 loaded\n",
      "shard_15940 loaded\n",
      "shard_38492 loaded\n",
      "shard_33797 loaded\n",
      "shard_40879 loaded\n",
      "shard_7595 loaded\n",
      "shard_4357 loaded\n",
      "shard_24682 loaded\n",
      "shard_39066 loaded\n",
      "shard_43815 loaded\n",
      "shard_33831 loaded\n",
      "shard_47679 loaded\n",
      "shard_37325 loaded\n",
      "shard_47378 loaded\n",
      "shard_21929 loaded\n",
      "shard_38102 loaded\n",
      "shard_34482 loaded\n",
      "shard_15022 loaded\n",
      "shard_44965 loaded\n",
      "shard_17783 loaded\n",
      "shard_47136 loaded\n",
      "shard_47057 loaded\n",
      "shard_7533 loaded\n",
      "shard_25172 loaded\n",
      "shard_18345 loaded\n",
      "shard_17471 loaded\n",
      "shard_39967 loaded\n",
      "shard_10874 loaded\n",
      "shard_47149 loaded\n",
      "shard_32385 loaded\n",
      "shard_10159 loaded\n",
      "shard_49972 loaded\n",
      "shard_31249 loaded\n",
      "shard_25045 loaded\n",
      "shard_38850 loaded\n",
      "shard_30002 loaded\n",
      "shard_2457 loaded\n",
      "shard_48121 loaded\n",
      "shard_16769 loaded\n",
      "shard_9071 loaded\n",
      "shard_34363 loaded\n",
      "shard_24405 loaded\n",
      "shard_27146 loaded\n",
      "shard_28918 loaded\n",
      "shard_791 loaded\n",
      "shard_28786 loaded\n",
      "shard_21193 loaded\n",
      "shard_37287 loaded\n",
      "shard_10358 loaded\n",
      "shard_18901 loaded\n",
      "shard_21568 loaded\n",
      "shard_9049 loaded\n",
      "shard_26789 loaded\n",
      "shard_15313 loaded\n",
      "shard_468 loaded\n",
      "shard_32795 loaded\n",
      "shard_19000 loaded\n",
      "shard_14231 loaded\n",
      "shard_21428 loaded\n",
      "shard_37822 loaded\n",
      "shard_45921 loaded\n",
      "shard_4736 loaded\n",
      "shard_23601 loaded\n",
      "shard_2181 loaded\n",
      "shard_22908 loaded\n",
      "shard_15365 loaded\n",
      "shard_278 loaded\n",
      "shard_23030 loaded\n",
      "shard_44943 loaded\n",
      "shard_320 loaded\n",
      "shard_7704 loaded\n",
      "shard_23024 loaded\n",
      "shard_27929 loaded\n",
      "shard_1936 loaded\n",
      "shard_6067 loaded\n",
      "shard_28483 loaded\n",
      "shard_6958 loaded\n",
      "shard_42072 loaded\n",
      "shard_12126 loaded\n",
      "shard_9323 loaded\n",
      "shard_43674 loaded\n",
      "shard_49199 loaded\n",
      "shard_13170 loaded\n",
      "shard_18198 loaded\n",
      "shard_31247 loaded\n",
      "shard_39822 loaded\n",
      "shard_5193 loaded\n",
      "shard_33912 loaded\n",
      "shard_46739 loaded\n",
      "shard_42285 loaded\n",
      "shard_7683 loaded\n",
      "shard_33108 loaded\n",
      "shard_26579 loaded\n",
      "shard_16829 loaded\n",
      "shard_36165 loaded\n",
      "shard_44194 loaded\n",
      "shard_18943 loaded\n",
      "shard_44147 loaded\n",
      "shard_38808 loaded\n",
      "shard_259 loaded\n",
      "shard_6364 loaded\n",
      "shard_11709 loaded\n",
      "shard_18140 loaded\n",
      "shard_37207 loaded\n",
      "shard_5070 loaded\n",
      "shard_35364 loaded\n",
      "shard_47826 loaded\n",
      "shard_35477 loaded\n",
      "shard_17634 loaded\n",
      "shard_25170 loaded\n",
      "shard_26584 loaded\n",
      "shard_40009 loaded\n",
      "shard_45352 loaded\n",
      "shard_28145 loaded\n",
      "shard_48598 loaded\n",
      "shard_10490 loaded\n",
      "shard_27650 loaded\n",
      "shard_1365 loaded\n",
      "shard_18783 loaded\n",
      "shard_42641 loaded\n",
      "shard_34895 loaded\n",
      "shard_22506 loaded\n",
      "shard_46550 loaded\n",
      "shard_247 loaded\n",
      "shard_13015 loaded\n",
      "shard_7264 loaded\n",
      "shard_33528 loaded\n",
      "shard_48835 loaded\n",
      "shard_20752 loaded\n",
      "shard_10270 loaded\n",
      "shard_8813 loaded\n",
      "shard_47026 loaded\n",
      "shard_38478 loaded\n",
      "shard_21635 loaded\n",
      "shard_42320 loaded\n",
      "shard_44936 loaded\n",
      "shard_641 loaded\n",
      "shard_40649 loaded\n",
      "shard_46315 loaded\n",
      "shard_8975 loaded\n",
      "shard_17162 loaded\n",
      "shard_20551 loaded\n",
      "shard_13896 loaded\n",
      "shard_35021 loaded\n",
      "shard_19833 loaded\n",
      "shard_25759 loaded\n",
      "shard_44101 loaded\n",
      "shard_21200 loaded\n",
      "shard_31318 loaded\n",
      "shard_13310 loaded\n",
      "shard_19797 loaded\n",
      "shard_47683 loaded\n",
      "shard_38084 loaded\n",
      "shard_34014 loaded\n",
      "shard_27737 loaded\n",
      "shard_38750 loaded\n",
      "shard_3187 loaded\n",
      "shard_12204 loaded\n",
      "shard_27097 loaded\n",
      "shard_7159 loaded\n",
      "shard_26259 loaded\n",
      "shard_2896 loaded\n",
      "shard_24885 loaded\n",
      "shard_5632 loaded\n",
      "shard_38035 loaded\n",
      "shard_11002 loaded\n",
      "shard_40273 loaded\n",
      "shard_32533 loaded\n",
      "shard_26754 loaded\n",
      "shard_23524 loaded\n",
      "shard_44515 loaded\n",
      "shard_38823 loaded\n",
      "shard_16022 loaded\n",
      "shard_1927 loaded\n",
      "shard_47219 loaded\n",
      "shard_39964 loaded\n",
      "shard_34203 loaded\n",
      "shard_18748 loaded\n",
      "shard_28654 loaded\n",
      "shard_40165 loaded\n",
      "shard_34601 loaded\n",
      "shard_10909 loaded\n",
      "shard_46240 loaded\n",
      "shard_22575 loaded\n",
      "shard_19636 loaded\n",
      "shard_21897 loaded\n",
      "shard_9178 loaded\n",
      "shard_12216 loaded\n",
      "shard_35015 loaded\n",
      "shard_49786 loaded\n",
      "shard_3249 loaded\n",
      "shard_19765 loaded\n",
      "shard_30337 loaded\n",
      "shard_13359 loaded\n",
      "shard_18614 loaded\n",
      "shard_23746 loaded\n",
      "shard_36682 loaded\n",
      "shard_25466 loaded\n",
      "shard_48284 loaded\n",
      "shard_22319 loaded\n",
      "shard_30320 loaded\n",
      "shard_44271 loaded\n",
      "shard_19910 loaded\n",
      "shard_42501 loaded\n",
      "shard_33041 loaded\n",
      "shard_37789 loaded\n",
      "shard_19978 loaded\n",
      "shard_13073 loaded\n",
      "shard_14566 loaded\n",
      "shard_12596 loaded\n",
      "shard_47877 loaded\n",
      "shard_15032 loaded\n",
      "shard_17337 loaded\n",
      "shard_26760 loaded\n",
      "shard_17313 loaded\n",
      "shard_23966 loaded\n",
      "shard_32049 loaded\n",
      "shard_42278 loaded\n",
      "shard_32292 loaded\n",
      "shard_30404 loaded\n",
      "shard_31651 loaded\n",
      "shard_39131 loaded\n",
      "shard_37115 loaded\n",
      "shard_16939 loaded\n",
      "shard_37015 loaded\n",
      "shard_35666 loaded\n",
      "shard_1265 loaded\n",
      "shard_39525 loaded\n",
      "shard_7842 loaded\n",
      "shard_22858 loaded\n",
      "shard_46084 loaded\n",
      "shard_45162 loaded\n",
      "shard_3731 loaded\n",
      "shard_27515 loaded\n",
      "shard_41955 loaded\n",
      "shard_14816 loaded\n",
      "shard_23950 loaded\n",
      "shard_27651 loaded\n",
      "shard_11460 loaded\n",
      "shard_33746 loaded\n",
      "shard_26121 loaded\n",
      "shard_22834 loaded\n",
      "shard_45822 loaded\n",
      "shard_41692 loaded\n",
      "shard_46276 loaded\n",
      "shard_11953 loaded\n",
      "shard_31376 loaded\n",
      "shard_25401 loaded\n",
      "shard_15191 loaded\n",
      "shard_39410 loaded\n",
      "shard_45427 loaded\n",
      "shard_9067 loaded\n",
      "shard_5416 loaded\n",
      "shard_7508 loaded\n",
      "shard_36656 loaded\n",
      "shard_35004 loaded\n",
      "shard_46694 loaded\n",
      "shard_39 loaded\n",
      "shard_21626 loaded\n",
      "shard_21324 loaded\n",
      "shard_33151 loaded\n",
      "shard_14072 loaded\n",
      "shard_44293 loaded\n",
      "shard_46909 loaded\n",
      "shard_46124 loaded\n",
      "shard_479 loaded\n",
      "shard_39562 loaded\n",
      "shard_6541 loaded\n",
      "shard_48039 loaded\n",
      "shard_49990 loaded\n",
      "shard_15401 loaded\n",
      "shard_1331 loaded\n",
      "shard_42144 loaded\n",
      "shard_37679 loaded\n",
      "shard_19252 loaded\n",
      "shard_10645 loaded\n",
      "shard_6449 loaded\n",
      "shard_12768 loaded\n",
      "shard_750 loaded\n",
      "shard_46835 loaded\n",
      "shard_692 loaded\n",
      "shard_480 loaded\n",
      "shard_1651 loaded\n",
      "shard_26423 loaded\n",
      "shard_9478 loaded\n",
      "shard_27564 loaded\n",
      "shard_30274 loaded\n",
      "shard_8726 loaded\n",
      "shard_42836 loaded\n",
      "shard_16935 loaded\n",
      "shard_1174 loaded\n",
      "shard_29640 loaded\n",
      "shard_36748 loaded\n",
      "shard_19686 loaded\n",
      "shard_34290 loaded\n",
      "shard_9812 loaded\n",
      "shard_3021 loaded\n",
      "shard_30324 loaded\n",
      "shard_40529 loaded\n",
      "shard_47857 loaded\n",
      "shard_25032 loaded\n",
      "shard_29731 loaded\n",
      "shard_44086 loaded\n",
      "shard_7725 loaded\n",
      "shard_11514 loaded\n",
      "shard_40116 loaded\n",
      "shard_35725 loaded\n",
      "shard_44330 loaded\n",
      "shard_30349 loaded\n",
      "shard_5428 loaded\n",
      "shard_40801 loaded\n",
      "shard_47059 loaded\n",
      "shard_42084 loaded\n",
      "shard_39602 loaded\n",
      "shard_36022 loaded\n",
      "shard_15207 loaded\n",
      "shard_41690 loaded\n",
      "shard_42552 loaded\n",
      "shard_42426 loaded\n",
      "shard_23888 loaded\n",
      "shard_13351 loaded\n",
      "shard_10095 loaded\n",
      "shard_47998 loaded\n",
      "shard_25834 loaded\n",
      "shard_17419 loaded\n",
      "shard_44578 loaded\n",
      "shard_22904 loaded\n",
      "shard_23365 loaded\n",
      "shard_43632 loaded\n",
      "shard_15001 loaded\n",
      "shard_30978 loaded\n",
      "shard_1515 loaded\n",
      "shard_31902 loaded\n",
      "shard_30754 loaded\n",
      "shard_43075 loaded\n",
      "shard_33046 loaded\n",
      "shard_12290 loaded\n",
      "shard_27760 loaded\n",
      "shard_36901 loaded\n",
      "shard_42936 loaded\n",
      "shard_1334 loaded\n",
      "shard_29654 loaded\n",
      "shard_30830 loaded\n",
      "shard_49866 loaded\n",
      "shard_689 loaded\n",
      "shard_24727 loaded\n",
      "shard_8719 loaded\n",
      "shard_13077 loaded\n",
      "shard_36808 loaded\n",
      "shard_28315 loaded\n",
      "shard_9619 loaded\n",
      "shard_42132 loaded\n",
      "shard_36006 loaded\n",
      "shard_11705 loaded\n",
      "shard_773 loaded\n",
      "shard_13539 loaded\n",
      "shard_46827 loaded\n",
      "shard_18555 loaded\n",
      "shard_29188 loaded\n",
      "shard_36993 loaded\n",
      "shard_14153 loaded\n",
      "shard_37859 loaded\n",
      "shard_9273 loaded\n",
      "shard_36751 loaded\n",
      "shard_10463 loaded\n",
      "shard_25951 loaded\n",
      "shard_42958 loaded\n",
      "shard_19082 loaded\n",
      "shard_19504 loaded\n",
      "shard_41181 loaded\n",
      "shard_43778 loaded\n",
      "shard_14626 loaded\n",
      "shard_39743 loaded\n",
      "shard_27244 loaded\n",
      "shard_38114 loaded\n",
      "shard_15649 loaded\n",
      "shard_6386 loaded\n",
      "shard_48994 loaded\n",
      "shard_1885 loaded\n",
      "shard_12185 loaded\n",
      "shard_35967 loaded\n",
      "shard_49438 loaded\n",
      "shard_44854 loaded\n",
      "shard_16184 loaded\n",
      "shard_27697 loaded\n",
      "shard_12317 loaded\n",
      "shard_3506 loaded\n",
      "shard_30890 loaded\n",
      "shard_345 loaded\n",
      "shard_492 loaded\n",
      "shard_19425 loaded\n",
      "shard_15998 loaded\n",
      "shard_45998 loaded\n",
      "shard_47116 loaded\n",
      "shard_16379 loaded\n",
      "shard_11906 loaded\n",
      "shard_21438 loaded\n",
      "shard_37749 loaded\n",
      "shard_16661 loaded\n",
      "shard_31750 loaded\n",
      "shard_2600 loaded\n",
      "shard_10869 loaded\n",
      "shard_22542 loaded\n",
      "shard_3706 loaded\n",
      "shard_32998 loaded\n",
      "shard_20606 loaded\n",
      "shard_14448 loaded\n",
      "shard_49912 loaded\n",
      "shard_2586 loaded\n",
      "shard_37992 loaded\n",
      "shard_26844 loaded\n",
      "shard_16850 loaded\n",
      "shard_35232 loaded\n",
      "shard_44075 loaded\n",
      "shard_12947 loaded\n",
      "shard_30657 loaded\n",
      "shard_10653 loaded\n",
      "shard_47294 loaded\n",
      "shard_13776 loaded\n",
      "shard_2227 loaded\n",
      "shard_40705 loaded\n",
      "shard_9563 loaded\n",
      "shard_15250 loaded\n",
      "shard_20860 loaded\n",
      "shard_7392 loaded\n",
      "shard_14750 loaded\n",
      "shard_39355 loaded\n",
      "shard_39666 loaded\n",
      "shard_25899 loaded\n",
      "shard_15143 loaded\n",
      "shard_42935 loaded\n",
      "shard_7990 loaded\n",
      "shard_10801 loaded\n",
      "shard_31392 loaded\n",
      "shard_7450 loaded\n",
      "shard_42918 loaded\n",
      "shard_42578 loaded\n",
      "shard_48629 loaded\n",
      "shard_9800 loaded\n",
      "shard_15591 loaded\n",
      "shard_36858 loaded\n",
      "shard_18437 loaded\n",
      "shard_10739 loaded\n",
      "shard_31395 loaded\n",
      "shard_26467 loaded\n",
      "shard_28512 loaded\n",
      "shard_26933 loaded\n",
      "shard_19808 loaded\n",
      "shard_35023 loaded\n",
      "shard_16127 loaded\n",
      "shard_42069 loaded\n",
      "shard_30416 loaded\n",
      "shard_26330 loaded\n",
      "shard_23843 loaded\n",
      "shard_6502 loaded\n",
      "shard_9795 loaded\n",
      "shard_14210 loaded\n",
      "shard_40052 loaded\n",
      "shard_18180 loaded\n",
      "shard_27849 loaded\n",
      "shard_33592 loaded\n",
      "shard_43003 loaded\n",
      "shard_43052 loaded\n",
      "shard_34240 loaded\n",
      "shard_4354 loaded\n",
      "shard_36863 loaded\n",
      "shard_33808 loaded\n",
      "shard_42611 loaded\n",
      "shard_17123 loaded\n",
      "shard_24126 loaded\n",
      "shard_6761 loaded\n",
      "shard_30789 loaded\n",
      "shard_9347 loaded\n",
      "shard_31071 loaded\n",
      "shard_35502 loaded\n",
      "shard_16843 loaded\n",
      "shard_37278 loaded\n",
      "shard_5187 loaded\n",
      "shard_35885 loaded\n",
      "shard_9268 loaded\n",
      "shard_32734 loaded\n",
      "shard_27830 loaded\n",
      "shard_38292 loaded\n",
      "shard_10408 loaded\n",
      "shard_33976 loaded\n",
      "shard_11004 loaded\n",
      "shard_6408 loaded\n",
      "shard_11754 loaded\n",
      "shard_28544 loaded\n",
      "shard_26521 loaded\n",
      "shard_6231 loaded\n",
      "shard_24518 loaded\n",
      "shard_2735 loaded\n",
      "shard_43676 loaded\n",
      "shard_17955 loaded\n",
      "shard_16390 loaded\n",
      "shard_10447 loaded\n",
      "shard_17530 loaded\n",
      "shard_14896 loaded\n",
      "shard_12278 loaded\n",
      "shard_2492 loaded\n",
      "shard_45755 loaded\n",
      "shard_35970 loaded\n",
      "shard_34641 loaded\n",
      "shard_684 loaded\n",
      "shard_45561 loaded\n",
      "shard_28942 loaded\n",
      "shard_10345 loaded\n",
      "shard_36053 loaded\n",
      "shard_23227 loaded\n",
      "shard_28243 loaded\n",
      "shard_5386 loaded\n",
      "shard_5648 loaded\n",
      "shard_31639 loaded\n",
      "shard_33750 loaded\n",
      "shard_914 loaded\n",
      "shard_18874 loaded\n",
      "shard_18618 loaded\n",
      "shard_18612 loaded\n",
      "shard_39656 loaded\n",
      "shard_22807 loaded\n",
      "shard_30473 loaded\n",
      "shard_40247 loaded\n",
      "shard_42307 loaded\n",
      "shard_22427 loaded\n",
      "shard_22559 loaded\n",
      "shard_9742 loaded\n",
      "shard_3899 loaded\n",
      "shard_45919 loaded\n",
      "shard_4204 loaded\n",
      "shard_21220 loaded\n",
      "shard_3268 loaded\n",
      "shard_9964 loaded\n",
      "shard_26969 loaded\n",
      "shard_43250 loaded\n",
      "shard_49989 loaded\n",
      "shard_121 loaded\n",
      "shard_8867 loaded\n",
      "shard_4173 loaded\n",
      "shard_20399 loaded\n",
      "shard_41100 loaded\n",
      "shard_43562 loaded\n",
      "shard_48726 loaded\n",
      "shard_27491 loaded\n",
      "shard_6747 loaded\n",
      "shard_4783 loaded\n",
      "shard_28154 loaded\n",
      "shard_31674 loaded\n",
      "shard_47450 loaded\n",
      "shard_32852 loaded\n",
      "shard_8781 loaded\n",
      "shard_24756 loaded\n",
      "shard_8236 loaded\n",
      "shard_6511 loaded\n",
      "shard_23145 loaded\n",
      "shard_27021 loaded\n",
      "shard_3926 loaded\n",
      "shard_19925 loaded\n",
      "shard_12981 loaded\n",
      "shard_1654 loaded\n",
      "shard_18181 loaded\n",
      "shard_10790 loaded\n",
      "shard_27205 loaded\n",
      "shard_22242 loaded\n",
      "shard_25068 loaded\n",
      "shard_26835 loaded\n",
      "shard_27938 loaded\n",
      "shard_37013 loaded\n",
      "shard_16075 loaded\n",
      "shard_3810 loaded\n",
      "shard_1950 loaded\n",
      "shard_38383 loaded\n",
      "shard_28272 loaded\n",
      "shard_35680 loaded\n",
      "shard_46427 loaded\n",
      "shard_5602 loaded\n",
      "shard_37157 loaded\n",
      "shard_27622 loaded\n",
      "shard_44910 loaded\n",
      "shard_3166 loaded\n",
      "shard_24827 loaded\n",
      "shard_23664 loaded\n",
      "shard_35719 loaded\n",
      "shard_2175 loaded\n",
      "shard_39298 loaded\n",
      "shard_33719 loaded\n",
      "shard_8361 loaded\n",
      "shard_20465 loaded\n",
      "shard_3760 loaded\n",
      "shard_41436 loaded\n",
      "shard_43366 loaded\n",
      "shard_29885 loaded\n",
      "shard_35752 loaded\n",
      "shard_37259 loaded\n",
      "shard_26262 loaded\n",
      "shard_5134 loaded\n",
      "shard_8647 loaded\n",
      "shard_32472 loaded\n",
      "shard_33134 loaded\n",
      "shard_21715 loaded\n",
      "shard_34678 loaded\n",
      "shard_19654 loaded\n",
      "shard_35133 loaded\n",
      "shard_4427 loaded\n",
      "shard_45338 loaded\n",
      "shard_37976 loaded\n",
      "shard_15071 loaded\n",
      "shard_43196 loaded\n",
      "shard_39902 loaded\n",
      "shard_42693 loaded\n",
      "shard_453 loaded\n",
      "shard_22460 loaded\n",
      "shard_47292 loaded\n",
      "shard_19806 loaded\n",
      "shard_20310 loaded\n",
      "shard_44099 loaded\n",
      "shard_1420 loaded\n",
      "shard_3719 loaded\n",
      "shard_42670 loaded\n",
      "shard_44924 loaded\n",
      "shard_26154 loaded\n",
      "shard_27424 loaded\n",
      "shard_4874 loaded\n",
      "shard_12901 loaded\n",
      "shard_12702 loaded\n",
      "shard_31164 loaded\n",
      "shard_2984 loaded\n",
      "shard_33143 loaded\n",
      "shard_11831 loaded\n",
      "shard_22766 loaded\n",
      "shard_35250 loaded\n",
      "shard_27289 loaded\n",
      "shard_35148 loaded\n",
      "shard_6135 loaded\n",
      "shard_35460 loaded\n",
      "shard_21221 loaded\n",
      "shard_13602 loaded\n",
      "shard_19877 loaded\n",
      "shard_47323 loaded\n",
      "shard_8873 loaded\n",
      "shard_6060 loaded\n",
      "shard_49189 loaded\n",
      "shard_38937 loaded\n",
      "shard_4771 loaded\n",
      "shard_13684 loaded\n",
      "shard_36303 loaded\n",
      "shard_36469 loaded\n",
      "shard_39807 loaded\n",
      "shard_35806 loaded\n",
      "shard_19166 loaded\n",
      "shard_5880 loaded\n",
      "shard_34488 loaded\n",
      "shard_23060 loaded\n",
      "shard_6137 loaded\n",
      "shard_18085 loaded\n",
      "shard_7295 loaded\n",
      "shard_26272 loaded\n",
      "shard_39321 loaded\n",
      "shard_15678 loaded\n",
      "shard_32989 loaded\n",
      "shard_18267 loaded\n",
      "shard_14111 loaded\n",
      "shard_248 loaded\n",
      "shard_23013 loaded\n",
      "shard_12436 loaded\n",
      "shard_22768 loaded\n",
      "shard_20609 loaded\n",
      "shard_48220 loaded\n",
      "shard_10904 loaded\n",
      "shard_48775 loaded\n",
      "shard_2252 loaded\n",
      "shard_46517 loaded\n",
      "shard_16901 loaded\n",
      "shard_33844 loaded\n",
      "shard_18539 loaded\n",
      "shard_28545 loaded\n",
      "shard_40124 loaded\n",
      "shard_13324 loaded\n",
      "shard_42907 loaded\n",
      "shard_44726 loaded\n",
      "shard_2964 loaded\n",
      "shard_33225 loaded\n",
      "shard_43864 loaded\n",
      "shard_31509 loaded\n",
      "shard_11283 loaded\n",
      "shard_35540 loaded\n",
      "shard_23707 loaded\n",
      "shard_4542 loaded\n",
      "shard_1630 loaded\n",
      "shard_19656 loaded\n",
      "shard_2448 loaded\n",
      "shard_16556 loaded\n",
      "shard_6031 loaded\n",
      "shard_6171 loaded\n",
      "shard_14685 loaded\n",
      "shard_24530 loaded\n",
      "shard_42303 loaded\n",
      "shard_41216 loaded\n",
      "shard_40517 loaded\n",
      "shard_29961 loaded\n",
      "shard_44651 loaded\n",
      "shard_47441 loaded\n",
      "shard_25219 loaded\n",
      "shard_15844 loaded\n",
      "shard_13479 loaded\n",
      "shard_42166 loaded\n",
      "shard_24287 loaded\n",
      "shard_4798 loaded\n",
      "shard_1002 loaded\n",
      "shard_14176 loaded\n",
      "shard_37197 loaded\n",
      "shard_15130 loaded\n",
      "shard_37857 loaded\n",
      "shard_31065 loaded\n",
      "shard_45302 loaded\n",
      "shard_16046 loaded\n",
      "shard_34733 loaded\n",
      "shard_6860 loaded\n",
      "shard_43435 loaded\n",
      "shard_15703 loaded\n",
      "shard_1094 loaded\n",
      "shard_37209 loaded\n",
      "shard_45712 loaded\n",
      "shard_25972 loaded\n",
      "shard_9568 loaded\n",
      "shard_35420 loaded\n",
      "shard_24559 loaded\n",
      "shard_4905 loaded\n",
      "shard_13286 loaded\n",
      "shard_3750 loaded\n",
      "shard_49814 loaded\n",
      "shard_16719 loaded\n",
      "shard_17252 loaded\n",
      "shard_15539 loaded\n",
      "shard_31849 loaded\n",
      "shard_36986 loaded\n",
      "shard_3801 loaded\n",
      "shard_19490 loaded\n",
      "shard_25662 loaded\n",
      "shard_42096 loaded\n",
      "shard_45720 loaded\n",
      "shard_39256 loaded\n",
      "shard_12353 loaded\n",
      "shard_32860 loaded\n",
      "shard_41034 loaded\n",
      "shard_28946 loaded\n",
      "shard_28756 loaded\n",
      "shard_3415 loaded\n",
      "shard_30681 loaded\n",
      "shard_607 loaded\n",
      "shard_17663 loaded\n",
      "shard_36474 loaded\n",
      "shard_30867 loaded\n",
      "shard_17244 loaded\n",
      "shard_17155 loaded\n",
      "shard_17091 loaded\n",
      "shard_40078 loaded\n",
      "shard_69 loaded\n",
      "shard_32368 loaded\n",
      "shard_37123 loaded\n",
      "shard_31103 loaded\n",
      "shard_47986 loaded\n",
      "shard_39418 loaded\n",
      "shard_41401 loaded\n",
      "shard_42124 loaded\n",
      "shard_31739 loaded\n",
      "shard_18701 loaded\n",
      "shard_2663 loaded\n",
      "shard_10611 loaded\n",
      "shard_2182 loaded\n",
      "shard_12130 loaded\n",
      "shard_37378 loaded\n",
      "shard_28829 loaded\n",
      "shard_12161 loaded\n",
      "shard_4254 loaded\n",
      "shard_16164 loaded\n",
      "shard_34277 loaded\n",
      "shard_48009 loaded\n",
      "shard_26307 loaded\n",
      "shard_14972 loaded\n",
      "shard_15282 loaded\n",
      "shard_34526 loaded\n",
      "shard_41688 loaded\n",
      "shard_3469 loaded\n",
      "shard_42236 loaded\n",
      "shard_17377 loaded\n",
      "shard_20834 loaded\n",
      "shard_28205 loaded\n",
      "shard_18936 loaded\n",
      "shard_28201 loaded\n",
      "shard_13579 loaded\n",
      "shard_2743 loaded\n",
      "shard_43547 loaded\n",
      "shard_41517 loaded\n",
      "shard_5907 loaded\n",
      "shard_45689 loaded\n",
      "shard_41276 loaded\n",
      "shard_31900 loaded\n",
      "shard_23369 loaded\n",
      "shard_2666 loaded\n",
      "shard_27702 loaded\n",
      "shard_47680 loaded\n",
      "shard_38558 loaded\n",
      "shard_31502 loaded\n",
      "shard_34931 loaded\n",
      "shard_600 loaded\n",
      "shard_26568 loaded\n",
      "shard_46459 loaded\n",
      "shard_44751 loaded\n",
      "shard_44285 loaded\n",
      "shard_28522 loaded\n",
      "shard_18639 loaded\n",
      "shard_19604 loaded\n",
      "shard_37638 loaded\n",
      "shard_44762 loaded\n",
      "shard_5576 loaded\n",
      "shard_11134 loaded\n",
      "shard_14321 loaded\n",
      "shard_40161 loaded\n",
      "shard_2990 loaded\n",
      "shard_14924 loaded\n",
      "shard_31692 loaded\n",
      "shard_18297 loaded\n",
      "shard_38101 loaded\n",
      "shard_5172 loaded\n",
      "shard_34565 loaded\n",
      "shard_6352 loaded\n",
      "shard_25403 loaded\n",
      "shard_4149 loaded\n",
      "shard_45100 loaded\n",
      "shard_29994 loaded\n",
      "shard_38058 loaded\n",
      "shard_32876 loaded\n",
      "shard_42116 loaded\n",
      "shard_16448 loaded\n",
      "shard_11009 loaded\n",
      "shard_44071 loaded\n",
      "shard_43754 loaded\n",
      "shard_7643 loaded\n",
      "shard_13587 loaded\n",
      "shard_45141 loaded\n",
      "shard_21590 loaded\n",
      "shard_42241 loaded\n",
      "shard_41928 loaded\n",
      "shard_38157 loaded\n",
      "shard_10568 loaded\n",
      "shard_15193 loaded\n",
      "shard_40466 loaded\n",
      "shard_22231 loaded\n",
      "shard_16453 loaded\n",
      "shard_26087 loaded\n",
      "shard_27908 loaded\n",
      "shard_2716 loaded\n",
      "shard_18482 loaded\n",
      "shard_47771 loaded\n",
      "shard_818 loaded\n",
      "shard_46581 loaded\n",
      "shard_17506 loaded\n",
      "shard_14004 loaded\n",
      "shard_21270 loaded\n",
      "shard_7302 loaded\n",
      "shard_20306 loaded\n",
      "shard_28997 loaded\n",
      "shard_48753 loaded\n",
      "shard_20543 loaded\n",
      "shard_21289 loaded\n",
      "shard_34282 loaded\n",
      "shard_27416 loaded\n",
      "shard_18000 loaded\n",
      "shard_19608 loaded\n",
      "shard_31810 loaded\n",
      "shard_14679 loaded\n",
      "shard_22159 loaded\n",
      "shard_43553 loaded\n",
      "shard_41596 loaded\n",
      "shard_15107 loaded\n",
      "shard_16957 loaded\n",
      "shard_2976 loaded\n",
      "shard_2619 loaded\n",
      "shard_120 loaded\n",
      "shard_27223 loaded\n",
      "shard_41234 loaded\n",
      "shard_1650 loaded\n",
      "shard_22800 loaded\n",
      "shard_33144 loaded\n",
      "shard_41670 loaded\n",
      "shard_38458 loaded\n",
      "shard_2556 loaded\n",
      "shard_45457 loaded\n",
      "shard_18123 loaded\n",
      "shard_21172 loaded\n",
      "shard_4708 loaded\n",
      "shard_12718 loaded\n",
      "shard_1549 loaded\n",
      "shard_41259 loaded\n",
      "shard_19852 loaded\n",
      "shard_12809 loaded\n",
      "shard_18584 loaded\n",
      "shard_26170 loaded\n",
      "shard_28409 loaded\n",
      "shard_10779 loaded\n",
      "shard_37801 loaded\n",
      "shard_12502 loaded\n",
      "shard_1658 loaded\n",
      "shard_14574 loaded\n",
      "shard_11252 loaded\n",
      "shard_29445 loaded\n",
      "shard_11955 loaded\n",
      "shard_2599 loaded\n",
      "shard_19030 loaded\n",
      "shard_1706 loaded\n",
      "shard_44392 loaded\n",
      "shard_19017 loaded\n",
      "shard_46855 loaded\n",
      "shard_28737 loaded\n",
      "shard_43285 loaded\n",
      "shard_12824 loaded\n",
      "shard_24870 loaded\n",
      "shard_17696 loaded\n",
      "shard_40650 loaded\n",
      "shard_1349 loaded\n",
      "shard_16179 loaded\n",
      "shard_287 loaded\n",
      "shard_36427 loaded\n",
      "shard_7777 loaded\n",
      "shard_27761 loaded\n",
      "shard_24842 loaded\n",
      "shard_29966 loaded\n",
      "shard_19278 loaded\n",
      "shard_12251 loaded\n",
      "shard_47267 loaded\n",
      "shard_45736 loaded\n",
      "shard_45136 loaded\n",
      "shard_11998 loaded\n",
      "shard_37645 loaded\n",
      "shard_37029 loaded\n",
      "shard_5944 loaded\n",
      "shard_48412 loaded\n",
      "shard_24079 loaded\n",
      "shard_4787 loaded\n",
      "shard_35675 loaded\n",
      "shard_11939 loaded\n",
      "shard_30877 loaded\n",
      "shard_32371 loaded\n",
      "shard_4889 loaded\n",
      "shard_7217 loaded\n",
      "shard_32693 loaded\n",
      "shard_3350 loaded\n",
      "shard_5324 loaded\n",
      "shard_35019 loaded\n",
      "shard_14877 loaded\n",
      "shard_24571 loaded\n",
      "shard_2109 loaded\n",
      "shard_40810 loaded\n",
      "shard_1151 loaded\n",
      "shard_44977 loaded\n",
      "shard_49603 loaded\n",
      "shard_31345 loaded\n",
      "shard_2444 loaded\n",
      "shard_9231 loaded\n",
      "shard_12867 loaded\n",
      "shard_38810 loaded\n",
      "shard_13313 loaded\n",
      "shard_2475 loaded\n",
      "shard_44133 loaded\n",
      "shard_22264 loaded\n",
      "shard_45463 loaded\n",
      "shard_5060 loaded\n",
      "shard_7770 loaded\n",
      "shard_23728 loaded\n",
      "shard_30022 loaded\n",
      "shard_27294 loaded\n",
      "shard_24528 loaded\n",
      "shard_21729 loaded\n",
      "shard_44139 loaded\n",
      "shard_33942 loaded\n",
      "shard_37226 loaded\n",
      "shard_39794 loaded\n",
      "shard_20423 loaded\n",
      "shard_3301 loaded\n",
      "shard_3229 loaded\n",
      "shard_39498 loaded\n",
      "shard_9791 loaded\n",
      "shard_40733 loaded\n",
      "shard_32626 loaded\n",
      "shard_23772 loaded\n",
      "shard_26239 loaded\n",
      "shard_7629 loaded\n",
      "shard_9589 loaded\n",
      "shard_49266 loaded\n",
      "shard_44189 loaded\n",
      "shard_43036 loaded\n",
      "shard_43648 loaded\n",
      "shard_48366 loaded\n",
      "shard_30592 loaded\n",
      "shard_16001 loaded\n",
      "shard_2066 loaded\n",
      "shard_23410 loaded\n",
      "shard_26545 loaded\n",
      "shard_15935 loaded\n",
      "shard_27199 loaded\n",
      "shard_14373 loaded\n",
      "shard_39754 loaded\n",
      "shard_49151 loaded\n",
      "shard_35888 loaded\n",
      "shard_2709 loaded\n",
      "shard_21891 loaded\n",
      "shard_6805 loaded\n",
      "shard_27503 loaded\n",
      "shard_14277 loaded\n",
      "shard_24022 loaded\n",
      "shard_20966 loaded\n",
      "shard_13471 loaded\n",
      "shard_37086 loaded\n",
      "shard_46796 loaded\n",
      "shard_10470 loaded\n",
      "shard_24061 loaded\n",
      "shard_49348 loaded\n",
      "shard_31116 loaded\n",
      "shard_26392 loaded\n",
      "shard_9819 loaded\n",
      "shard_49955 loaded\n",
      "shard_5596 loaded\n",
      "shard_38939 loaded\n",
      "shard_23676 loaded\n",
      "shard_36047 loaded\n",
      "shard_42559 loaded\n",
      "shard_35251 loaded\n",
      "shard_23588 loaded\n",
      "shard_40023 loaded\n",
      "shard_41741 loaded\n",
      "shard_22638 loaded\n",
      "shard_43027 loaded\n",
      "shard_37465 loaded\n",
      "shard_11638 loaded\n",
      "shard_18149 loaded\n",
      "shard_42705 loaded\n",
      "shard_493 loaded\n",
      "shard_24652 loaded\n",
      "shard_25901 loaded\n",
      "shard_31440 loaded\n",
      "shard_32983 loaded\n",
      "shard_24566 loaded\n",
      "shard_7426 loaded\n",
      "shard_21828 loaded\n",
      "shard_39625 loaded\n",
      "shard_30761 loaded\n",
      "shard_16675 loaded\n",
      "shard_20276 loaded\n",
      "shard_36835 loaded\n",
      "shard_332 loaded\n",
      "shard_45775 loaded\n",
      "shard_20540 loaded\n",
      "shard_24675 loaded\n",
      "shard_18399 loaded\n",
      "shard_46221 loaded\n",
      "shard_32840 loaded\n",
      "shard_17515 loaded\n",
      "shard_30707 loaded\n",
      "shard_14090 loaded\n",
      "shard_30868 loaded\n",
      "shard_35620 loaded\n",
      "shard_12456 loaded\n",
      "shard_15883 loaded\n",
      "shard_168 loaded\n",
      "shard_36995 loaded\n",
      "shard_44502 loaded\n",
      "shard_26677 loaded\n",
      "shard_712 loaded\n",
      "shard_34002 loaded\n",
      "shard_42601 loaded\n",
      "shard_5969 loaded\n",
      "shard_47639 loaded\n",
      "shard_25525 loaded\n",
      "shard_26419 loaded\n",
      "shard_11589 loaded\n",
      "shard_26557 loaded\n",
      "shard_29115 loaded\n",
      "shard_20984 loaded\n",
      "shard_30321 loaded\n",
      "shard_13088 loaded\n",
      "shard_35009 loaded\n",
      "shard_42649 loaded\n",
      "shard_22225 loaded\n",
      "shard_1652 loaded\n",
      "shard_46431 loaded\n",
      "shard_37156 loaded\n",
      "shard_24643 loaded\n",
      "shard_21531 loaded\n",
      "shard_27915 loaded\n",
      "shard_28037 loaded\n",
      "shard_33574 loaded\n",
      "shard_34528 loaded\n",
      "shard_6573 loaded\n",
      "shard_8339 loaded\n",
      "shard_10055 loaded\n",
      "shard_5130 loaded\n",
      "shard_39646 loaded\n",
      "shard_22495 loaded\n",
      "shard_34514 loaded\n",
      "shard_5894 loaded\n",
      "shard_3426 loaded\n",
      "shard_41914 loaded\n",
      "shard_23373 loaded\n",
      "shard_23241 loaded\n",
      "shard_48045 loaded\n",
      "shard_16407 loaded\n",
      "shard_47633 loaded\n",
      "shard_24894 loaded\n",
      "shard_29048 loaded\n",
      "shard_25631 loaded\n",
      "shard_20928 loaded\n",
      "shard_46330 loaded\n",
      "shard_28762 loaded\n",
      "shard_4618 loaded\n",
      "shard_32657 loaded\n",
      "shard_43599 loaded\n",
      "shard_49524 loaded\n",
      "shard_47414 loaded\n",
      "shard_6179 loaded\n",
      "shard_4242 loaded\n",
      "shard_19474 loaded\n",
      "shard_38865 loaded\n",
      "shard_3340 loaded\n",
      "shard_4684 loaded\n",
      "shard_6313 loaded\n",
      "shard_33329 loaded\n",
      "shard_23615 loaded\n",
      "shard_46241 loaded\n",
      "shard_16151 loaded\n",
      "shard_33304 loaded\n",
      "shard_27676 loaded\n",
      "shard_15873 loaded\n",
      "shard_2501 loaded\n",
      "shard_49750 loaded\n",
      "shard_22776 loaded\n",
      "shard_28734 loaded\n",
      "shard_33492 loaded\n",
      "shard_16218 loaded\n",
      "shard_29939 loaded\n",
      "shard_10523 loaded\n",
      "shard_10468 loaded\n",
      "shard_33064 loaded\n",
      "shard_43611 loaded\n",
      "shard_804 loaded\n",
      "shard_48467 loaded\n",
      "shard_40652 loaded\n",
      "shard_45756 loaded\n",
      "shard_44179 loaded\n",
      "shard_31872 loaded\n",
      "shard_23729 loaded\n",
      "shard_41376 loaded\n",
      "shard_13285 loaded\n",
      "shard_32239 loaded\n",
      "shard_45893 loaded\n",
      "shard_32799 loaded\n",
      "shard_3239 loaded\n",
      "shard_31596 loaded\n",
      "shard_46149 loaded\n",
      "shard_19380 loaded\n",
      "shard_1513 loaded\n",
      "shard_43843 loaded\n",
      "shard_38403 loaded\n",
      "shard_39370 loaded\n",
      "shard_41806 loaded\n",
      "shard_26940 loaded\n",
      "shard_49733 loaded\n",
      "shard_32444 loaded\n",
      "shard_20389 loaded\n",
      "shard_32160 loaded\n",
      "shard_12303 loaded\n",
      "shard_38316 loaded\n",
      "shard_6000 loaded\n",
      "shard_30507 loaded\n",
      "shard_41718 loaded\n",
      "shard_33131 loaded\n",
      "shard_29240 loaded\n",
      "shard_45088 loaded\n",
      "shard_5784 loaded\n",
      "shard_34208 loaded\n",
      "shard_48737 loaded\n",
      "shard_29183 loaded\n",
      "shard_33952 loaded\n",
      "shard_47580 loaded\n",
      "shard_44228 loaded\n",
      "shard_11984 loaded\n",
      "shard_5100 loaded\n",
      "shard_46777 loaded\n",
      "shard_27000 loaded\n",
      "shard_18504 loaded\n",
      "shard_30122 loaded\n",
      "shard_44994 loaded\n",
      "shard_22654 loaded\n",
      "shard_32594 loaded\n",
      "shard_8073 loaded\n",
      "shard_14318 loaded\n",
      "shard_36910 loaded\n",
      "shard_6212 loaded\n",
      "shard_12460 loaded\n",
      "shard_46053 loaded\n",
      "shard_3331 loaded\n",
      "shard_9064 loaded\n",
      "shard_44883 loaded\n",
      "shard_27529 loaded\n",
      "shard_3893 loaded\n",
      "shard_16823 loaded\n",
      "shard_8449 loaded\n",
      "shard_5062 loaded\n",
      "shard_20653 loaded\n",
      "shard_32667 loaded\n",
      "shard_28235 loaded\n",
      "shard_40020 loaded\n",
      "shard_26639 loaded\n",
      "shard_33858 loaded\n",
      "shard_30546 loaded\n",
      "shard_12374 loaded\n",
      "shard_1142 loaded\n",
      "shard_38336 loaded\n",
      "shard_45594 loaded\n",
      "shard_47579 loaded\n",
      "shard_22914 loaded\n",
      "shard_18 loaded\n",
      "shard_33216 loaded\n",
      "shard_6808 loaded\n",
      "shard_14333 loaded\n",
      "shard_38679 loaded\n",
      "shard_12107 loaded\n",
      "shard_2582 loaded\n",
      "shard_24327 loaded\n",
      "shard_45326 loaded\n",
      "shard_16436 loaded\n",
      "shard_26903 loaded\n",
      "shard_19911 loaded\n",
      "shard_4220 loaded\n",
      "shard_43927 loaded\n",
      "shard_40370 loaded\n",
      "shard_14132 loaded\n",
      "shard_16538 loaded\n",
      "shard_24269 loaded\n",
      "shard_34834 loaded\n",
      "shard_48078 loaded\n",
      "shard_47113 loaded\n",
      "shard_38599 loaded\n",
      "shard_34738 loaded\n",
      "shard_46778 loaded\n",
      "shard_8463 loaded\n",
      "shard_3533 loaded\n",
      "shard_5796 loaded\n",
      "shard_35488 loaded\n",
      "shard_3613 loaded\n",
      "shard_24128 loaded\n",
      "shard_15519 loaded\n",
      "shard_24628 loaded\n",
      "shard_48625 loaded\n",
      "shard_6845 loaded\n",
      "shard_46271 loaded\n",
      "shard_32493 loaded\n",
      "shard_28893 loaded\n",
      "shard_25321 loaded\n",
      "shard_22142 loaded\n",
      "shard_14270 loaded\n",
      "shard_47860 loaded\n",
      "shard_6184 loaded\n",
      "shard_32449 loaded\n",
      "shard_32853 loaded\n",
      "shard_45554 loaded\n",
      "shard_2834 loaded\n",
      "shard_33966 loaded\n",
      "shard_41677 loaded\n",
      "shard_4714 loaded\n",
      "shard_40682 loaded\n",
      "shard_17806 loaded\n",
      "shard_6259 loaded\n",
      "shard_43082 loaded\n",
      "shard_47806 loaded\n",
      "shard_5212 loaded\n",
      "shard_3998 loaded\n",
      "shard_3666 loaded\n",
      "shard_31343 loaded\n",
      "shard_15218 loaded\n",
      "shard_25794 loaded\n",
      "shard_30725 loaded\n",
      "shard_22501 loaded\n",
      "shard_1920 loaded\n",
      "shard_8349 loaded\n",
      "shard_10325 loaded\n",
      "shard_5773 loaded\n",
      "shard_10105 loaded\n",
      "shard_4794 loaded\n",
      "shard_29340 loaded\n",
      "shard_19251 loaded\n",
      "shard_24481 loaded\n",
      "shard_38078 loaded\n",
      "shard_46142 loaded\n",
      "shard_42555 loaded\n",
      "shard_40169 loaded\n",
      "shard_29827 loaded\n",
      "shard_42589 loaded\n",
      "shard_33961 loaded\n",
      "shard_16592 loaded\n",
      "shard_44054 loaded\n",
      "shard_44646 loaded\n",
      "shard_5202 loaded\n",
      "shard_22757 loaded\n",
      "shard_25595 loaded\n",
      "shard_32530 loaded\n",
      "shard_44126 loaded\n",
      "shard_21090 loaded\n",
      "shard_44114 loaded\n",
      "shard_11948 loaded\n",
      "shard_11755 loaded\n",
      "shard_30410 loaded\n",
      "shard_7961 loaded\n",
      "shard_9168 loaded\n",
      "shard_39160 loaded\n",
      "shard_40836 loaded\n",
      "shard_45764 loaded\n",
      "shard_35882 loaded\n",
      "shard_28449 loaded\n",
      "shard_9903 loaded\n",
      "shard_24591 loaded\n",
      "shard_36167 loaded\n",
      "shard_38212 loaded\n",
      "shard_7854 loaded\n",
      "shard_8863 loaded\n",
      "shard_45625 loaded\n",
      "shard_48690 loaded\n",
      "shard_11950 loaded\n",
      "shard_45366 loaded\n",
      "shard_8059 loaded\n",
      "shard_15600 loaded\n",
      "shard_1056 loaded\n",
      "shard_106 loaded\n",
      "shard_1611 loaded\n",
      "shard_47215 loaded\n",
      "shard_22526 loaded\n",
      "shard_45925 loaded\n",
      "shard_1535 loaded\n",
      "shard_6007 loaded\n",
      "shard_32044 loaded\n",
      "shard_31183 loaded\n",
      "shard_31614 loaded\n",
      "shard_17551 loaded\n",
      "shard_30819 loaded\n",
      "shard_40964 loaded\n",
      "shard_13379 loaded\n",
      "shard_16793 loaded\n",
      "shard_46261 loaded\n",
      "shard_5055 loaded\n",
      "shard_6656 loaded\n",
      "shard_39850 loaded\n",
      "shard_36279 loaded\n",
      "shard_36316 loaded\n",
      "shard_33506 loaded\n",
      "shard_32130 loaded\n",
      "shard_20003 loaded\n",
      "shard_43274 loaded\n",
      "shard_2566 loaded\n",
      "shard_37231 loaded\n",
      "shard_2958 loaded\n",
      "shard_8427 loaded\n",
      "shard_13456 loaded\n",
      "shard_31054 loaded\n",
      "shard_29561 loaded\n",
      "shard_41945 loaded\n",
      "shard_2884 loaded\n",
      "shard_43722 loaded\n",
      "shard_45967 loaded\n",
      "shard_9685 loaded\n",
      "shard_19626 loaded\n",
      "shard_5882 loaded\n",
      "shard_28523 loaded\n",
      "shard_30606 loaded\n",
      "shard_12952 loaded\n",
      "shard_33515 loaded\n",
      "shard_19163 loaded\n",
      "shard_1133 loaded\n",
      "shard_9196 loaded\n",
      "shard_21394 loaded\n",
      "shard_40067 loaded\n",
      "shard_25375 loaded\n",
      "shard_14374 loaded\n",
      "shard_12198 loaded\n",
      "shard_12389 loaded\n",
      "shard_23067 loaded\n",
      "shard_13447 loaded\n",
      "shard_19724 loaded\n",
      "shard_41367 loaded\n",
      "shard_2755 loaded\n",
      "shard_19228 loaded\n",
      "shard_44386 loaded\n",
      "shard_38351 loaded\n",
      "shard_18912 loaded\n",
      "shard_42934 loaded\n",
      "shard_28554 loaded\n",
      "shard_2348 loaded\n",
      "shard_27890 loaded\n",
      "shard_29400 loaded\n",
      "shard_38073 loaded\n",
      "shard_38968 loaded\n",
      "shard_18166 loaded\n",
      "shard_49785 loaded\n",
      "shard_42865 loaded\n",
      "shard_29382 loaded\n",
      "shard_40610 loaded\n",
      "shard_18248 loaded\n",
      "shard_28338 loaded\n",
      "shard_635 loaded\n",
      "shard_23842 loaded\n",
      "shard_37387 loaded\n",
      "shard_9124 loaded\n",
      "shard_6950 loaded\n",
      "shard_2459 loaded\n",
      "shard_8806 loaded\n",
      "shard_3148 loaded\n",
      "shard_39020 loaded\n",
      "shard_44267 loaded\n",
      "shard_6900 loaded\n",
      "shard_46077 loaded\n",
      "shard_19878 loaded\n",
      "shard_26396 loaded\n",
      "shard_34263 loaded\n",
      "shard_12938 loaded\n",
      "shard_15714 loaded\n",
      "shard_31732 loaded\n",
      "shard_8093 loaded\n",
      "shard_30589 loaded\n",
      "shard_32904 loaded\n",
      "shard_36847 loaded\n",
      "shard_35396 loaded\n",
      "shard_46406 loaded\n",
      "shard_35858 loaded\n",
      "shard_40869 loaded\n",
      "shard_18955 loaded\n",
      "shard_38021 loaded\n",
      "shard_42224 loaded\n",
      "shard_32078 loaded\n",
      "shard_1564 loaded\n",
      "shard_27297 loaded\n",
      "shard_561 loaded\n",
      "shard_45095 loaded\n",
      "shard_24789 loaded\n",
      "shard_8420 loaded\n",
      "shard_14968 loaded\n",
      "shard_24471 loaded\n",
      "shard_447 loaded\n",
      "shard_29977 loaded\n",
      "shard_27059 loaded\n",
      "shard_47668 loaded\n",
      "shard_28681 loaded\n",
      "shard_47181 loaded\n",
      "shard_4440 loaded\n",
      "shard_24336 loaded\n",
      "shard_29429 loaded\n",
      "shard_1501 loaded\n",
      "shard_14776 loaded\n",
      "shard_32953 loaded\n",
      "shard_22860 loaded\n",
      "shard_20773 loaded\n",
      "shard_22580 loaded\n",
      "shard_38689 loaded\n",
      "shard_6479 loaded\n",
      "shard_37603 loaded\n",
      "shard_6980 loaded\n",
      "shard_47813 loaded\n",
      "shard_45795 loaded\n",
      "shard_48472 loaded\n",
      "shard_23845 loaded\n",
      "shard_10150 loaded\n",
      "shard_31129 loaded\n",
      "shard_27784 loaded\n",
      "shard_42513 loaded\n",
      "shard_39500 loaded\n",
      "shard_10601 loaded\n",
      "shard_24763 loaded\n",
      "shard_22381 loaded\n",
      "shard_10842 loaded\n",
      "shard_34168 loaded\n",
      "shard_5418 loaded\n",
      "shard_15677 loaded\n",
      "shard_4791 loaded\n",
      "shard_15549 loaded\n",
      "shard_26629 loaded\n",
      "shard_6734 loaded\n",
      "shard_13332 loaded\n",
      "shard_12614 loaded\n",
      "shard_26954 loaded\n",
      "shard_28414 loaded\n",
      "shard_12013 loaded\n",
      "shard_6175 loaded\n",
      "shard_47276 loaded\n",
      "shard_33215 loaded\n",
      "shard_23305 loaded\n",
      "shard_48786 loaded\n",
      "shard_22840 loaded\n",
      "shard_31145 loaded\n",
      "shard_17086 loaded\n",
      "shard_8274 loaded\n",
      "shard_38253 loaded\n",
      "shard_44403 loaded\n",
      "shard_10985 loaded\n",
      "shard_42007 loaded\n",
      "shard_2124 loaded\n",
      "shard_41486 loaded\n",
      "shard_3584 loaded\n",
      "shard_17181 loaded\n",
      "shard_26109 loaded\n",
      "shard_32 loaded\n",
      "shard_48926 loaded\n",
      "shard_34292 loaded\n",
      "shard_43976 loaded\n",
      "shard_26196 loaded\n",
      "shard_15338 loaded\n",
      "shard_49258 loaded\n",
      "shard_47767 loaded\n",
      "shard_5457 loaded\n",
      "shard_34428 loaded\n",
      "shard_14671 loaded\n",
      "shard_25368 loaded\n",
      "shard_22147 loaded\n",
      "shard_48784 loaded\n",
      "shard_20282 loaded\n",
      "shard_23827 loaded\n",
      "shard_37628 loaded\n",
      "shard_21650 loaded\n",
      "shard_8588 loaded\n",
      "shard_36415 loaded\n",
      "shard_49949 loaded\n",
      "shard_39684 loaded\n",
      "shard_31120 loaded\n",
      "shard_10635 loaded\n",
      "shard_28792 loaded\n",
      "shard_23171 loaded\n",
      "shard_2756 loaded\n",
      "shard_21078 loaded\n",
      "shard_9269 loaded\n",
      "shard_6317 loaded\n",
      "shard_19269 loaded\n",
      "shard_22425 loaded\n",
      "shard_49871 loaded\n",
      "shard_27873 loaded\n",
      "shard_7734 loaded\n",
      "shard_18908 loaded\n",
      "shard_15890 loaded\n",
      "shard_631 loaded\n",
      "shard_49907 loaded\n",
      "shard_5903 loaded\n",
      "shard_23507 loaded\n",
      "shard_35115 loaded\n",
      "shard_34793 loaded\n",
      "shard_5859 loaded\n",
      "shard_48619 loaded\n",
      "shard_941 loaded\n",
      "shard_22745 loaded\n",
      "shard_10975 loaded\n",
      "shard_24461 loaded\n",
      "shard_8962 loaded\n",
      "shard_35805 loaded\n",
      "shard_1982 loaded\n",
      "shard_6905 loaded\n",
      "shard_35608 loaded\n",
      "shard_33261 loaded\n",
      "shard_35905 loaded\n",
      "shard_15621 loaded\n",
      "shard_18050 loaded\n",
      "shard_6284 loaded\n",
      "shard_25301 loaded\n",
      "shard_2844 loaded\n",
      "shard_15999 loaded\n",
      "shard_15337 loaded\n",
      "shard_16106 loaded\n",
      "shard_25847 loaded\n",
      "shard_19486 loaded\n",
      "shard_12409 loaded\n",
      "shard_22342 loaded\n",
      "shard_19326 loaded\n",
      "shard_31449 loaded\n",
      "shard_24341 loaded\n",
      "shard_13708 loaded\n",
      "shard_31494 loaded\n",
      "shard_23050 loaded\n",
      "shard_37933 loaded\n",
      "shard_13995 loaded\n",
      "shard_38248 loaded\n",
      "shard_4717 loaded\n",
      "shard_12918 loaded\n",
      "shard_758 loaded\n",
      "shard_6250 loaded\n",
      "shard_29397 loaded\n",
      "shard_2353 loaded\n",
      "shard_1078 loaded\n",
      "shard_11361 loaded\n",
      "shard_30622 loaded\n",
      "shard_49688 loaded\n",
      "shard_23840 loaded\n",
      "shard_38618 loaded\n",
      "shard_31061 loaded\n",
      "shard_33030 loaded\n",
      "shard_20031 loaded\n",
      "shard_4113 loaded\n",
      "shard_42689 loaded\n",
      "shard_33657 loaded\n",
      "shard_41646 loaded\n",
      "shard_18780 loaded\n",
      "shard_37188 loaded\n",
      "shard_39969 loaded\n",
      "shard_43211 loaded\n",
      "shard_5936 loaded\n",
      "shard_22943 loaded\n",
      "shard_32460 loaded\n",
      "shard_35188 loaded\n",
      "shard_17407 loaded\n",
      "shard_32918 loaded\n",
      "shard_8345 loaded\n",
      "shard_13099 loaded\n",
      "shard_31824 loaded\n",
      "shard_28844 loaded\n",
      "shard_38829 loaded\n",
      "shard_24311 loaded\n",
      "shard_32024 loaded\n",
      "shard_10090 loaded\n",
      "shard_16884 loaded\n",
      "shard_15468 loaded\n",
      "shard_47379 loaded\n",
      "shard_20225 loaded\n",
      "shard_14292 loaded\n",
      "shard_42393 loaded\n",
      "shard_46515 loaded\n",
      "shard_44849 loaded\n",
      "shard_30996 loaded\n",
      "shard_34100 loaded\n",
      "shard_34326 loaded\n",
      "shard_17956 loaded\n",
      "shard_1046 loaded\n",
      "shard_35376 loaded\n",
      "shard_36578 loaded\n",
      "shard_41154 loaded\n",
      "shard_13785 loaded\n",
      "shard_5034 loaded\n",
      "shard_38597 loaded\n",
      "shard_21305 loaded\n",
      "shard_27055 loaded\n",
      "shard_30939 loaded\n",
      "shard_22703 loaded\n",
      "shard_49456 loaded\n",
      "shard_26497 loaded\n",
      "shard_5943 loaded\n",
      "shard_41724 loaded\n",
      "shard_10935 loaded\n",
      "shard_2537 loaded\n",
      "shard_27323 loaded\n",
      "shard_46731 loaded\n",
      "shard_23610 loaded\n",
      "shard_47845 loaded\n",
      "shard_39264 loaded\n",
      "shard_39647 loaded\n",
      "shard_13017 loaded\n",
      "shard_38525 loaded\n",
      "shard_5258 loaded\n",
      "shard_38853 loaded\n",
      "shard_25325 loaded\n",
      "shard_43014 loaded\n",
      "shard_29136 loaded\n",
      "shard_25044 loaded\n",
      "shard_2390 loaded\n",
      "shard_40925 loaded\n",
      "shard_49916 loaded\n",
      "shard_7292 loaded\n",
      "shard_27597 loaded\n",
      "shard_46237 loaded\n",
      "shard_42723 loaded\n",
      "shard_9031 loaded\n",
      "shard_41279 loaded\n",
      "shard_4217 loaded\n",
      "shard_45993 loaded\n",
      "shard_9994 loaded\n",
      "shard_33646 loaded\n",
      "shard_17485 loaded\n",
      "shard_2101 loaded\n",
      "shard_41991 loaded\n",
      "shard_36431 loaded\n",
      "shard_17030 loaded\n",
      "shard_7830 loaded\n",
      "shard_12188 loaded\n",
      "shard_48648 loaded\n",
      "shard_41906 loaded\n",
      "shard_11349 loaded\n",
      "shard_49053 loaded\n",
      "shard_19887 loaded\n",
      "shard_825 loaded\n",
      "shard_7892 loaded\n",
      "shard_39043 loaded\n",
      "shard_17863 loaded\n",
      "shard_34462 loaded\n",
      "shard_14559 loaded\n",
      "shard_45686 loaded\n",
      "shard_35912 loaded\n",
      "shard_4215 loaded\n",
      "shard_41524 loaded\n",
      "shard_35405 loaded\n",
      "shard_35817 loaded\n",
      "shard_4422 loaded\n",
      "shard_31737 loaded\n",
      "shard_42395 loaded\n",
      "shard_26496 loaded\n",
      "shard_30118 loaded\n",
      "shard_7927 loaded\n",
      "shard_24620 loaded\n",
      "shard_2061 loaded\n",
      "shard_26678 loaded\n",
      "shard_49323 loaded\n",
      "shard_18312 loaded\n",
      "shard_44661 loaded\n",
      "shard_48391 loaded\n",
      "shard_20108 loaded\n",
      "shard_41544 loaded\n",
      "shard_23108 loaded\n",
      "shard_47250 loaded\n",
      "shard_16900 loaded\n",
      "shard_41129 loaded\n",
      "shard_45532 loaded\n",
      "shard_7429 loaded\n",
      "shard_27947 loaded\n",
      "shard_28898 loaded\n",
      "shard_10838 loaded\n",
      "shard_30541 loaded\n",
      "shard_18098 loaded\n",
      "shard_21752 loaded\n",
      "shard_1168 loaded\n",
      "shard_8099 loaded\n",
      "shard_34823 loaded\n",
      "shard_15175 loaded\n",
      "shard_34064 loaded\n",
      "shard_44769 loaded\n",
      "shard_38640 loaded\n",
      "shard_17157 loaded\n",
      "shard_42375 loaded\n",
      "shard_48051 loaded\n",
      "shard_2005 loaded\n",
      "shard_37173 loaded\n",
      "shard_26868 loaded\n",
      "shard_16283 loaded\n",
      "shard_6963 loaded\n",
      "shard_16522 loaded\n",
      "shard_3745 loaded\n",
      "shard_34456 loaded\n",
      "shard_43517 loaded\n",
      "shard_5140 loaded\n",
      "shard_32827 loaded\n",
      "shard_1480 loaded\n",
      "shard_47481 loaded\n",
      "shard_1353 loaded\n",
      "shard_23828 loaded\n",
      "shard_10440 loaded\n",
      "shard_10021 loaded\n",
      "shard_21304 loaded\n",
      "shard_35626 loaded\n",
      "shard_12158 loaded\n",
      "shard_3434 loaded\n",
      "shard_9036 loaded\n",
      "shard_48187 loaded\n",
      "shard_25850 loaded\n",
      "shard_37476 loaded\n",
      "shard_24018 loaded\n",
      "shard_49493 loaded\n",
      "shard_31743 loaded\n",
      "shard_35700 loaded\n",
      "shard_22258 loaded\n",
      "shard_26401 loaded\n",
      "shard_42455 loaded\n",
      "shard_6082 loaded\n",
      "shard_18218 loaded\n",
      "shard_48497 loaded\n",
      "shard_30395 loaded\n",
      "shard_6804 loaded\n",
      "shard_31024 loaded\n",
      "shard_1376 loaded\n",
      "shard_46467 loaded\n",
      "shard_21515 loaded\n",
      "shard_22590 loaded\n",
      "shard_37597 loaded\n",
      "shard_32993 loaded\n",
      "shard_16603 loaded\n",
      "shard_48161 loaded\n",
      "shard_21429 loaded\n",
      "shard_7284 loaded\n",
      "shard_2424 loaded\n",
      "shard_48047 loaded\n",
      "shard_31657 loaded\n",
      "shard_29614 loaded\n",
      "shard_16172 loaded\n",
      "shard_4367 loaded\n",
      "shard_38959 loaded\n",
      "shard_20042 loaded\n",
      "shard_16432 loaded\n",
      "shard_92 loaded\n",
      "shard_6538 loaded\n",
      "shard_13902 loaded\n",
      "shard_36784 loaded\n",
      "shard_48005 loaded\n",
      "shard_2406 loaded\n",
      "shard_39044 loaded\n",
      "shard_17808 loaded\n",
      "shard_6140 loaded\n",
      "shard_10336 loaded\n",
      "shard_17526 loaded\n",
      "shard_47168 loaded\n",
      "shard_28842 loaded\n",
      "shard_16439 loaded\n",
      "shard_43032 loaded\n",
      "shard_41445 loaded\n",
      "shard_14606 loaded\n",
      "shard_20682 loaded\n",
      "shard_23074 loaded\n",
      "shard_32940 loaded\n",
      "shard_27380 loaded\n",
      "shard_29620 loaded\n",
      "shard_44124 loaded\n",
      "shard_34543 loaded\n",
      "shard_44752 loaded\n",
      "shard_38479 loaded\n",
      "shard_19630 loaded\n",
      "shard_15702 loaded\n",
      "shard_33662 loaded\n",
      "shard_30786 loaded\n",
      "shard_27939 loaded\n",
      "shard_10628 loaded\n",
      "shard_19599 loaded\n",
      "shard_28782 loaded\n",
      "shard_38011 loaded\n",
      "shard_27931 loaded\n",
      "shard_35693 loaded\n",
      "shard_21831 loaded\n",
      "shard_3516 loaded\n",
      "shard_37416 loaded\n",
      "shard_34354 loaded\n",
      "shard_8549 loaded\n",
      "shard_22226 loaded\n",
      "shard_33741 loaded\n",
      "shard_23391 loaded\n",
      "shard_45944 loaded\n",
      "shard_9571 loaded\n",
      "shard_24864 loaded\n",
      "shard_30270 loaded\n",
      "shard_20487 loaded\n",
      "shard_10519 loaded\n",
      "shard_44989 loaded\n",
      "shard_49579 loaded\n",
      "shard_12709 loaded\n",
      "shard_42119 loaded\n",
      "shard_21818 loaded\n",
      "shard_14945 loaded\n",
      "shard_37724 loaded\n",
      "shard_30331 loaded\n",
      "shard_14063 loaded\n",
      "shard_5551 loaded\n",
      "shard_40611 loaded\n",
      "shard_44415 loaded\n",
      "shard_8497 loaded\n",
      "shard_11872 loaded\n",
      "shard_43476 loaded\n",
      "shard_38130 loaded\n",
      "shard_8812 loaded\n",
      "shard_18812 loaded\n",
      "shard_33107 loaded\n",
      "shard_10868 loaded\n",
      "shard_42492 loaded\n",
      "shard_7421 loaded\n",
      "shard_27208 loaded\n",
      "shard_48623 loaded\n",
      "shard_31188 loaded\n",
      "shard_39182 loaded\n",
      "shard_14331 loaded\n",
      "shard_32442 loaded\n",
      "shard_17920 loaded\n",
      "shard_34939 loaded\n",
      "shard_23914 loaded\n",
      "shard_26159 loaded\n",
      "shard_34076 loaded\n",
      "shard_36695 loaded\n",
      "shard_18410 loaded\n",
      "shard_31058 loaded\n",
      "shard_39431 loaded\n",
      "shard_9644 loaded\n",
      "shard_45584 loaded\n",
      "shard_8142 loaded\n",
      "shard_17842 loaded\n",
      "shard_48199 loaded\n",
      "shard_13297 loaded\n",
      "shard_27296 loaded\n",
      "shard_46365 loaded\n",
      "shard_25687 loaded\n",
      "shard_6527 loaded\n",
      "shard_40946 loaded\n",
      "shard_13008 loaded\n",
      "shard_12277 loaded\n",
      "shard_31807 loaded\n",
      "shard_27017 loaded\n",
      "shard_49549 loaded\n",
      "shard_11522 loaded\n",
      "shard_45158 loaded\n",
      "shard_41208 loaded\n",
      "shard_31046 loaded\n",
      "shard_19453 loaded\n",
      "shard_8058 loaded\n",
      "shard_43937 loaded\n",
      "shard_35942 loaded\n",
      "shard_8277 loaded\n",
      "shard_41031 loaded\n",
      "shard_19893 loaded\n",
      "shard_8101 loaded\n",
      "shard_17579 loaded\n",
      "shard_5630 loaded\n",
      "shard_31889 loaded\n",
      "shard_37483 loaded\n",
      "shard_27520 loaded\n",
      "shard_12597 loaded\n",
      "shard_49774 loaded\n",
      "shard_11649 loaded\n",
      "shard_35412 loaded\n",
      "shard_1701 loaded\n",
      "shard_3795 loaded\n",
      "shard_46756 loaded\n",
      "shard_28259 loaded\n",
      "shard_5117 loaded\n",
      "shard_28264 loaded\n",
      "shard_12916 loaded\n",
      "shard_17896 loaded\n",
      "shard_8685 loaded\n",
      "shard_465 loaded\n",
      "shard_5794 loaded\n",
      "shard_48138 loaded\n",
      "shard_49996 loaded\n",
      "shard_31162 loaded\n",
      "shard_48264 loaded\n",
      "shard_13499 loaded\n",
      "shard_48000 loaded\n",
      "shard_9453 loaded\n",
      "shard_21523 loaded\n",
      "shard_28384 loaded\n",
      "shard_5228 loaded\n",
      "shard_26827 loaded\n",
      "shard_19926 loaded\n",
      "shard_6981 loaded\n",
      "shard_33440 loaded\n",
      "shard_40419 loaded\n",
      "shard_17969 loaded\n",
      "shard_14192 loaded\n",
      "shard_17061 loaded\n",
      "shard_39607 loaded\n",
      "shard_20120 loaded\n",
      "shard_19804 loaded\n",
      "shard_24332 loaded\n",
      "shard_46203 loaded\n",
      "shard_38818 loaded\n",
      "shard_24426 loaded\n",
      "shard_40112 loaded\n",
      "shard_7664 loaded\n",
      "shard_16332 loaded\n",
      "shard_39893 loaded\n",
      "shard_18127 loaded\n",
      "shard_46568 loaded\n",
      "shard_4272 loaded\n",
      "shard_14489 loaded\n",
      "shard_30024 loaded\n",
      "shard_27150 loaded\n",
      "shard_32001 loaded\n",
      "shard_23809 loaded\n",
      "shard_26364 loaded\n",
      "shard_3787 loaded\n",
      "shard_37045 loaded\n",
      "shard_6450 loaded\n",
      "shard_2697 loaded\n",
      "shard_42034 loaded\n",
      "shard_3633 loaded\n",
      "shard_40481 loaded\n",
      "shard_40725 loaded\n",
      "shard_2081 loaded\n",
      "shard_1320 loaded\n",
      "shard_13429 loaded\n",
      "shard_32748 loaded\n",
      "shard_1766 loaded\n",
      "shard_39441 loaded\n",
      "shard_43572 loaded\n",
      "shard_32704 loaded\n",
      "shard_48849 loaded\n",
      "shard_20711 loaded\n",
      "shard_11695 loaded\n",
      "shard_42310 loaded\n",
      "shard_21768 loaded\n",
      "shard_12874 loaded\n",
      "shard_34167 loaded\n",
      "shard_22775 loaded\n",
      "shard_29290 loaded\n",
      "shard_2131 loaded\n",
      "shard_43397 loaded\n",
      "shard_32695 loaded\n",
      "shard_25264 loaded\n",
      "shard_4459 loaded\n",
      "shard_20684 loaded\n",
      "shard_13273 loaded\n",
      "shard_24621 loaded\n",
      "shard_34405 loaded\n",
      "shard_18712 loaded\n",
      "shard_16223 loaded\n",
      "shard_33610 loaded\n",
      "shard_24320 loaded\n",
      "shard_2455 loaded\n",
      "shard_41496 loaded\n",
      "shard_39657 loaded\n",
      "shard_3651 loaded\n",
      "shard_27907 loaded\n",
      "shard_15796 loaded\n",
      "shard_34162 loaded\n",
      "shard_19838 loaded\n",
      "shard_23712 loaded\n",
      "shard_35601 loaded\n",
      "shard_33500 loaded\n",
      "shard_30389 loaded\n",
      "shard_8408 loaded\n",
      "shard_14743 loaded\n",
      "shard_14226 loaded\n",
      "shard_11155 loaded\n",
      "shard_25110 loaded\n",
      "shard_44294 loaded\n",
      "shard_27213 loaded\n",
      "shard_30248 loaded\n",
      "shard_41607 loaded\n",
      "shard_19388 loaded\n",
      "shard_47409 loaded\n",
      "shard_13147 loaded\n",
      "shard_45658 loaded\n",
      "shard_31554 loaded\n",
      "shard_12312 loaded\n",
      "shard_18623 loaded\n",
      "shard_23801 loaded\n",
      "shard_35876 loaded\n",
      "shard_3839 loaded\n",
      "shard_26489 loaded\n",
      "shard_39142 loaded\n",
      "shard_24330 loaded\n",
      "shard_12800 loaded\n",
      "shard_10426 loaded\n",
      "shard_32229 loaded\n",
      "shard_46083 loaded\n",
      "shard_4447 loaded\n",
      "shard_41404 loaded\n",
      "shard_10265 loaded\n",
      "shard_9397 loaded\n",
      "shard_8354 loaded\n",
      "shard_11817 loaded\n",
      "shard_14848 loaded\n",
      "shard_40483 loaded\n",
      "shard_47008 loaded\n",
      "shard_31175 loaded\n",
      "shard_47264 loaded\n",
      "shard_34563 loaded\n",
      "shard_27382 loaded\n",
      "shard_37559 loaded\n",
      "shard_38286 loaded\n",
      "shard_49028 loaded\n",
      "shard_14983 loaded\n",
      "shard_39082 loaded\n",
      "shard_15710 loaded\n",
      "shard_22107 loaded\n",
      "shard_37911 loaded\n",
      "shard_27436 loaded\n",
      "shard_15718 loaded\n",
      "shard_42523 loaded\n",
      "shard_10467 loaded\n",
      "shard_12555 loaded\n",
      "shard_45538 loaded\n",
      "shard_24671 loaded\n",
      "shard_21867 loaded\n",
      "shard_3591 loaded\n",
      "shard_5266 loaded\n",
      "shard_1854 loaded\n",
      "shard_22472 loaded\n",
      "shard_21351 loaded\n",
      "shard_22600 loaded\n",
      "shard_12498 loaded\n",
      "shard_46211 loaded\n",
      "shard_6286 loaded\n",
      "shard_33161 loaded\n",
      "shard_45571 loaded\n",
      "shard_31118 loaded\n",
      "shard_34274 loaded\n",
      "shard_48669 loaded\n",
      "shard_14576 loaded\n",
      "shard_23693 loaded\n",
      "shard_506 loaded\n",
      "shard_26311 loaded\n",
      "shard_38201 loaded\n",
      "shard_25004 loaded\n",
      "shard_25824 loaded\n",
      "shard_47878 loaded\n",
      "shard_43122 loaded\n",
      "shard_36335 loaded\n",
      "shard_26848 loaded\n",
      "shard_14752 loaded\n",
      "shard_4361 loaded\n",
      "shard_32102 loaded\n",
      "shard_1144 loaded\n",
      "shard_19049 loaded\n",
      "shard_36753 loaded\n",
      "shard_43738 loaded\n",
      "shard_48779 loaded\n",
      "shard_49063 loaded\n",
      "shard_35901 loaded\n",
      "shard_32482 loaded\n",
      "shard_44470 loaded\n",
      "shard_8176 loaded\n",
      "shard_33242 loaded\n",
      "shard_1996 loaded\n",
      "shard_4785 loaded\n",
      "shard_9375 loaded\n",
      "shard_38882 loaded\n",
      "shard_13784 loaded\n",
      "shard_1536 loaded\n",
      "shard_519 loaded\n",
      "shard_30433 loaded\n",
      "shard_9879 loaded\n",
      "shard_27687 loaded\n",
      "shard_43750 loaded\n",
      "shard_9447 loaded\n",
      "shard_20063 loaded\n",
      "shard_19865 loaded\n",
      "shard_39428 loaded\n",
      "shard_48288 loaded\n",
      "shard_35353 loaded\n",
      "shard_10977 loaded\n",
      "shard_7721 loaded\n",
      "shard_34665 loaded\n",
      "shard_45441 loaded\n",
      "shard_26180 loaded\n",
      "shard_49458 loaded\n",
      "shard_16 loaded\n",
      "shard_32515 loaded\n",
      "shard_39089 loaded\n",
      "shard_42159 loaded\n",
      "shard_21266 loaded\n",
      "shard_54 loaded\n",
      "shard_36205 loaded\n",
      "shard_3065 loaded\n",
      "shard_48536 loaded\n",
      "shard_27108 loaded\n",
      "shard_5108 loaded\n",
      "shard_7465 loaded\n",
      "shard_16614 loaded\n",
      "shard_29384 loaded\n",
      "shard_46552 loaded\n",
      "shard_8956 loaded\n",
      "shard_33315 loaded\n",
      "shard_30236 loaded\n",
      "shard_36124 loaded\n",
      "shard_47996 loaded\n",
      "shard_5957 loaded\n",
      "shard_34147 loaded\n",
      "shard_3710 loaded\n",
      "shard_8877 loaded\n",
      "shard_35147 loaded\n",
      "shard_15256 loaded\n",
      "shard_21777 loaded\n",
      "shard_1136 loaded\n",
      "shard_9770 loaded\n",
      "shard_42379 loaded\n",
      "shard_7339 loaded\n",
      "shard_21539 loaded\n",
      "shard_268 loaded\n",
      "shard_3015 loaded\n",
      "shard_29094 loaded\n",
      "shard_14191 loaded\n",
      "shard_29299 loaded\n",
      "shard_46917 loaded\n",
      "shard_22770 loaded\n",
      "shard_925 loaded\n",
      "shard_41190 loaded\n",
      "shard_20652 loaded\n",
      "shard_10709 loaded\n",
      "shard_828 loaded\n",
      "shard_46032 loaded\n",
      "shard_18010 loaded\n",
      "shard_17220 loaded\n",
      "shard_10344 loaded\n",
      "shard_36189 loaded\n",
      "shard_28638 loaded\n",
      "shard_19456 loaded\n",
      "shard_46062 loaded\n",
      "shard_29184 loaded\n",
      "shard_28594 loaded\n",
      "shard_18208 loaded\n",
      "shard_16341 loaded\n",
      "shard_37191 loaded\n",
      "shard_20430 loaded\n",
      "shard_46922 loaded\n",
      "shard_34645 loaded\n",
      "shard_19996 loaded\n",
      "shard_39649 loaded\n",
      "shard_10925 loaded\n",
      "shard_25936 loaded\n",
      "shard_26318 loaded\n",
      "shard_12686 loaded\n",
      "shard_20464 loaded\n",
      "shard_32439 loaded\n",
      "shard_7259 loaded\n",
      "shard_45582 loaded\n",
      "shard_1728 loaded\n",
      "shard_45226 loaded\n",
      "shard_10957 loaded\n",
      "shard_35174 loaded\n",
      "shard_1826 loaded\n",
      "shard_38453 loaded\n",
      "shard_21283 loaded\n",
      "shard_45526 loaded\n",
      "shard_43282 loaded\n",
      "shard_23281 loaded\n",
      "shard_12891 loaded\n",
      "shard_22536 loaded\n",
      "shard_43182 loaded\n",
      "shard_24285 loaded\n",
      "shard_5447 loaded\n",
      "shard_46334 loaded\n",
      "shard_14838 loaded\n",
      "shard_36664 loaded\n",
      "shard_945 loaded\n",
      "shard_23057 loaded\n",
      "shard_26685 loaded\n",
      "shard_32392 loaded\n",
      "shard_8861 loaded\n",
      "shard_28321 loaded\n",
      "shard_11055 loaded\n",
      "shard_21467 loaded\n",
      "shard_29518 loaded\n",
      "shard_32939 loaded\n",
      "shard_13158 loaded\n",
      "shard_45390 loaded\n",
      "shard_8160 loaded\n",
      "shard_3082 loaded\n",
      "shard_19014 loaded\n",
      "shard_48518 loaded\n",
      "shard_14304 loaded\n",
      "shard_30557 loaded\n",
      "shard_31432 loaded\n",
      "shard_16942 loaded\n",
      "shard_20670 loaded\n",
      "shard_7253 loaded\n",
      "shard_11035 loaded\n",
      "shard_45830 loaded\n",
      "shard_24680 loaded\n",
      "shard_8680 loaded\n",
      "shard_24107 loaded\n",
      "shard_13202 loaded\n",
      "shard_24941 loaded\n",
      "shard_30141 loaded\n",
      "shard_486 loaded\n",
      "shard_44946 loaded\n",
      "shard_24092 loaded\n",
      "shard_31288 loaded\n",
      "shard_25965 loaded\n",
      "shard_45652 loaded\n",
      "shard_29631 loaded\n",
      "shard_41482 loaded\n",
      "shard_19972 loaded\n",
      "shard_33983 loaded\n",
      "shard_5901 loaded\n",
      "shard_22913 loaded\n",
      "shard_16048 loaded\n",
      "shard_34264 loaded\n",
      "shard_9075 loaded\n",
      "shard_44716 loaded\n",
      "shard_11858 loaded\n",
      "shard_47263 loaded\n",
      "shard_7638 loaded\n",
      "shard_38694 loaded\n",
      "shard_39475 loaded\n",
      "shard_29209 loaded\n",
      "shard_24078 loaded\n",
      "shard_48901 loaded\n",
      "shard_43732 loaded\n",
      "shard_4609 loaded\n",
      "shard_6703 loaded\n",
      "shard_24422 loaded\n",
      "shard_11242 loaded\n",
      "shard_2042 loaded\n",
      "shard_9201 loaded\n",
      "shard_30502 loaded\n",
      "shard_30970 loaded\n",
      "shard_13570 loaded\n",
      "shard_3655 loaded\n",
      "shard_6218 loaded\n",
      "shard_12815 loaded\n",
      "shard_33441 loaded\n",
      "shard_14878 loaded\n",
      "shard_49424 loaded\n",
      "shard_9722 loaded\n",
      "shard_12199 loaded\n",
      "shard_4446 loaded\n",
      "shard_6159 loaded\n",
      "shard_15168 loaded\n",
      "shard_3920 loaded\n",
      "shard_15555 loaded\n",
      "shard_3193 loaded\n",
      "shard_26966 loaded\n",
      "shard_38546 loaded\n",
      "shard_32931 loaded\n",
      "shard_37849 loaded\n",
      "shard_3012 loaded\n",
      "shard_20190 loaded\n",
      "shard_48658 loaded\n",
      "shard_30873 loaded\n",
      "shard_20778 loaded\n",
      "shard_1043 loaded\n",
      "shard_38869 loaded\n",
      "shard_32561 loaded\n",
      "shard_5499 loaded\n",
      "shard_28191 loaded\n",
      "shard_31139 loaded\n",
      "shard_6594 loaded\n",
      "shard_28325 loaded\n",
      "shard_41676 loaded\n",
      "shard_37244 loaded\n",
      "shard_7665 loaded\n",
      "shard_8448 loaded\n",
      "shard_30283 loaded\n",
      "shard_16393 loaded\n",
      "shard_18456 loaded\n",
      "shard_21196 loaded\n",
      "shard_11481 loaded\n",
      "shard_1664 loaded\n",
      "shard_34519 loaded\n",
      "shard_49547 loaded\n",
      "shard_29463 loaded\n",
      "shard_18251 loaded\n",
      "shard_16342 loaded\n",
      "shard_34196 loaded\n",
      "shard_37808 loaded\n",
      "shard_21150 loaded\n",
      "shard_6227 loaded\n",
      "shard_41881 loaded\n",
      "shard_44678 loaded\n",
      "shard_26682 loaded\n",
      "shard_1488 loaded\n",
      "shard_4266 loaded\n",
      "shard_30226 loaded\n",
      "shard_25989 loaded\n",
      "shard_36534 loaded\n",
      "shard_47133 loaded\n",
      "shard_26498 loaded\n",
      "shard_14644 loaded\n",
      "shard_8750 loaded\n",
      "shard_5651 loaded\n",
      "shard_22387 loaded\n",
      "shard_26998 loaded\n",
      "shard_18291 loaded\n",
      "shard_10662 loaded\n",
      "shard_41328 loaded\n",
      "shard_49319 loaded\n",
      "shard_25869 loaded\n",
      "shard_47827 loaded\n",
      "shard_23318 loaded\n",
      "shard_20025 loaded\n",
      "shard_12466 loaded\n",
      "shard_12457 loaded\n",
      "shard_30345 loaded\n",
      "shard_4108 loaded\n",
      "shard_45531 loaded\n",
      "shard_49095 loaded\n",
      "shard_47784 loaded\n",
      "shard_43204 loaded\n",
      "shard_35820 loaded\n",
      "shard_43659 loaded\n",
      "shard_28789 loaded\n",
      "shard_46451 loaded\n",
      "shard_27662 loaded\n",
      "shard_10799 loaded\n",
      "shard_22720 loaded\n",
      "shard_34726 loaded\n",
      "shard_7370 loaded\n",
      "shard_13392 loaded\n",
      "shard_49656 loaded\n",
      "shard_34557 loaded\n",
      "shard_34656 loaded\n",
      "shard_27012 loaded\n",
      "shard_5774 loaded\n",
      "shard_11074 loaded\n",
      "shard_2262 loaded\n",
      "shard_40011 loaded\n",
      "shard_17660 loaded\n",
      "shard_48146 loaded\n",
      "shard_6795 loaded\n",
      "shard_2242 loaded\n",
      "shard_546 loaded\n",
      "shard_47004 loaded\n",
      "shard_46584 loaded\n",
      "shard_29013 loaded\n",
      "shard_15792 loaded\n",
      "shard_48295 loaded\n",
      "shard_42108 loaded\n",
      "shard_38510 loaded\n",
      "shard_23467 loaded\n",
      "shard_2086 loaded\n",
      "shard_25938 loaded\n",
      "shard_44411 loaded\n",
      "shard_38978 loaded\n",
      "shard_15478 loaded\n",
      "shard_31390 loaded\n",
      "shard_7624 loaded\n",
      "shard_3585 loaded\n",
      "shard_33531 loaded\n",
      "shard_42809 loaded\n",
      "shard_4074 loaded\n",
      "shard_44718 loaded\n",
      "shard_3880 loaded\n",
      "shard_10815 loaded\n",
      "shard_1814 loaded\n",
      "shard_23898 loaded\n",
      "shard_38854 loaded\n",
      "shard_26353 loaded\n",
      "shard_33031 loaded\n",
      "shard_34485 loaded\n",
      "shard_28561 loaded\n",
      "shard_11413 loaded\n",
      "shard_27549 loaded\n",
      "shard_22040 loaded\n",
      "shard_21157 loaded\n",
      "shard_15643 loaded\n",
      "shard_3311 loaded\n",
      "shard_23518 loaded\n",
      "shard_32342 loaded\n",
      "shard_726 loaded\n",
      "shard_25496 loaded\n",
      "shard_47854 loaded\n",
      "shard_7003 loaded\n",
      "shard_15036 loaded\n",
      "shard_28899 loaded\n",
      "shard_7825 loaded\n",
      "shard_46215 loaded\n",
      "shard_43744 loaded\n",
      "shard_21179 loaded\n",
      "shard_15377 loaded\n",
      "shard_46650 loaded\n",
      "shard_32663 loaded\n",
      "shard_32496 loaded\n",
      "shard_32035 loaded\n",
      "shard_30026 loaded\n",
      "shard_35422 loaded\n",
      "shard_14367 loaded\n",
      "shard_46542 loaded\n",
      "shard_27308 loaded\n",
      "shard_28932 loaded\n",
      "shard_10839 loaded\n",
      "shard_31117 loaded\n",
      "shard_23003 loaded\n",
      "shard_27725 loaded\n",
      "shard_35080 loaded\n",
      "shard_29513 loaded\n",
      "shard_20565 loaded\n",
      "shard_47655 loaded\n",
      "shard_18530 loaded\n",
      "shard_38470 loaded\n",
      "shard_36366 loaded\n",
      "shard_9214 loaded\n",
      "shard_10586 loaded\n",
      "shard_39005 loaded\n",
      "shard_42690 loaded\n",
      "shard_10621 loaded\n",
      "shard_35943 loaded\n",
      "shard_14683 loaded\n",
      "shard_47235 loaded\n",
      "shard_46968 loaded\n",
      "shard_2155 loaded\n",
      "shard_3403 loaded\n",
      "shard_32935 loaded\n",
      "shard_2797 loaded\n",
      "shard_47592 loaded\n",
      "shard_11468 loaded\n",
      "shard_28596 loaded\n",
      "shard_41314 loaded\n",
      "shard_12071 loaded\n",
      "shard_19584 loaded\n",
      "shard_12417 loaded\n",
      "shard_30629 loaded\n",
      "shard_16373 loaded\n",
      "shard_5085 loaded\n",
      "shard_16415 loaded\n",
      "shard_30648 loaded\n",
      "shard_38271 loaded\n",
      "shard_11250 loaded\n",
      "shard_13225 loaded\n",
      "shard_34131 loaded\n",
      "shard_30200 loaded\n",
      "shard_24535 loaded\n",
      "shard_4197 loaded\n",
      "shard_24420 loaded\n",
      "shard_19337 loaded\n",
      "shard_19784 loaded\n",
      "shard_34871 loaded\n",
      "shard_36400 loaded\n",
      "shard_25651 loaded\n",
      "shard_33352 loaded\n",
      "shard_8871 loaded\n",
      "shard_31881 loaded\n",
      "shard_48624 loaded\n",
      "shard_13465 loaded\n",
      "shard_4071 loaded\n",
      "shard_19790 loaded\n",
      "shard_27710 loaded\n",
      "shard_2191 loaded\n",
      "shard_47304 loaded\n",
      "shard_48081 loaded\n",
      "shard_24632 loaded\n",
      "shard_11502 loaded\n",
      "shard_3104 loaded\n",
      "shard_15017 loaded\n",
      "shard_24544 loaded\n",
      "shard_2624 loaded\n",
      "shard_22015 loaded\n",
      "shard_44317 loaded\n",
      "shard_7802 loaded\n",
      "shard_20903 loaded\n",
      "shard_30643 loaded\n",
      "shard_46706 loaded\n",
      "shard_38859 loaded\n",
      "shard_40623 loaded\n",
      "shard_9953 loaded\n",
      "shard_42216 loaded\n",
      "shard_48868 loaded\n",
      "shard_31943 loaded\n",
      "shard_39038 loaded\n",
      "shard_23715 loaded\n",
      "shard_41043 loaded\n",
      "shard_2698 loaded\n",
      "shard_36024 loaded\n",
      "shard_22339 loaded\n",
      "shard_35501 loaded\n",
      "shard_49591 loaded\n",
      "shard_34348 loaded\n",
      "shard_49292 loaded\n",
      "shard_32056 loaded\n",
      "shard_46522 loaded\n",
      "shard_36208 loaded\n",
      "shard_42828 loaded\n",
      "shard_36387 loaded\n",
      "shard_18765 loaded\n",
      "shard_42370 loaded\n",
      "shard_29771 loaded\n",
      "shard_12338 loaded\n",
      "shard_28956 loaded\n",
      "shard_6384 loaded\n",
      "shard_13813 loaded\n",
      "shard_18641 loaded\n",
      "shard_13763 loaded\n",
      "shard_30015 loaded\n",
      "shard_3305 loaded\n",
      "shard_2129 loaded\n",
      "shard_4869 loaded\n",
      "shard_45081 loaded\n",
      "shard_15583 loaded\n",
      "shard_27095 loaded\n",
      "shard_11387 loaded\n",
      "shard_42849 loaded\n",
      "shard_44733 loaded\n",
      "shard_303 loaded\n",
      "shard_27441 loaded\n",
      "shard_4621 loaded\n",
      "shard_36920 loaded\n",
      "shard_2978 loaded\n",
      "shard_24499 loaded\n",
      "shard_357 loaded\n",
      "shard_28412 loaded\n",
      "shard_47529 loaded\n",
      "shard_48838 loaded\n",
      "shard_12983 loaded\n",
      "shard_10965 loaded\n",
      "shard_38454 loaded\n",
      "shard_18365 loaded\n",
      "shard_11543 loaded\n",
      "shard_35317 loaded\n",
      "shard_33070 loaded\n",
      "shard_15199 loaded\n",
      "shard_2230 loaded\n",
      "shard_16697 loaded\n",
      "shard_3526 loaded\n",
      "shard_3337 loaded\n",
      "shard_11924 loaded\n",
      "shard_34767 loaded\n",
      "shard_43368 loaded\n",
      "shard_10045 loaded\n",
      "shard_35233 loaded\n",
      "shard_27783 loaded\n",
      "shard_37921 loaded\n",
      "shard_28690 loaded\n",
      "shard_40368 loaded\n",
      "shard_41825 loaded\n",
      "shard_18234 loaded\n",
      "shard_33543 loaded\n",
      "shard_3515 loaded\n",
      "shard_20474 loaded\n",
      "shard_6256 loaded\n",
      "shard_19324 loaded\n",
      "shard_8038 loaded\n",
      "shard_27331 loaded\n",
      "shard_22482 loaded\n",
      "shard_1108 loaded\n",
      "shard_22073 loaded\n",
      "shard_31582 loaded\n",
      "shard_27789 loaded\n",
      "shard_23956 loaded\n",
      "shard_4504 loaded\n",
      "shard_17453 loaded\n",
      "shard_33561 loaded\n",
      "shard_23545 loaded\n",
      "shard_43245 loaded\n",
      "shard_41167 loaded\n",
      "shard_12667 loaded\n",
      "shard_26845 loaded\n",
      "shard_11284 loaded\n",
      "shard_23759 loaded\n",
      "shard_5613 loaded\n",
      "shard_481 loaded\n",
      "shard_11764 loaded\n",
      "shard_46643 loaded\n",
      "shard_45006 loaded\n",
      "shard_46480 loaded\n",
      "shard_12888 loaded\n",
      "shard_8753 loaded\n",
      "shard_33127 loaded\n",
      "shard_5682 loaded\n",
      "shard_9487 loaded\n",
      "shard_43423 loaded\n",
      "shard_2258 loaded\n",
      "shard_47162 loaded\n",
      "shard_32427 loaded\n",
      "shard_6803 loaded\n",
      "shard_34879 loaded\n",
      "shard_652 loaded\n",
      "shard_42545 loaded\n",
      "shard_9580 loaded\n",
      "shard_32228 loaded\n",
      "shard_24508 loaded\n",
      "shard_39399 loaded\n",
      "shard_3833 loaded\n",
      "shard_46017 loaded\n",
      "shard_29358 loaded\n",
      "shard_38249 loaded\n",
      "shard_32349 loaded\n",
      "shard_6003 loaded\n",
      "shard_30266 loaded\n",
      "shard_43 loaded\n",
      "shard_986 loaded\n",
      "shard_15214 loaded\n",
      "shard_33591 loaded\n",
      "shard_18986 loaded\n",
      "shard_12659 loaded\n",
      "shard_647 loaded\n",
      "shard_11205 loaded\n",
      "shard_47883 loaded\n",
      "shard_13491 loaded\n",
      "shard_23314 loaded\n",
      "shard_20141 loaded\n",
      "shard_19823 loaded\n",
      "shard_48103 loaded\n",
      "shard_25947 loaded\n",
      "shard_9298 loaded\n",
      "shard_21671 loaded\n",
      "shard_9291 loaded\n",
      "shard_5883 loaded\n",
      "shard_6181 loaded\n",
      "shard_43618 loaded\n",
      "shard_35792 loaded\n",
      "shard_11613 loaded\n",
      "shard_10888 loaded\n",
      "shard_19463 loaded\n",
      "shard_15723 loaded\n",
      "shard_6441 loaded\n",
      "shard_32802 loaded\n",
      "shard_27470 loaded\n",
      "shard_40598 loaded\n",
      "shard_1217 loaded\n",
      "shard_591 loaded\n",
      "shard_3758 loaded\n",
      "shard_2416 loaded\n",
      "shard_12053 loaded\n",
      "shard_18545 loaded\n",
      "shard_16893 loaded\n",
      "shard_46723 loaded\n",
      "shard_44024 loaded\n",
      "shard_31611 loaded\n",
      "shard_490 loaded\n",
      "shard_46861 loaded\n",
      "shard_44477 loaded\n",
      "shard_9614 loaded\n",
      "shard_21388 loaded\n",
      "shard_21143 loaded\n",
      "shard_9256 loaded\n",
      "shard_37959 loaded\n",
      "shard_502 loaded\n",
      "shard_1900 loaded\n",
      "shard_2511 loaded\n",
      "shard_8990 loaded\n",
      "shard_5269 loaded\n",
      "shard_5495 loaded\n",
      "shard_17594 loaded\n",
      "shard_16915 loaded\n",
      "shard_42234 loaded\n",
      "shard_24351 loaded\n",
      "shard_28788 loaded\n",
      "shard_40830 loaded\n",
      "shard_14498 loaded\n",
      "shard_36661 loaded\n",
      "shard_21944 loaded\n",
      "shard_19209 loaded\n",
      "shard_15727 loaded\n",
      "shard_47495 loaded\n",
      "shard_15473 loaded\n",
      "shard_40804 loaded\n",
      "shard_49133 loaded\n",
      "shard_10339 loaded\n",
      "shard_4298 loaded\n",
      "shard_33054 loaded\n",
      "shard_31708 loaded\n",
      "shard_45389 loaded\n",
      "shard_4273 loaded\n",
      "shard_4911 loaded\n",
      "shard_48240 loaded\n",
      "shard_10082 loaded\n",
      "shard_10855 loaded\n",
      "shard_36065 loaded\n",
      "shard_41107 loaded\n",
      "shard_46565 loaded\n",
      "shard_8060 loaded\n",
      "shard_41788 loaded\n",
      "shard_14408 loaded\n",
      "shard_9125 loaded\n",
      "shard_16605 loaded\n",
      "shard_44247 loaded\n",
      "shard_3302 loaded\n",
      "shard_337 loaded\n",
      "shard_29667 loaded\n",
      "shard_4826 loaded\n",
      "shard_35259 loaded\n",
      "shard_40134 loaded\n",
      "shard_22307 loaded\n",
      "shard_29529 loaded\n",
      "shard_27036 loaded\n",
      "shard_24121 loaded\n",
      "shard_4188 loaded\n",
      "shard_4890 loaded\n",
      "shard_3353 loaded\n",
      "shard_28066 loaded\n",
      "shard_16909 loaded\n",
      "shard_19890 loaded\n",
      "shard_30131 loaded\n",
      "shard_19414 loaded\n",
      "shard_30547 loaded\n",
      "shard_24437 loaded\n",
      "shard_38235 loaded\n",
      "shard_38096 loaded\n",
      "shard_18763 loaded\n",
      "shard_799 loaded\n",
      "shard_30817 loaded\n",
      "shard_16969 loaded\n",
      "shard_15645 loaded\n",
      "shard_29508 loaded\n",
      "shard_18866 loaded\n",
      "shard_8308 loaded\n",
      "shard_17119 loaded\n",
      "shard_38119 loaded\n",
      "shard_31060 loaded\n",
      "shard_22837 loaded\n",
      "shard_26250 loaded\n",
      "shard_27589 loaded\n",
      "shard_4954 loaded\n",
      "shard_32630 loaded\n",
      "shard_26906 loaded\n",
      "shard_49815 loaded\n",
      "shard_32551 loaded\n",
      "shard_15842 loaded\n",
      "shard_19592 loaded\n",
      "shard_7192 loaded\n",
      "shard_10581 loaded\n",
      "shard_35868 loaded\n",
      "shard_49442 loaded\n",
      "shard_348 loaded\n",
      "shard_30030 loaded\n",
      "shard_28030 loaded\n",
      "shard_27665 loaded\n",
      "shard_12576 loaded\n",
      "shard_2222 loaded\n",
      "shard_25679 loaded\n",
      "shard_25822 loaded\n",
      "shard_4591 loaded\n",
      "shard_27642 loaded\n",
      "shard_49376 loaded\n",
      "shard_45653 loaded\n",
      "shard_41391 loaded\n",
      "shard_18024 loaded\n",
      "shard_37506 loaded\n",
      "shard_10682 loaded\n",
      "shard_24873 loaded\n",
      "shard_597 loaded\n",
      "shard_11426 loaded\n",
      "shard_2736 loaded\n",
      "shard_13438 loaded\n",
      "shard_28011 loaded\n",
      "shard_36821 loaded\n",
      "shard_20455 loaded\n",
      "shard_19459 loaded\n",
      "shard_3298 loaded\n",
      "shard_1285 loaded\n",
      "shard_31246 loaded\n",
      "shard_17423 loaded\n",
      "shard_33850 loaded\n",
      "shard_30280 loaded\n",
      "shard_11268 loaded\n",
      "shard_27245 loaded\n",
      "shard_18985 loaded\n",
      "shard_24037 loaded\n",
      "shard_5393 loaded\n",
      "shard_16473 loaded\n",
      "shard_38795 loaded\n",
      "shard_28813 loaded\n",
      "shard_30645 loaded\n",
      "shard_42781 loaded\n",
      "shard_26621 loaded\n",
      "shard_4132 loaded\n",
      "shard_20021 loaded\n",
      "shard_39425 loaded\n",
      "shard_9963 loaded\n",
      "shard_11154 loaded\n",
      "shard_981 loaded\n",
      "shard_28668 loaded\n",
      "shard_36321 loaded\n",
      "shard_13284 loaded\n",
      "shard_45252 loaded\n",
      "shard_33072 loaded\n",
      "shard_41424 loaded\n",
      "shard_11308 loaded\n",
      "shard_33933 loaded\n",
      "shard_17711 loaded\n",
      "shard_22395 loaded\n",
      "shard_29297 loaded\n",
      "shard_42420 loaded\n",
      "shard_28207 loaded\n",
      "shard_310 loaded\n",
      "shard_40415 loaded\n",
      "shard_48656 loaded\n",
      "shard_4331 loaded\n",
      "shard_4760 loaded\n",
      "shard_46176 loaded\n",
      "shard_44823 loaded\n",
      "shard_31299 loaded\n",
      "shard_47359 loaded\n",
      "shard_11714 loaded\n",
      "shard_40753 loaded\n",
      "shard_37759 loaded\n",
      "shard_13704 loaded\n",
      "shard_35631 loaded\n",
      "shard_17894 loaded\n",
      "shard_1888 loaded\n",
      "shard_12897 loaded\n",
      "shard_20836 loaded\n",
      "shard_35810 loaded\n",
      "shard_23916 loaded\n",
      "shard_21945 loaded\n",
      "shard_3519 loaded\n",
      "shard_5709 loaded\n",
      "shard_6220 loaded\n",
      "shard_39432 loaded\n",
      "shard_42512 loaded\n",
      "shard_44248 loaded\n",
      "shard_8571 loaded\n",
      "shard_15434 loaded\n",
      "shard_49235 loaded\n",
      "shard_1093 loaded\n",
      "shard_31178 loaded\n",
      "shard_18265 loaded\n",
      "shard_37294 loaded\n",
      "shard_5592 loaded\n",
      "shard_33959 loaded\n",
      "shard_307 loaded\n",
      "shard_38677 loaded\n",
      "shard_23779 loaded\n",
      "shard_32828 loaded\n",
      "shard_44038 loaded\n",
      "shard_22487 loaded\n",
      "shard_31177 loaded\n",
      "shard_36611 loaded\n",
      "shard_30102 loaded\n",
      "shard_1014 loaded\n",
      "shard_27057 loaded\n",
      "shard_36976 loaded\n",
      "shard_16658 loaded\n",
      "shard_1832 loaded\n",
      "shard_9713 loaded\n",
      "shard_49164 loaded\n",
      "shard_39876 loaded\n",
      "shard_22986 loaded\n",
      "shard_21482 loaded\n",
      "shard_7597 loaded\n",
      "shard_43918 loaded\n",
      "shard_11362 loaded\n",
      "shard_43962 loaded\n",
      "shard_18818 loaded\n",
      "shard_1058 loaded\n",
      "shard_20582 loaded\n",
      "shard_3581 loaded\n",
      "shard_16631 loaded\n",
      "shard_23527 loaded\n",
      "shard_43482 loaded\n",
      "shard_27136 loaded\n",
      "shard_9501 loaded\n",
      "shard_6695 loaded\n",
      "shard_35328 loaded\n",
      "shard_37336 loaded\n",
      "shard_13062 loaded\n",
      "shard_43546 loaded\n",
      "shard_22619 loaded\n",
      "shard_14098 loaded\n",
      "shard_11894 loaded\n",
      "shard_11121 loaded\n",
      "shard_31358 loaded\n",
      "shard_34140 loaded\n",
      "shard_5019 loaded\n",
      "shard_2480 loaded\n",
      "shard_49400 loaded\n",
      "shard_27812 loaded\n",
      "shard_11462 loaded\n",
      "shard_42795 loaded\n",
      "shard_32534 loaded\n",
      "shard_43175 loaded\n",
      "shard_41605 loaded\n",
      "shard_36623 loaded\n",
      "shard_11484 loaded\n",
      "shard_37459 loaded\n",
      "shard_39913 loaded\n",
      "shard_47950 loaded\n",
      "shard_11792 loaded\n",
      "shard_46243 loaded\n",
      "shard_13783 loaded\n",
      "shard_16157 loaded\n",
      "shard_19191 loaded\n",
      "shard_37647 loaded\n",
      "shard_2826 loaded\n",
      "shard_27392 loaded\n",
      "shard_40961 loaded\n",
      "shard_42633 loaded\n",
      "shard_47961 loaded\n",
      "shard_35303 loaded\n",
      "shard_44744 loaded\n",
      "shard_43254 loaded\n",
      "shard_39786 loaded\n",
      "shard_6575 loaded\n",
      "shard_1868 loaded\n",
      "shard_47631 loaded\n",
      "shard_612 loaded\n",
      "shard_40487 loaded\n",
      "shard_2419 loaded\n",
      "shard_37969 loaded\n",
      "shard_21230 loaded\n",
      "shard_38575 loaded\n",
      "shard_42471 loaded\n",
      "shard_20921 loaded\n",
      "shard_19130 loaded\n",
      "shard_46656 loaded\n",
      "shard_10003 loaded\n",
      "shard_12219 loaded\n",
      "shard_48515 loaded\n",
      "shard_41521 loaded\n",
      "shard_25766 loaded\n",
      "shard_5318 loaded\n",
      "shard_6405 loaded\n",
      "shard_37568 loaded\n",
      "shard_33092 loaded\n",
      "shard_19434 loaded\n",
      "shard_25370 loaded\n",
      "shard_6487 loaded\n",
      "shard_49420 loaded\n",
      "shard_23492 loaded\n",
      "shard_35366 loaded\n",
      "shard_43973 loaded\n",
      "shard_22057 loaded\n",
      "shard_31171 loaded\n",
      "shard_40756 loaded\n",
      "shard_7549 loaded\n",
      "shard_27276 loaded\n",
      "shard_26235 loaded\n",
      "shard_42156 loaded\n",
      "shard_6359 loaded\n",
      "shard_11516 loaded\n",
      "shard_26670 loaded\n",
      "shard_35295 loaded\n",
      "shard_9164 loaded\n",
      "shard_35178 loaded\n",
      "shard_40127 loaded\n",
      "shard_3597 loaded\n",
      "shard_46031 loaded\n",
      "shard_26315 loaded\n",
      "shard_25444 loaded\n",
      "shard_35161 loaded\n",
      "shard_38620 loaded\n",
      "shard_39610 loaded\n",
      "shard_24551 loaded\n",
      "shard_29981 loaded\n",
      "shard_48495 loaded\n",
      "shard_8254 loaded\n",
      "shard_37617 loaded\n",
      "shard_9549 loaded\n",
      "shard_20267 loaded\n",
      "shard_41463 loaded\n",
      "shard_23974 loaded\n",
      "shard_6360 loaded\n",
      "shard_15380 loaded\n",
      "shard_14909 loaded\n",
      "shard_48772 loaded\n",
      "shard_7656 loaded\n",
      "shard_16289 loaded\n",
      "shard_14158 loaded\n",
      "shard_22962 loaded\n",
      "shard_27586 loaded\n",
      "shard_2842 loaded\n",
      "shard_20845 loaded\n",
      "shard_1676 loaded\n",
      "shard_32813 loaded\n",
      "shard_12266 loaded\n",
      "shard_5584 loaded\n",
      "shard_34291 loaded\n",
      "shard_2996 loaded\n",
      "shard_15420 loaded\n",
      "shard_41348 loaded\n",
      "shard_20088 loaded\n",
      "shard_2591 loaded\n",
      "shard_49433 loaded\n",
      "shard_3146 loaded\n",
      "shard_26486 loaded\n",
      "shard_4315 loaded\n",
      "shard_36763 loaded\n",
      "shard_10160 loaded\n",
      "shard_27211 loaded\n",
      "shard_47179 loaded\n",
      "shard_25307 loaded\n",
      "shard_28824 loaded\n",
      "shard_4805 loaded\n",
      "shard_26984 loaded\n",
      "shard_37193 loaded\n",
      "shard_45254 loaded\n",
      "shard_49152 loaded\n",
      "shard_26887 loaded\n",
      "shard_36693 loaded\n",
      "shard_5057 loaded\n",
      "shard_2369 loaded\n",
      "shard_13760 loaded\n",
      "shard_46342 loaded\n",
      "shard_8197 loaded\n",
      "shard_47594 loaded\n",
      "shard_43747 loaded\n",
      "shard_10215 loaded\n",
      "shard_21823 loaded\n",
      "shard_24198 loaded\n",
      "shard_2631 loaded\n",
      "shard_48157 loaded\n",
      "shard_31865 loaded\n",
      "shard_1895 loaded\n",
      "shard_36815 loaded\n",
      "shard_21728 loaded\n",
      "shard_36429 loaded\n",
      "shard_15867 loaded\n",
      "shard_45935 loaded\n",
      "shard_21156 loaded\n",
      "shard_19210 loaded\n",
      "shard_12826 loaded\n",
      "shard_36778 loaded\n",
      "shard_3818 loaded\n",
      "shard_21458 loaded\n",
      "shard_35523 loaded\n",
      "shard_8153 loaded\n",
      "shard_41349 loaded\n",
      "shard_37518 loaded\n",
      "shard_2605 loaded\n",
      "shard_31455 loaded\n",
      "shard_47468 loaded\n",
      "shard_13394 loaded\n",
      "shard_43761 loaded\n",
      "shard_33778 loaded\n",
      "shard_2523 loaded\n",
      "shard_22281 loaded\n",
      "shard_9533 loaded\n",
      "shard_26184 loaded\n",
      "shard_23830 loaded\n",
      "shard_19580 loaded\n",
      "shard_41115 loaded\n",
      "shard_29412 loaded\n",
      "shard_38204 loaded\n",
      "shard_24724 loaded\n",
      "shard_8960 loaded\n",
      "shard_20539 loaded\n",
      "shard_34330 loaded\n",
      "shard_7951 loaded\n",
      "shard_4631 loaded\n",
      "shard_33106 loaded\n",
      "shard_11644 loaded\n",
      "shard_35473 loaded\n",
      "shard_14550 loaded\n",
      "shard_48054 loaded\n",
      "shard_36408 loaded\n",
      "shard_36659 loaded\n",
      "shard_44215 loaded\n",
      "shard_40528 loaded\n",
      "shard_46464 loaded\n",
      "shard_24085 loaded\n",
      "shard_17709 loaded\n",
      "shard_34318 loaded\n",
      "shard_29605 loaded\n",
      "shard_28333 loaded\n",
      "shard_1686 loaded\n",
      "shard_19747 loaded\n",
      "shard_7128 loaded\n",
      "shard_8141 loaded\n",
      "shard_16995 loaded\n",
      "shard_19673 loaded\n",
      "shard_34853 loaded\n",
      "shard_45234 loaded\n",
      "shard_18352 loaded\n",
      "shard_46888 loaded\n",
      "shard_38088 loaded\n",
      "shard_25545 loaded\n",
      "shard_35682 loaded\n",
      "shard_9223 loaded\n",
      "shard_34702 loaded\n",
      "shard_24475 loaded\n",
      "shard_17540 loaded\n",
      "shard_37957 loaded\n",
      "shard_16854 loaded\n",
      "shard_17624 loaded\n",
      "shard_31351 loaded\n",
      "shard_12444 loaded\n",
      "shard_37900 loaded\n",
      "shard_12722 loaded\n",
      "shard_12209 loaded\n",
      "shard_9855 loaded\n",
      "shard_38509 loaded\n",
      "shard_10256 loaded\n",
      "shard_14278 loaded\n",
      "shard_39523 loaded\n",
      "shard_27478 loaded\n",
      "shard_38353 loaded\n",
      "shard_34819 loaded\n",
      "shard_38727 loaded\n",
      "shard_5687 loaded\n",
      "shard_15629 loaded\n",
      "shard_9078 loaded\n",
      "shard_35932 loaded\n",
      "shard_11745 loaded\n",
      "shard_31043 loaded\n",
      "shard_30376 loaded\n",
      "shard_6618 loaded\n",
      "shard_8129 loaded\n",
      "shard_39815 loaded\n",
      "shard_10754 loaded\n",
      "shard_40523 loaded\n",
      "shard_33524 loaded\n",
      "shard_29713 loaded\n",
      "shard_2766 loaded\n",
      "shard_47546 loaded\n",
      "shard_43264 loaded\n",
      "shard_31721 loaded\n",
      "shard_39651 loaded\n",
      "shard_19138 loaded\n",
      "shard_632 loaded\n",
      "shard_807 loaded\n",
      "shard_10900 loaded\n",
      "shard_33825 loaded\n",
      "shard_20033 loaded\n",
      "shard_9233 loaded\n",
      "shard_26951 loaded\n",
      "shard_4586 loaded\n",
      "shard_47709 loaded\n",
      "shard_39863 loaded\n",
      "shard_8802 loaded\n",
      "shard_21286 loaded\n",
      "shard_17752 loaded\n",
      "shard_36444 loaded\n",
      "shard_18963 loaded\n",
      "shard_35782 loaded\n",
      "shard_19801 loaded\n",
      "shard_9052 loaded\n",
      "shard_2009 loaded\n",
      "shard_5707 loaded\n",
      "shard_19607 loaded\n",
      "shard_37094 loaded\n",
      "shard_21663 loaded\n",
      "shard_13251 loaded\n",
      "shard_26553 loaded\n",
      "shard_41532 loaded\n",
      "shard_32388 loaded\n",
      "shard_2930 loaded\n",
      "shard_47157 loaded\n",
      "shard_9102 loaded\n",
      "shard_31166 loaded\n",
      "shard_48641 loaded\n",
      "shard_26525 loaded\n",
      "shard_15339 loaded\n",
      "shard_32318 loaded\n",
      "shard_13998 loaded\n",
      "shard_8425 loaded\n",
      "shard_41901 loaded\n",
      "shard_10530 loaded\n",
      "shard_20409 loaded\n",
      "shard_14759 loaded\n",
      "shard_4917 loaded\n",
      "shard_35215 loaded\n",
      "shard_19853 loaded\n",
      "shard_20971 loaded\n",
      "shard_41251 loaded\n",
      "shard_15410 loaded\n",
      "shard_26077 loaded\n",
      "shard_13683 loaded\n",
      "shard_44921 loaded\n",
      "shard_14083 loaded\n",
      "shard_12927 loaded\n",
      "shard_7090 loaded\n",
      "shard_27521 loaded\n",
      "shard_41247 loaded\n",
      "shard_22240 loaded\n",
      "shard_5394 loaded\n",
      "shard_44105 loaded\n",
      "shard_47946 loaded\n",
      "shard_41357 loaded\n",
      "shard_47704 loaded\n",
      "shard_15319 loaded\n",
      "shard_32706 loaded\n",
      "shard_30497 loaded\n",
      "shard_37440 loaded\n",
      "shard_42369 loaded\n",
      "shard_37152 loaded\n",
      "shard_16263 loaded\n",
      "shard_11254 loaded\n",
      "shard_27834 loaded\n",
      "shard_18139 loaded\n",
      "shard_19403 loaded\n",
      "shard_34198 loaded\n",
      "shard_3333 loaded\n",
      "shard_28223 loaded\n",
      "shard_31332 loaded\n",
      "shard_39334 loaded\n",
      "shard_16568 loaded\n",
      "shard_41046 loaded\n",
      "shard_48437 loaded\n",
      "shard_20506 loaded\n",
      "shard_33025 loaded\n",
      "shard_5086 loaded\n",
      "shard_7319 loaded\n",
      "shard_3830 loaded\n",
      "shard_35194 loaded\n",
      "shard_3213 loaded\n",
      "shard_21462 loaded\n",
      "shard_33075 loaded\n",
      "shard_34018 loaded\n",
      "shard_3645 loaded\n",
      "shard_173 loaded\n",
      "shard_48913 loaded\n",
      "shard_14748 loaded\n",
      "shard_43867 loaded\n",
      "shard_23873 loaded\n",
      "shard_9216 loaded\n",
      "shard_21039 loaded\n",
      "shard_23585 loaded\n",
      "shard_1165 loaded\n",
      "shard_25306 loaded\n",
      "shard_10973 loaded\n",
      "shard_31380 loaded\n",
      "shard_29604 loaded\n",
      "shard_23356 loaded\n",
      "shard_4434 loaded\n",
      "shard_37696 loaded\n",
      "shard_35715 loaded\n",
      "shard_12250 loaded\n",
      "shard_29976 loaded\n",
      "shard_15020 loaded\n",
      "shard_49783 loaded\n",
      "shard_9309 loaded\n",
      "shard_12879 loaded\n",
      "shard_22514 loaded\n",
      "shard_44562 loaded\n",
      "shard_42741 loaded\n",
      "shard_11336 loaded\n",
      "shard_1542 loaded\n",
      "shard_42384 loaded\n",
      "shard_36318 loaded\n",
      "shard_4865 loaded\n",
      "shard_43288 loaded\n",
      "shard_4933 loaded\n",
      "shard_2296 loaded\n",
      "shard_40712 loaded\n",
      "shard_8534 loaded\n",
      "shard_27131 loaded\n",
      "shard_21501 loaded\n",
      "shard_26072 loaded\n",
      "shard_14407 loaded\n",
      "shard_32738 loaded\n",
      "shard_2662 loaded\n",
      "shard_18136 loaded\n",
      "shard_39577 loaded\n",
      "shard_42485 loaded\n",
      "shard_4474 loaded\n",
      "shard_4313 loaded\n",
      "shard_42464 loaded\n",
      "shard_31154 loaded\n",
      "shard_22816 loaded\n",
      "shard_7506 loaded\n",
      "shard_31555 loaded\n",
      "shard_12598 loaded\n",
      "shard_41853 loaded\n",
      "shard_39616 loaded\n",
      "shard_48922 loaded\n",
      "shard_32358 loaded\n",
      "shard_46707 loaded\n",
      "shard_12147 loaded\n",
      "shard_5498 loaded\n",
      "shard_10676 loaded\n",
      "shard_40727 loaded\n",
      "shard_43215 loaded\n",
      "shard_9301 loaded\n",
      "shard_18414 loaded\n",
      "shard_49879 loaded\n",
      "shard_30625 loaded\n",
      "shard_24358 loaded\n",
      "shard_721 loaded\n",
      "shard_41961 loaded\n",
      "shard_9738 loaded\n",
      "shard_19025 loaded\n",
      "shard_355 loaded\n",
      "shard_5995 loaded\n",
      "shard_24428 loaded\n",
      "shard_13215 loaded\n",
      "shard_18834 loaded\n",
      "shard_7528 loaded\n",
      "shard_16087 loaded\n",
      "shard_43835 loaded\n",
      "shard_40123 loaded\n",
      "shard_9019 loaded\n",
      "shard_14765 loaded\n",
      "shard_33452 loaded\n",
      "shard_35865 loaded\n",
      "shard_9021 loaded\n",
      "shard_1170 loaded\n",
      "shard_38974 loaded\n",
      "shard_44981 loaded\n",
      "shard_49582 loaded\n",
      "shard_28229 loaded\n",
      "shard_26418 loaded\n",
      "shard_49796 loaded\n",
      "shard_15991 loaded\n",
      "shard_39065 loaded\n",
      "shard_37850 loaded\n",
      "shard_45939 loaded\n",
      "shard_9032 loaded\n",
      "shard_18386 loaded\n",
      "shard_40166 loaded\n",
      "shard_40403 loaded\n",
      "shard_30676 loaded\n",
      "shard_45905 loaded\n",
      "shard_14463 loaded\n",
      "shard_9450 loaded\n",
      "shard_22988 loaded\n",
      "shard_33297 loaded\n",
      "shard_47001 loaded\n",
      "shard_32170 loaded\n",
      "shard_4640 loaded\n",
      "shard_33254 loaded\n",
      "shard_28256 loaded\n",
      "shard_24090 loaded\n",
      "shard_36970 loaded\n",
      "shard_34934 loaded\n",
      "shard_9121 loaded\n",
      "shard_26446 loaded\n",
      "shard_21403 loaded\n",
      "shard_36057 loaded\n",
      "shard_33150 loaded\n",
      "shard_3619 loaded\n",
      "shard_32720 loaded\n",
      "shard_43739 loaded\n",
      "shard_7894 loaded\n",
      "shard_4210 loaded\n",
      "shard_12414 loaded\n",
      "shard_16235 loaded\n",
      "shard_29656 loaded\n",
      "shard_35342 loaded\n",
      "shard_2903 loaded\n",
      "shard_11454 loaded\n",
      "shard_6818 loaded\n",
      "shard_35276 loaded\n",
      "shard_1027 loaded\n",
      "shard_31919 loaded\n",
      "shard_23734 loaded\n",
      "shard_16610 loaded\n",
      "shard_48234 loaded\n",
      "shard_10661 loaded\n",
      "shard_5203 loaded\n",
      "shard_10141 loaded\n",
      "shard_40120 loaded\n",
      "shard_21957 loaded\n",
      "shard_25340 loaded\n",
      "shard_13259 loaded\n",
      "shard_29722 loaded\n",
      "shard_27561 loaded\n",
      "shard_19511 loaded\n",
      "shard_15042 loaded\n",
      "shard_12238 loaded\n",
      "shard_13208 loaded\n",
      "shard_36122 loaded\n",
      "shard_43522 loaded\n",
      "shard_19961 loaded\n",
      "shard_11256 loaded\n",
      "shard_37471 loaded\n",
      "shard_19556 loaded\n",
      "shard_24973 loaded\n",
      "shard_48331 loaded\n",
      "shard_589 loaded\n",
      "shard_15286 loaded\n",
      "shard_48579 loaded\n",
      "shard_16240 loaded\n",
      "shard_32489 loaded\n",
      "shard_5048 loaded\n",
      "shard_22137 loaded\n",
      "shard_33018 loaded\n",
      "shard_29983 loaded\n",
      "shard_41861 loaded\n",
      "shard_17367 loaded\n",
      "shard_45938 loaded\n",
      "shard_29252 loaded\n",
      "shard_35345 loaded\n",
      "shard_37088 loaded\n",
      "shard_37682 loaded\n",
      "shard_38089 loaded\n",
      "shard_23737 loaded\n",
      "shard_5195 loaded\n",
      "shard_42500 loaded\n",
      "shard_7903 loaded\n",
      "shard_29884 loaded\n",
      "shard_35383 loaded\n",
      "shard_46716 loaded\n",
      "shard_46718 loaded\n",
      "shard_30213 loaded\n",
      "shard_2794 loaded\n",
      "shard_9734 loaded\n",
      "shard_4597 loaded\n",
      "shard_23515 loaded\n",
      "shard_15551 loaded\n",
      "shard_1525 loaded\n",
      "shard_40460 loaded\n",
      "shard_19845 loaded\n",
      "shard_10203 loaded\n",
      "shard_43056 loaded\n",
      "shard_12143 loaded\n",
      "shard_48667 loaded\n",
      "shard_44472 loaded\n",
      "shard_45817 loaded\n",
      "shard_3860 loaded\n",
      "shard_49155 loaded\n",
      "shard_42582 loaded\n",
      "shard_45214 loaded\n",
      "shard_16124 loaded\n",
      "shard_19362 loaded\n",
      "shard_45715 loaded\n",
      "shard_4703 loaded\n",
      "shard_42657 loaded\n",
      "shard_9932 loaded\n",
      "shard_25309 loaded\n",
      "shard_13650 loaded\n",
      "shard_15813 loaded\n",
      "shard_6596 loaded\n",
      "shard_33888 loaded\n",
      "shard_10704 loaded\n",
      "shard_46879 loaded\n",
      "shard_17628 loaded\n",
      "shard_42792 loaded\n",
      "shard_30950 loaded\n",
      "shard_37988 loaded\n",
      "shard_12965 loaded\n",
      "shard_43227 loaded\n",
      "shard_41943 loaded\n",
      "shard_6452 loaded\n",
      "shard_19390 loaded\n",
      "shard_48376 loaded\n",
      "shard_21074 loaded\n",
      "shard_30501 loaded\n",
      "shard_23357 loaded\n",
      "shard_2762 loaded\n",
      "shard_21750 loaded\n",
      "shard_45940 loaded\n",
      "shard_47063 loaded\n",
      "shard_16241 loaded\n",
      "shard_34394 loaded\n",
      "shard_8168 loaded\n",
      "shard_8748 loaded\n",
      "shard_48446 loaded\n",
      "shard_2880 loaded\n",
      "shard_11999 loaded\n",
      "shard_10823 loaded\n",
      "shard_46837 loaded\n",
      "shard_26657 loaded\n",
      "shard_15106 loaded\n",
      "shard_20149 loaded\n",
      "shard_43202 loaded\n",
      "shard_955 loaded\n",
      "shard_35902 loaded\n",
      "shard_44008 loaded\n",
      "shard_2241 loaded\n",
      "shard_37560 loaded\n",
      "shard_20605 loaded\n",
      "shard_27206 loaded\n",
      "shard_13262 loaded\n",
      "shard_35950 loaded\n",
      "shard_45617 loaded\n",
      "shard_17291 loaded\n",
      "shard_5923 loaded\n",
      "shard_7062 loaded\n",
      "shard_19178 loaded\n",
      "shard_22401 loaded\n",
      "shard_3185 loaded\n",
      "shard_24826 loaded\n",
      "shard_40785 loaded\n",
      "shard_39366 loaded\n",
      "shard_15113 loaded\n",
      "shard_37186 loaded\n",
      "shard_33475 loaded\n",
      "shard_32209 loaded\n",
      "shard_40511 loaded\n",
      "shard_35738 loaded\n",
      "shard_32796 loaded\n",
      "shard_40510 loaded\n",
      "shard_33749 loaded\n",
      "shard_31597 loaded\n",
      "shard_455 loaded\n",
      "shard_4327 loaded\n",
      "shard_40062 loaded\n",
      "shard_28224 loaded\n",
      "shard_20789 loaded\n",
      "shard_2266 loaded\n",
      "shard_13055 loaded\n",
      "shard_19947 loaded\n",
      "shard_38095 loaded\n",
      "shard_44500 loaded\n",
      "shard_30825 loaded\n",
      "shard_598 loaded\n",
      "shard_39318 loaded\n",
      "shard_47425 loaded\n",
      "shard_45330 loaded\n",
      "shard_15469 loaded\n",
      "shard_3173 loaded\n",
      "shard_32582 loaded\n",
      "shard_23988 loaded\n",
      "shard_3665 loaded\n",
      "shard_30866 loaded\n",
      "shard_47626 loaded\n",
      "shard_48771 loaded\n",
      "shard_3815 loaded\n",
      "shard_23960 loaded\n",
      "shard_912 loaded\n",
      "shard_18323 loaded\n",
      "shard_35324 loaded\n",
      "shard_45067 loaded\n",
      "shard_29210 loaded\n",
      "shard_41695 loaded\n",
      "shard_48451 loaded\n",
      "shard_44169 loaded\n",
      "shard_12482 loaded\n",
      "shard_246 loaded\n",
      "shard_48122 loaded\n",
      "shard_47794 loaded\n",
      "shard_25077 loaded\n",
      "shard_13401 loaded\n",
      "shard_8927 loaded\n",
      "shard_14030 loaded\n",
      "shard_823 loaded\n",
      "shard_4813 loaded\n",
      "shard_43625 loaded\n",
      "shard_9363 loaded\n",
      "shard_11979 loaded\n",
      "shard_49520 loaded\n",
      "shard_4629 loaded\n",
      "shard_4997 loaded\n",
      "shard_44251 loaded\n",
      "shard_19502 loaded\n",
      "shard_28817 loaded\n",
      "shard_42948 loaded\n",
      "shard_45953 loaded\n",
      "shard_40336 loaded\n",
      "shard_25374 loaded\n",
      "shard_19842 loaded\n",
      "shard_38708 loaded\n",
      "shard_36437 loaded\n",
      "shard_18682 loaded\n",
      "shard_39770 loaded\n",
      "shard_22302 loaded\n",
      "shard_45732 loaded\n",
      "shard_10906 loaded\n",
      "shard_17678 loaded\n",
      "shard_29742 loaded\n",
      "shard_35744 loaded\n",
      "shard_32787 loaded\n",
      "shard_49170 loaded\n",
      "shard_24989 loaded\n",
      "shard_47514 loaded\n",
      "shard_38713 loaded\n",
      "shard_25455 loaded\n",
      "shard_25042 loaded\n",
      "shard_24237 loaded\n",
      "shard_3363 loaded\n",
      "shard_3432 loaded\n",
      "shard_22048 loaded\n",
      "shard_8684 loaded\n",
      "shard_15114 loaded\n",
      "shard_22783 loaded\n",
      "shard_22008 loaded\n",
      "shard_44427 loaded\n",
      "shard_42218 loaded\n",
      "shard_16646 loaded\n",
      "shard_1585 loaded\n",
      "shard_39668 loaded\n",
      "shard_11618 loaded\n",
      "shard_43370 loaded\n",
      "shard_13455 loaded\n",
      "shard_39496 loaded\n",
      "shard_29434 loaded\n",
      "shard_26808 loaded\n",
      "shard_33547 loaded\n",
      "shard_7195 loaded\n",
      "shard_9308 loaded\n",
      "shard_18576 loaded\n",
      "shard_39487 loaded\n",
      "shard_13960 loaded\n",
      "shard_37299 loaded\n",
      "shard_15352 loaded\n",
      "shard_16099 loaded\n",
      "shard_11664 loaded\n",
      "shard_31072 loaded\n",
      "shard_48805 loaded\n",
      "shard_1861 loaded\n",
      "shard_10399 loaded\n",
      "shard_34614 loaded\n",
      "shard_6663 loaded\n",
      "shard_2712 loaded\n",
      "shard_45426 loaded\n",
      "shard_31387 loaded\n",
      "shard_32149 loaded\n",
      "shard_30971 loaded\n",
      "shard_49244 loaded\n",
      "shard_36178 loaded\n",
      "shard_27492 loaded\n",
      "shard_19817 loaded\n",
      "shard_48720 loaded\n",
      "shard_34381 loaded\n",
      "shard_47347 loaded\n",
      "shard_20447 loaded\n",
      "shard_613 loaded\n",
      "shard_10781 loaded\n",
      "shard_19325 loaded\n",
      "shard_33056 loaded\n",
      "shard_1905 loaded\n",
      "shard_6759 loaded\n",
      "shard_35921 loaded\n",
      "shard_34004 loaded\n",
      "shard_36158 loaded\n",
      "shard_5119 loaded\n",
      "shard_15414 loaded\n",
      "shard_35779 loaded\n",
      "shard_40188 loaded\n",
      "shard_21683 loaded\n",
      "shard_811 loaded\n",
      "shard_14359 loaded\n",
      "shard_45989 loaded\n",
      "shard_8630 loaded\n",
      "shard_13322 loaded\n",
      "shard_7565 loaded\n",
      "shard_29807 loaded\n",
      "shard_27735 loaded\n",
      "shard_6337 loaded\n",
      "shard_39853 loaded\n",
      "shard_49762 loaded\n",
      "shard_10292 loaded\n",
      "shard_44485 loaded\n",
      "shard_37958 loaded\n",
      "shard_49097 loaded\n",
      "shard_20768 loaded\n",
      "shard_30522 loaded\n",
      "shard_1262 loaded\n",
      "shard_32266 loaded\n",
      "shard_7552 loaded\n",
      "shard_22886 loaded\n",
      "shard_4916 loaded\n",
      "shard_10394 loaded\n",
      "shard_10554 loaded\n",
      "shard_11480 loaded\n",
      "shard_38554 loaded\n",
      "shard_18774 loaded\n",
      "shard_41130 loaded\n",
      "shard_39387 loaded\n",
      "shard_48171 loaded\n",
      "shard_29545 loaded\n",
      "shard_10315 loaded\n",
      "shard_43184 loaded\n",
      "shard_14836 loaded\n",
      "shard_36196 loaded\n",
      "shard_19664 loaded\n",
      "shard_46749 loaded\n",
      "shard_1097 loaded\n",
      "shard_41499 loaded\n",
      "shard_6344 loaded\n",
      "shard_2847 loaded\n",
      "shard_44456 loaded\n",
      "shard_6027 loaded\n",
      "shard_16138 loaded\n",
      "shard_32764 loaded\n",
      "shard_16129 loaded\n",
      "shard_49139 loaded\n",
      "shard_8728 loaded\n",
      "shard_10149 loaded\n",
      "shard_36017 loaded\n",
      "shard_37043 loaded\n",
      "shard_5036 loaded\n",
      "shard_49307 loaded\n",
      "shard_15640 loaded\n",
      "shard_2818 loaded\n",
      "shard_19866 loaded\n",
      "shard_22968 loaded\n",
      "shard_36453 loaded\n",
      "shard_35171 loaded\n",
      "shard_47380 loaded\n",
      "shard_37848 loaded\n",
      "shard_37954 loaded\n",
      "shard_6743 loaded\n",
      "shard_14578 loaded\n",
      "shard_6970 loaded\n",
      "shard_16574 loaded\n",
      "shard_34158 loaded\n",
      "shard_17627 loaded\n",
      "shard_15110 loaded\n",
      "shard_47051 loaded\n",
      "shard_31309 loaded\n",
      "shard_9653 loaded\n",
      "shard_25284 loaded\n",
      "shard_34975 loaded\n",
      "shard_240 loaded\n",
      "shard_37192 loaded\n",
      "shard_21825 loaded\n",
      "shard_20902 loaded\n",
      "shard_31093 loaded\n",
      "shard_8875 loaded\n",
      "shard_20952 loaded\n",
      "shard_22849 loaded\n",
      "shard_17643 loaded\n",
      "shard_26302 loaded\n",
      "shard_16570 loaded\n",
      "shard_31791 loaded\n",
      "shard_48002 loaded\n",
      "shard_13915 loaded\n",
      "shard_33395 loaded\n",
      "shard_45906 loaded\n",
      "shard_12613 loaded\n",
      "shard_3115 loaded\n",
      "shard_47617 loaded\n",
      "shard_15252 loaded\n",
      "shard_27838 loaded\n",
      "shard_23504 loaded\n",
      "shard_28530 loaded\n",
      "shard_44066 loaded\n",
      "shard_16366 loaded\n",
      "shard_44496 loaded\n",
      "shard_3602 loaded\n",
      "shard_4719 loaded\n",
      "shard_7795 loaded\n",
      "shard_46614 loaded\n",
      "shard_35845 loaded\n",
      "shard_34053 loaded\n",
      "shard_24744 loaded\n",
      "shard_41337 loaded\n",
      "shard_4136 loaded\n",
      "shard_45820 loaded\n",
      "shard_37333 loaded\n",
      "shard_673 loaded\n",
      "shard_44103 loaded\n",
      "shard_36051 loaded\n",
      "shard_28628 loaded\n",
      "shard_5917 loaded\n",
      "shard_8271 loaded\n",
      "shard_20635 loaded\n",
      "shard_44839 loaded\n",
      "shard_28304 loaded\n",
      "shard_13294 loaded\n",
      "shard_4411 loaded\n",
      "shard_2920 loaded\n",
      "shard_35159 loaded\n",
      "shard_20313 loaded\n",
      "shard_34182 loaded\n",
      "shard_4376 loaded\n",
      "shard_21847 loaded\n",
      "shard_5313 loaded\n",
      "shard_48410 loaded\n",
      "shard_39104 loaded\n",
      "shard_767 loaded\n",
      "shard_40175 loaded\n",
      "shard_23025 loaded\n",
      "shard_39891 loaded\n",
      "shard_16545 loaded\n",
      "shard_43443 loaded\n",
      "shard_9962 loaded\n",
      "shard_10824 loaded\n",
      "shard_11026 loaded\n",
      "shard_13200 loaded\n",
      "shard_31729 loaded\n",
      "shard_40985 loaded\n",
      "shard_32008 loaded\n",
      "shard_39949 loaded\n",
      "shard_16230 loaded\n",
      "shard_40876 loaded\n",
      "shard_25765 loaded\n",
      "shard_43782 loaded\n",
      "shard_20104 loaded\n",
      "shard_37928 loaded\n",
      "shard_44076 loaded\n",
      "shard_774 loaded\n",
      "shard_46002 loaded\n",
      "shard_10763 loaded\n",
      "shard_28102 loaded\n",
      "shard_1772 loaded\n",
      "shard_32142 loaded\n",
      "shard_39047 loaded\n",
      "shard_2096 loaded\n",
      "shard_17019 loaded\n",
      "shard_42280 loaded\n",
      "shard_24244 loaded\n",
      "shard_27698 loaded\n",
      "shard_46155 loaded\n",
      "shard_21601 loaded\n",
      "shard_42041 loaded\n",
      "shard_15936 loaded\n",
      "shard_9891 loaded\n",
      "shard_18496 loaded\n",
      "shard_484 loaded\n",
      "shard_49895 loaded\n",
      "shard_40083 loaded\n",
      "shard_33331 loaded\n",
      "shard_5868 loaded\n",
      "shard_33147 loaded\n",
      "shard_43777 loaded\n",
      "shard_2344 loaded\n",
      "shard_42093 loaded\n",
      "shard_37980 loaded\n",
      "shard_26509 loaded\n",
      "shard_41415 loaded\n",
      "shard_26690 loaded\n",
      "shard_33483 loaded\n",
      "shard_14975 loaded\n",
      "shard_46303 loaded\n",
      "shard_27766 loaded\n",
      "shard_33777 loaded\n",
      "shard_2088 loaded\n",
      "shard_1171 loaded\n",
      "shard_40259 loaded\n",
      "shard_6886 loaded\n",
      "shard_11750 loaded\n",
      "shard_3089 loaded\n",
      "shard_13335 loaded\n",
      "shard_40594 loaded\n",
      "shard_19679 loaded\n",
      "shard_30559 loaded\n",
      "shard_26831 loaded\n",
      "shard_43583 loaded\n",
      "shard_7539 loaded\n",
      "shard_8735 loaded\n",
      "shard_44737 loaded\n",
      "shard_16765 loaded\n",
      "shard_18821 loaded\n",
      "shard_42043 loaded\n",
      "shard_7838 loaded\n",
      "shard_13074 loaded\n",
      "shard_13740 loaded\n",
      "shard_17721 loaded\n",
      "shard_33439 loaded\n",
      "shard_35545 loaded\n",
      "shard_8077 loaded\n",
      "shard_45738 loaded\n",
      "shard_28478 loaded\n",
      "shard_26091 loaded\n",
      "shard_38842 loaded\n",
      "shard_28278 loaded\n",
      "shard_15657 loaded\n",
      "shard_25884 loaded\n",
      "shard_45150 loaded\n",
      "shard_2954 loaded\n",
      "shard_35138 loaded\n",
      "shard_3924 loaded\n",
      "shard_44186 loaded\n",
      "shard_46139 loaded\n",
      "shard_15170 loaded\n",
      "shard_3945 loaded\n",
      "shard_8278 loaded\n",
      "shard_444 loaded\n",
      "shard_46226 loaded\n",
      "shard_15494 loaded\n",
      "shard_32177 loaded\n",
      "shard_27362 loaded\n",
      "shard_19667 loaded\n",
      "shard_29540 loaded\n",
      "shard_11222 loaded\n",
      "shard_16870 loaded\n",
      "shard_30713 loaded\n",
      "shard_30691 loaded\n",
      "shard_25289 loaded\n",
      "shard_32402 loaded\n",
      "shard_35154 loaded\n",
      "shard_9123 loaded\n",
      "shard_48603 loaded\n",
      "shard_46165 loaded\n",
      "shard_13655 loaded\n",
      "shard_34407 loaded\n",
      "shard_49315 loaded\n",
      "shard_32867 loaded\n",
      "shard_33735 loaded\n",
      "shard_34180 loaded\n",
      "shard_43814 loaded\n",
      "shard_31531 loaded\n",
      "shard_2256 loaded\n",
      "shard_49068 loaded\n",
      "shard_9140 loaded\n",
      "shard_32395 loaded\n",
      "shard_41309 loaded\n",
      "shard_30630 loaded\n",
      "shard_17607 loaded\n",
      "shard_22328 loaded\n",
      "shard_25526 loaded\n",
      "shard_12203 loaded\n",
      "shard_1750 loaded\n",
      "shard_2688 loaded\n",
      "shard_38381 loaded\n",
      "shard_47079 loaded\n",
      "shard_37313 loaded\n",
      "shard_20083 loaded\n",
      "shard_15307 loaded\n",
      "shard_8992 loaded\n",
      "shard_10283 loaded\n",
      "shard_1492 loaded\n",
      "shard_16093 loaded\n",
      "shard_3140 loaded\n",
      "shard_18217 loaded\n",
      "shard_10897 loaded\n",
      "shard_29707 loaded\n",
      "shard_24838 loaded\n",
      "shard_29690 loaded\n",
      "shard_31514 loaded\n",
      "shard_24207 loaded\n",
      "shard_40437 loaded\n",
      "shard_36381 loaded\n",
      "shard_49217 loaded\n",
      "shard_3844 loaded\n",
      "shard_40414 loaded\n",
      "shard_11756 loaded\n",
      "shard_9975 loaded\n",
      "shard_34070 loaded\n",
      "shard_41567 loaded\n",
      "shard_24399 loaded\n",
      "shard_17866 loaded\n",
      "shard_30700 loaded\n",
      "shard_35838 loaded\n",
      "shard_40295 loaded\n",
      "shard_22915 loaded\n",
      "shard_41611 loaded\n",
      "shard_31127 loaded\n",
      "shard_7809 loaded\n",
      "shard_4773 loaded\n",
      "shard_14957 loaded\n",
      "shard_35899 loaded\n",
      "shard_25063 loaded\n",
      "shard_6866 loaded\n",
      "shard_40901 loaded\n",
      "shard_16052 loaded\n",
      "shard_23446 loaded\n",
      "shard_14129 loaded\n",
      "shard_17874 loaded\n",
      "shard_32854 loaded\n",
      "shard_22602 loaded\n",
      "shard_22283 loaded\n",
      "shard_37364 loaded\n",
      "shard_39049 loaded\n",
      "shard_42155 loaded\n",
      "shard_36102 loaded\n",
      "shard_13449 loaded\n",
      "shard_7014 loaded\n",
      "shard_28490 loaded\n",
      "shard_38012 loaded\n",
      "shard_17359 loaded\n",
      "shard_47472 loaded\n",
      "shard_17199 loaded\n",
      "shard_38158 loaded\n",
      "shard_31124 loaded\n",
      "shard_32965 loaded\n",
      "shard_35190 loaded\n",
      "shard_26744 loaded\n",
      "shard_39245 loaded\n",
      "shard_7206 loaded\n",
      "shard_16354 loaded\n",
      "shard_41428 loaded\n",
      "shard_11878 loaded\n",
      "shard_34409 loaded\n",
      "shard_13010 loaded\n",
      "shard_16101 loaded\n",
      "shard_27387 loaded\n",
      "shard_13252 loaded\n",
      "shard_9940 loaded\n",
      "shard_23699 loaded\n",
      "shard_18298 loaded\n",
      "shard_17867 loaded\n",
      "shard_15895 loaded\n",
      "shard_29190 loaded\n",
      "shard_10409 loaded\n",
      "shard_29889 loaded\n",
      "shard_8100 loaded\n",
      "shard_31683 loaded\n",
      "shard_46049 loaded\n",
      "shard_43875 loaded\n",
      "shard_10679 loaded\n",
      "shard_37746 loaded\n",
      "shard_22601 loaded\n",
      "shard_14696 loaded\n",
      "shard_1894 loaded\n",
      "shard_12794 loaded\n",
      "shard_39874 loaded\n",
      "shard_2183 loaded\n",
      "shard_16193 loaded\n",
      "shard_2273 loaded\n",
      "shard_25718 loaded\n",
      "shard_42788 loaded\n",
      "shard_27271 loaded\n",
      "shard_47254 loaded\n",
      "shard_14588 loaded\n",
      "shard_12105 loaded\n",
      "shard_10666 loaded\n",
      "shard_41127 loaded\n",
      "shard_20541 loaded\n",
      "shard_35467 loaded\n",
      "shard_12866 loaded\n",
      "shard_28751 loaded\n",
      "shard_17769 loaded\n",
      "shard_47395 loaded\n",
      "shard_40086 loaded\n",
      "shard_31066 loaded\n",
      "shard_12739 loaded\n",
      "shard_29906 loaded\n",
      "shard_1980 loaded\n",
      "shard_49933 loaded\n",
      "shard_421 loaded\n",
      "shard_26271 loaded\n",
      "shard_22585 loaded\n",
      "shard_18342 loaded\n",
      "shard_104 loaded\n",
      "shard_20000 loaded\n",
      "shard_44890 loaded\n",
      "shard_10184 loaded\n",
      "shard_22430 loaded\n",
      "shard_19618 loaded\n",
      "shard_9922 loaded\n",
      "shard_21290 loaded\n",
      "shard_49347 loaded\n",
      "shard_12346 loaded\n",
      "shard_3919 loaded\n",
      "shard_26275 loaded\n",
      "shard_35611 loaded\n",
      "shard_28080 loaded\n",
      "shard_9663 loaded\n",
      "shard_47696 loaded\n",
      "shard_43809 loaded\n",
      "shard_47385 loaded\n",
      "shard_24923 loaded\n",
      "shard_5768 loaded\n",
      "shard_42235 loaded\n",
      "shard_9979 loaded\n",
      "shard_32538 loaded\n",
      "shard_1571 loaded\n",
      "shard_8466 loaded\n",
      "shard_32593 loaded\n",
      "shard_29056 loaded\n",
      "shard_34144 loaded\n",
      "shard_21401 loaded\n",
      "shard_3734 loaded\n",
      "shard_29688 loaded\n",
      "shard_37462 loaded\n",
      "shard_13124 loaded\n",
      "shard_33660 loaded\n",
      "shard_20432 loaded\n",
      "shard_36310 loaded\n",
      "shard_21216 loaded\n",
      "shard_8656 loaded\n",
      "shard_22278 loaded\n",
      "shard_6440 loaded\n",
      "shard_30694 loaded\n",
      "shard_31871 loaded\n",
      "shard_44685 loaded\n",
      "shard_35849 loaded\n",
      "shard_25713 loaded\n",
      "shard_34074 loaded\n",
      "shard_20308 loaded\n",
      "shard_20953 loaded\n",
      "shard_15857 loaded\n",
      "shard_39875 loaded\n",
      "shard_41430 loaded\n",
      "shard_35373 loaded\n",
      "shard_17556 loaded\n",
      "shard_25673 loaded\n",
      "shard_19187 loaded\n",
      "shard_1200 loaded\n",
      "shard_41001 loaded\n",
      "shard_13844 loaded\n",
      "shard_2770 loaded\n",
      "shard_35753 loaded\n",
      "shard_41814 loaded\n",
      "shard_35267 loaded\n",
      "shard_38090 loaded\n",
      "shard_35167 loaded\n",
      "shard_3045 loaded\n",
      "shard_25105 loaded\n",
      "shard_13085 loaded\n",
      "shard_32680 loaded\n",
      "shard_3367 loaded\n",
      "shard_21208 loaded\n",
      "shard_19707 loaded\n",
      "shard_33339 loaded\n",
      "shard_3472 loaded\n",
      "shard_31396 loaded\n",
      "shard_39664 loaded\n",
      "shard_45770 loaded\n",
      "shard_43258 loaded\n",
      "shard_49418 loaded\n",
      "shard_12162 loaded\n",
      "shard_26228 loaded\n",
      "shard_38441 loaded\n",
      "shard_33650 loaded\n",
      "shard_906 loaded\n",
      "shard_20316 loaded\n",
      "shard_16745 loaded\n",
      "shard_6666 loaded\n",
      "shard_13917 loaded\n",
      "shard_49939 loaded\n",
      "shard_44512 loaded\n",
      "shard_41623 loaded\n",
      "shard_35952 loaded\n",
      "shard_49613 loaded\n",
      "shard_19563 loaded\n",
      "shard_42782 loaded\n",
      "shard_26771 loaded\n",
      "shard_28678 loaded\n",
      "shard_22373 loaded\n",
      "shard_25946 loaded\n",
      "shard_30649 loaded\n",
      "shard_38917 loaded\n",
      "shard_36077 loaded\n",
      "shard_27176 loaded\n",
      "shard_42635 loaded\n",
      "shard_7304 loaded\n",
      "shard_39099 loaded\n",
      "shard_26663 loaded\n",
      "shard_20806 loaded\n",
      "shard_19196 loaded\n",
      "shard_44638 loaded\n",
      "shard_21499 loaded\n",
      "shard_42959 loaded\n",
      "shard_12848 loaded\n",
      "shard_17735 loaded\n",
      "shard_47360 loaded\n",
      "shard_20097 loaded\n",
      "shard_10359 loaded\n",
      "shard_11057 loaded\n",
      "shard_1311 loaded\n",
      "shard_5491 loaded\n",
      "shard_4769 loaded\n",
      "shard_7093 loaded\n",
      "shard_28411 loaded\n",
      "shard_827 loaded\n",
      "shard_36732 loaded\n",
      "shard_36411 loaded\n",
      "shard_26450 loaded\n",
      "shard_1733 loaded\n",
      "shard_23159 loaded\n",
      "shard_10778 loaded\n",
      "shard_24769 loaded\n",
      "shard_44674 loaded\n",
      "shard_48239 loaded\n",
      "shard_15403 loaded\n",
      "shard_4162 loaded\n",
      "shard_49257 loaded\n",
      "shard_10558 loaded\n",
      "shard_24766 loaded\n",
      "shard_3504 loaded\n",
      "shard_48561 loaded\n",
      "shard_12385 loaded\n",
      "shard_1687 loaded\n",
      "shard_33382 loaded\n",
      "shard_46725 loaded\n",
      "shard_18325 loaded\n",
      "shard_19685 loaded\n",
      "shard_2874 loaded\n",
      "shard_35588 loaded\n",
      "shard_4100 loaded\n",
      "shard_26779 loaded\n",
      "shard_7415 loaded\n",
      "shard_4064 loaded\n",
      "shard_28547 loaded\n",
      "shard_45418 loaded\n",
      "shard_27996 loaded\n",
      "shard_48010 loaded\n",
      "shard_10830 loaded\n",
      "shard_12170 loaded\n",
      "shard_27076 loaded\n",
      "shard_35687 loaded\n",
      "shard_5778 loaded\n",
      "shard_45224 loaded\n",
      "shard_27876 loaded\n",
      "shard_29466 loaded\n",
      "shard_24949 loaded\n",
      "shard_31381 loaded\n",
      "shard_43790 loaded\n",
      "shard_42208 loaded\n",
      "shard_27559 loaded\n",
      "shard_886 loaded\n",
      "shard_24554 loaded\n",
      "shard_39799 loaded\n",
      "shard_13703 loaded\n",
      "shard_27039 loaded\n",
      "shard_45959 loaded\n",
      "shard_22958 loaded\n",
      "shard_15598 loaded\n",
      "shard_32430 loaded\n",
      "shard_12666 loaded\n",
      "shard_48796 loaded\n",
      "shard_4654 loaded\n",
      "shard_151 loaded\n",
      "shard_14046 loaded\n",
      "shard_16239 loaded\n",
      "shard_39832 loaded\n",
      "shard_1670 loaded\n",
      "shard_3366 loaded\n",
      "shard_18074 loaded\n",
      "shard_45945 loaded\n",
      "shard_41618 loaded\n",
      "shard_49758 loaded\n",
      "shard_47575 loaded\n",
      "shard_34952 loaded\n",
      "shard_31326 loaded\n",
      "shard_8374 loaded\n",
      "shard_23714 loaded\n",
      "shard_14643 loaded\n",
      "shard_34556 loaded\n",
      "shard_22288 loaded\n",
      "shard_38243 loaded\n",
      "shard_5317 loaded\n",
      "shard_19713 loaded\n",
      "shard_17306 loaded\n",
      "shard_12015 loaded\n",
      "shard_5023 loaded\n",
      "shard_24215 loaded\n",
      "shard_38179 loaded\n",
      "shard_46233 loaded\n",
      "shard_9832 loaded\n",
      "shard_9529 loaded\n",
      "shard_35565 loaded\n",
      "shard_8276 loaded\n",
      "shard_5559 loaded\n",
      "shard_6912 loaded\n",
      "shard_36769 loaded\n",
      "shard_48698 loaded\n",
      "shard_48218 loaded\n",
      "shard_22813 loaded\n",
      "shard_14236 loaded\n",
      "shard_44449 loaded\n",
      "shard_28357 loaded\n",
      "shard_48708 loaded\n",
      "shard_22044 loaded\n",
      "shard_5721 loaded\n",
      "shard_24137 loaded\n",
      "shard_35799 loaded\n",
      "shard_19984 loaded\n",
      "shard_45886 loaded\n",
      "shard_20717 loaded\n",
      "shard_4981 loaded\n",
      "shard_21794 loaded\n",
      "shard_10042 loaded\n",
      "shard_30401 loaded\n",
      "shard_2187 loaded\n",
      "shard_34720 loaded\n",
      "shard_43002 loaded\n",
      "shard_18647 loaded\n",
      "shard_46588 loaded\n",
      "shard_31302 loaded\n",
      "shard_17281 loaded\n",
      "shard_39126 loaded\n",
      "shard_340 loaded\n",
      "shard_39497 loaded\n",
      "shard_571 loaded\n",
      "shard_1112 loaded\n",
      "shard_49978 loaded\n",
      "shard_36857 loaded\n",
      "shard_8734 loaded\n",
      "shard_37767 loaded\n",
      "shard_22484 loaded\n",
      "shard_48949 loaded\n",
      "shard_38278 loaded\n",
      "shard_38833 loaded\n",
      "shard_9757 loaded\n",
      "shard_49612 loaded\n",
      "shard_21055 loaded\n",
      "shard_20923 loaded\n",
      "shard_25710 loaded\n",
      "shard_27446 loaded\n",
      "shard_27809 loaded\n",
      "shard_40238 loaded\n",
      "shard_5321 loaded\n",
      "shard_39612 loaded\n",
      "shard_10916 loaded\n",
      "shard_9737 loaded\n",
      "shard_44182 loaded\n",
      "shard_27777 loaded\n",
      "shard_39218 loaded\n",
      "shard_22038 loaded\n",
      "shard_43334 loaded\n",
      "shard_32964 loaded\n",
      "shard_48393 loaded\n",
      "shard_26973 loaded\n",
      "shard_11563 loaded\n",
      "shard_24389 loaded\n",
      "shard_40380 loaded\n",
      "shard_7557 loaded\n",
      "shard_28903 loaded\n",
      "shard_9651 loaded\n",
      "shard_11062 loaded\n",
      "shard_31540 loaded\n",
      "shard_35436 loaded\n",
      "shard_7937 loaded\n",
      "shard_46248 loaded\n",
      "shard_45356 loaded\n",
      "shard_49332 loaded\n",
      "shard_5063 loaded\n",
      "shard_40749 loaded\n",
      "shard_37442 loaded\n",
      "shard_32221 loaded\n",
      "shard_28604 loaded\n",
      "shard_18255 loaded\n",
      "shard_20573 loaded\n",
      "shard_17109 loaded\n",
      "shard_12506 loaded\n",
      "shard_2675 loaded\n",
      "shard_36675 loaded\n",
      "shard_32591 loaded\n",
      "shard_8695 loaded\n",
      "shard_26705 loaded\n",
      "shard_25478 loaded\n",
      "shard_20529 loaded\n",
      "shard_19007 loaded\n",
      "shard_25238 loaded\n",
      "shard_43037 loaded\n",
      "shard_11643 loaded\n",
      "shard_12750 loaded\n",
      "shard_23192 loaded\n",
      "shard_44210 loaded\n",
      "shard_29651 loaded\n",
      "shard_44932 loaded\n",
      "shard_43488 loaded\n",
      "shard_46589 loaded\n",
      "shard_40250 loaded\n",
      "shard_46131 loaded\n",
      "shard_14324 loaded\n",
      "shard_15124 loaded\n",
      "shard_26572 loaded\n",
      "shard_24156 loaded\n",
      "shard_36203 loaded\n",
      "shard_41871 loaded\n",
      "shard_13476 loaded\n",
      "shard_43609 loaded\n",
      "shard_49110 loaded\n",
      "shard_23994 loaded\n",
      "shard_23481 loaded\n",
      "shard_27217 loaded\n",
      "shard_47043 loaded\n",
      "shard_23852 loaded\n",
      "shard_48244 loaded\n",
      "shard_29449 loaded\n",
      "shard_23201 loaded\n",
      "shard_47654 loaded\n",
      "shard_28468 loaded\n",
      "shard_39149 loaded\n",
      "shard_15545 loaded\n",
      "shard_2482 loaded\n",
      "shard_44828 loaded\n",
      "shard_33195 loaded\n",
      "shard_32456 loaded\n",
      "shard_4260 loaded\n",
      "shard_36770 loaded\n",
      "shard_16541 loaded\n",
      "shard_25540 loaded\n",
      "shard_44615 loaded\n",
      "shard_27291 loaded\n",
      "shard_43620 loaded\n",
      "shard_25315 loaded\n",
      "shard_26577 loaded\n",
      "shard_43013 loaded\n",
      "shard_45076 loaded\n",
      "shard_16243 loaded\n",
      "shard_14949 loaded\n",
      "shard_44439 loaded\n",
      "shard_14154 loaded\n",
      "shard_12054 loaded\n",
      "shard_44813 loaded\n",
      "shard_13852 loaded\n",
      "shard_42493 loaded\n",
      "shard_705 loaded\n",
      "shard_28480 loaded\n",
      "shard_10959 loaded\n",
      "shard_30238 loaded\n",
      "shard_22723 loaded\n",
      "shard_24141 loaded\n",
      "shard_30468 loaded\n",
      "shard_24201 loaded\n",
      "shard_22827 loaded\n",
      "shard_20602 loaded\n",
      "shard_49407 loaded\n",
      "shard_4450 loaded\n",
      "shard_784 loaded\n",
      "shard_1977 loaded\n",
      "shard_19987 loaded\n",
      "shard_16150 loaded\n",
      "shard_39890 loaded\n",
      "shard_6454 loaded\n",
      "shard_46663 loaded\n",
      "shard_37779 loaded\n",
      "shard_29913 loaded\n",
      "shard_29970 loaded\n",
      "shard_11870 loaded\n",
      "shard_7848 loaded\n",
      "shard_28138 loaded\n",
      "shard_49759 loaded\n",
      "shard_23559 loaded\n",
      "shard_23651 loaded\n",
      "shard_18805 loaded\n",
      "shard_4006 loaded\n",
      "shard_8381 loaded\n",
      "shard_25203 loaded\n",
      "shard_18278 loaded\n",
      "shard_5242 loaded\n",
      "shard_44244 loaded\n",
      "shard_44121 loaded\n",
      "shard_13817 loaded\n",
      "shard_46927 loaded\n",
      "shard_2203 loaded\n",
      "shard_16117 loaded\n",
      "shard_42490 loaded\n",
      "shard_14880 loaded\n",
      "shard_48761 loaded\n",
      "shard_133 loaded\n",
      "shard_26768 loaded\n",
      "shard_47069 loaded\n",
      "shard_34724 loaded\n",
      "shard_5567 loaded\n",
      "shard_19348 loaded\n",
      "shard_49171 loaded\n",
      "shard_29532 loaded\n",
      "shard_34142 loaded\n",
      "shard_18283 loaded\n",
      "shard_49473 loaded\n",
      "shard_17309 loaded\n",
      "shard_20718 loaded\n",
      "shard_15870 loaded\n",
      "shard_26106 loaded\n",
      "shard_1197 loaded\n",
      "shard_40489 loaded\n",
      "shard_33088 loaded\n",
      "shard_27258 loaded\n",
      "shard_30506 loaded\n",
      "shard_28352 loaded\n",
      "shard_21413 loaded\n",
      "shard_20220 loaded\n",
      "shard_31260 loaded\n",
      "shard_9255 loaded\n",
      "shard_33307 loaded\n",
      "shard_24023 loaded\n",
      "shard_923 loaded\n",
      "shard_36206 loaded\n",
      "shard_43603 loaded\n",
      "shard_15997 loaded\n",
      "shard_13355 loaded\n",
      "shard_21603 loaded\n",
      "shard_9364 loaded\n",
      "shard_23371 loaded\n",
      "shard_22120 loaded\n",
      "shard_36146 loaded\n",
      "shard_35672 loaded\n",
      "shard_29267 loaded\n",
      "shard_22437 loaded\n",
      "shard_10648 loaded\n",
      "shard_34976 loaded\n",
      "shard_12534 loaded\n",
      "shard_11384 loaded\n",
      "shard_49239 loaded\n",
      "shard_46396 loaded\n",
      "shard_43150 loaded\n",
      "shard_39053 loaded\n",
      "shard_8456 loaded\n",
      "shard_15810 loaded\n",
      "shard_40771 loaded\n",
      "shard_36280 loaded\n",
      "shard_8019 loaded\n",
      "shard_41318 loaded\n",
      "shard_11311 loaded\n",
      "shard_46106 loaded\n",
      "shard_40670 loaded\n",
      "shard_35997 loaded\n",
      "shard_32809 loaded\n",
      "shard_2829 loaded\n",
      "shard_23881 loaded\n",
      "shard_12578 loaded\n",
      "shard_21073 loaded\n",
      "shard_8507 loaded\n",
      "shard_12873 loaded\n",
      "shard_11168 loaded\n",
      "shard_10641 loaded\n",
      "shard_8183 loaded\n",
      "shard_22042 loaded\n",
      "shard_23813 loaded\n",
      "shard_8357 loaded\n",
      "shard_13005 loaded\n",
      "shard_6023 loaded\n",
      "shard_140 loaded\n",
      "shard_33469 loaded\n",
      "shard_44671 loaded\n",
      "shard_36450 loaded\n",
      "shard_28736 loaded\n",
      "shard_34575 loaded\n",
      "shard_46848 loaded\n",
      "shard_10027 loaded\n",
      "shard_37400 loaded\n",
      "shard_23694 loaded\n",
      "shard_1698 loaded\n",
      "shard_45314 loaded\n",
      "shard_35651 loaded\n",
      "shard_22207 loaded\n",
      "shard_44888 loaded\n",
      "shard_28095 loaded\n",
      "shard_16576 loaded\n",
      "shard_43301 loaded\n",
      "shard_19945 loaded\n",
      "shard_32602 loaded\n",
      "shard_24322 loaded\n",
      "shard_41848 loaded\n",
      "shard_9899 loaded\n",
      "shard_3949 loaded\n",
      "shard_614 loaded\n",
      "shard_12172 loaded\n",
      "shard_17449 loaded\n",
      "shard_47358 loaded\n",
      "shard_20594 loaded\n",
      "shard_45334 loaded\n",
      "shard_14554 loaded\n",
      "shard_38019 loaded\n",
      "shard_46435 loaded\n",
      "shard_15242 loaded\n",
      "shard_5316 loaded\n",
      "shard_35819 loaded\n",
      "shard_33633 loaded\n",
      "shard_6632 loaded\n",
      "shard_47815 loaded\n",
      "shard_32309 loaded\n",
      "shard_21908 loaded\n",
      "shard_40397 loaded\n",
      "shard_41987 loaded\n",
      "shard_9469 loaded\n",
      "shard_21005 loaded\n",
      "shard_42786 loaded\n",
      "shard_24823 loaded\n",
      "shard_37341 loaded\n",
      "shard_20446 loaded\n",
      "shard_21892 loaded\n",
      "shard_24841 loaded\n",
      "shard_13134 loaded\n",
      "shard_46486 loaded\n",
      "shard_29321 loaded\n",
      "shard_10430 loaded\n",
      "shard_5732 loaded\n",
      "shard_16060 loaded\n",
      "shard_23771 loaded\n",
      "shard_9635 loaded\n",
      "shard_6551 loaded\n",
      "shard_19981 loaded\n",
      "shard_21820 loaded\n",
      "shard_31962 loaded\n",
      "shard_17732 loaded\n",
      "shard_5927 loaded\n",
      "shard_14227 loaded\n",
      "shard_4789 loaded\n",
      "shard_36716 loaded\n",
      "shard_44966 loaded\n",
      "shard_24202 loaded\n",
      "shard_17895 loaded\n",
      "shard_18713 loaded\n",
      "shard_45263 loaded\n",
      "shard_26201 loaded\n",
      "shard_44964 loaded\n",
      "shard_17545 loaded\n",
      "shard_15000 loaded\n",
      "shard_8275 loaded\n",
      "shard_8436 loaded\n",
      "shard_10067 loaded\n",
      "shard_566 loaded\n",
      "shard_46437 loaded\n",
      "shard_44648 loaded\n",
      "shard_45397 loaded\n",
      "shard_40998 loaded\n",
      "shard_44333 loaded\n",
      "shard_4145 loaded\n",
      "shard_30843 loaded\n",
      "shard_30831 loaded\n",
      "shard_7562 loaded\n",
      "shard_41902 loaded\n",
      "shard_7330 loaded\n",
      "shard_37837 loaded\n",
      "shard_42745 loaded\n",
      "shard_29967 loaded\n",
      "shard_6906 loaded\n",
      "shard_24100 loaded\n",
      "shard_27713 loaded\n",
      "shard_35870 loaded\n",
      "shard_12095 loaded\n",
      "shard_47375 loaded\n",
      "shard_34213 loaded\n",
      "shard_13038 loaded\n",
      "shard_38436 loaded\n",
      "shard_33301 loaded\n",
      "shard_24504 loaded\n",
      "shard_43011 loaded\n",
      "shard_15923 loaded\n",
      "shard_15538 loaded\n",
      "shard_9597 loaded\n",
      "shard_43079 loaded\n",
      "shard_22767 loaded\n",
      "shard_41163 loaded\n",
      "shard_20672 loaded\n",
      "shard_28318 loaded\n",
      "shard_35434 loaded\n",
      "shard_26819 loaded\n",
      "shard_134 loaded\n",
      "shard_21836 loaded\n",
      "shard_39470 loaded\n",
      "shard_2490 loaded\n",
      "shard_29109 loaded\n",
      "shard_42583 loaded\n",
      "shard_25817 loaded\n",
      "shard_46095 loaded\n",
      "shard_29826 loaded\n",
      "shard_20458 loaded\n",
      "shard_763 loaded\n",
      "shard_30801 loaded\n",
      "shard_38984 loaded\n",
      "shard_31101 loaded\n",
      "shard_15713 loaded\n",
      "shard_10125 loaded\n",
      "shard_1714 loaded\n",
      "shard_23848 loaded\n",
      "shard_31284 loaded\n",
      "shard_16002 loaded\n",
      "shard_46697 loaded\n",
      "shard_6887 loaded\n",
      "shard_42326 loaded\n",
      "shard_30663 loaded\n",
      "shard_12865 loaded\n",
      "shard_48334 loaded\n",
      "shard_37460 loaded\n",
      "shard_16801 loaded\n",
      "shard_3030 loaded\n",
      "shard_38790 loaded\n",
      "shard_43589 loaded\n",
      "shard_8305 loaded\n",
      "shard_8143 loaded\n",
      "shard_44775 loaded\n",
      "shard_9095 loaded\n",
      "shard_4408 loaded\n",
      "shard_18845 loaded\n",
      "shard_14188 loaded\n",
      "shard_26807 loaded\n",
      "shard_11215 loaded\n",
      "shard_11570 loaded\n",
      "shard_44405 loaded\n",
      "shard_8228 loaded\n",
      "shard_35566 loaded\n",
      "shard_23821 loaded\n",
      "shard_43780 loaded\n",
      "shard_2208 loaded\n",
      "shard_1845 loaded\n",
      "shard_23468 loaded\n",
      "shard_7989 loaded\n",
      "shard_24058 loaded\n",
      "shard_9680 loaded\n",
      "shard_28139 loaded\n",
      "shard_23528 loaded\n",
      "shard_4821 loaded\n",
      "shard_30811 loaded\n",
      "shard_40212 loaded\n",
      "shard_24387 loaded\n",
      "shard_40171 loaded\n",
      "shard_28843 loaded\n",
      "shard_26655 loaded\n",
      "shard_1277 loaded\n",
      "shard_35606 loaded\n",
      "shard_41037 loaded\n",
      "shard_15136 loaded\n",
      "shard_28941 loaded\n",
      "shard_31794 loaded\n",
      "shard_12695 loaded\n",
      "shard_35802 loaded\n",
      "shard_3171 loaded\n",
      "shard_21234 loaded\n",
      "shard_14009 loaded\n",
      "shard_45272 loaded\n",
      "shard_25082 loaded\n",
      "shard_41560 loaded\n",
      "shard_40441 loaded\n",
      "shard_22001 loaded\n",
      "shard_46558 loaded\n",
      "shard_14252 loaded\n",
      "shard_42678 loaded\n",
      "shard_4351 loaded\n",
      "shard_43582 loaded\n",
      "shard_16272 loaded\n",
      "shard_6089 loaded\n",
      "shard_40667 loaded\n",
      "shard_43493 loaded\n",
      "shard_47207 loaded\n",
      "shard_48022 loaded\n",
      "shard_13049 loaded\n",
      "shard_8607 loaded\n",
      "shard_6112 loaded\n",
      "shard_36983 loaded\n",
      "shard_9657 loaded\n",
      "shard_3053 loaded\n",
      "shard_25192 loaded\n",
      "shard_31077 loaded\n",
      "shard_7305 loaded\n",
      "shard_16031 loaded\n",
      "shard_23645 loaded\n",
      "shard_4182 loaded\n",
      "shard_38081 loaded\n",
      "shard_30984 loaded\n",
      "shard_8472 loaded\n",
      "shard_32880 loaded\n",
      "shard_41431 loaded\n",
      "shard_38220 loaded\n",
      "shard_4529 loaded\n",
      "shard_37396 loaded\n",
      "shard_3001 loaded\n",
      "shard_10793 loaded\n",
      "shard_46599 loaded\n",
      "shard_29641 loaded\n",
      "shard_4525 loaded\n",
      "shard_34357 loaded\n",
      "shard_666 loaded\n",
      "shard_49685 loaded\n",
      "shard_7476 loaded\n",
      "shard_6357 loaded\n",
      "shard_22665 loaded\n",
      "shard_37701 loaded\n",
      "shard_1521 loaded\n",
      "shard_1443 loaded\n",
      "shard_26854 loaded\n",
      "shard_3601 loaded\n",
      "shard_11031 loaded\n",
      "shard_2798 loaded\n",
      "shard_31963 loaded\n",
      "shard_4023 loaded\n",
      "shard_32328 loaded\n",
      "shard_4201 loaded\n",
      "shard_12284 loaded\n",
      "shard_27601 loaded\n",
      "shard_37362 loaded\n",
      "shard_17013 loaded\n",
      "shard_28854 loaded\n",
      "shard_2725 loaded\n",
      "shard_39193 loaded\n",
      "shard_20081 loaded\n",
      "shard_29201 loaded\n",
      "shard_47963 loaded\n",
      "shard_23675 loaded\n",
      "shard_32705 loaded\n",
      "shard_5208 loaded\n",
      "shard_48365 loaded\n",
      "shard_1141 loaded\n",
      "shard_41340 loaded\n",
      "shard_3799 loaded\n",
      "shard_44517 loaded\n",
      "shard_2637 loaded\n",
      "shard_6586 loaded\n",
      "shard_46410 loaded\n",
      "shard_28804 loaded\n",
      "shard_13507 loaded\n",
      "shard_10438 loaded\n",
      "shard_2516 loaded\n",
      "shard_2533 loaded\n",
      "shard_31273 loaded\n",
      "shard_2387 loaded\n",
      "shard_29139 loaded\n",
      "shard_29832 loaded\n",
      "shard_7837 loaded\n",
      "shard_31081 loaded\n",
      "shard_25440 loaded\n",
      "shard_6030 loaded\n",
      "shard_899 loaded\n",
      "shard_13541 loaded\n",
      "shard_19184 loaded\n",
      "shard_16024 loaded\n",
      "shard_42435 loaded\n",
      "shard_41656 loaded\n",
      "shard_7680 loaded\n",
      "shard_8862 loaded\n",
      "shard_25966 loaded\n",
      "shard_38570 loaded\n",
      "shard_10405 loaded\n",
      "shard_17112 loaded\n",
      "shard_20996 loaded\n",
      "shard_20319 loaded\n",
      "shard_18221 loaded\n",
      "shard_19783 loaded\n",
      "shard_18954 loaded\n",
      "shard_48776 loaded\n",
      "shard_37091 loaded\n",
      "shard_7986 loaded\n",
      "shard_10129 loaded\n",
      "shard_7383 loaded\n",
      "shard_19847 loaded\n",
      "shard_2397 loaded\n",
      "shard_35425 loaded\n",
      "shard_26637 loaded\n",
      "shard_615 loaded\n",
      "shard_27438 loaded\n",
      "shard_27063 loaded\n",
      "shard_19894 loaded\n",
      "shard_1892 loaded\n",
      "shard_2340 loaded\n",
      "shard_35055 loaded\n",
      "shard_47571 loaded\n",
      "shard_20855 loaded\n",
      "shard_44784 loaded\n",
      "shard_13966 loaded\n",
      "shard_27942 loaded\n",
      "shard_44127 loaded\n",
      "shard_39588 loaded\n",
      "shard_3556 loaded\n",
      "shard_24417 loaded\n",
      "shard_24556 loaded\n",
      "shard_9053 loaded\n",
      "shard_28634 loaded\n",
      "shard_42021 loaded\n",
      "shard_32391 loaded\n",
      "shard_13362 loaded\n",
      "shard_4914 loaded\n",
      "shard_28823 loaded\n",
      "shard_13959 loaded\n",
      "shard_32474 loaded\n",
      "shard_1225 loaded\n",
      "shard_21228 loaded\n",
      "shard_26867 loaded\n",
      "shard_47966 loaded\n",
      "shard_23147 loaded\n",
      "shard_46738 loaded\n",
      "shard_45391 loaded\n",
      "shard_34219 loaded\n",
      "shard_5509 loaded\n",
      "shard_46425 loaded\n",
      "shard_9250 loaded\n",
      "shard_49026 loaded\n",
      "shard_33372 loaded\n",
      "shard_40059 loaded\n",
      "shard_48033 loaded\n",
      "shard_15824 loaded\n",
      "shard_45367 loaded\n",
      "shard_17977 loaded\n",
      "shard_46343 loaded\n",
      "shard_3346 loaded\n",
      "shard_27859 loaded\n",
      "shard_45646 loaded\n",
      "shard_35308 loaded\n",
      "shard_29392 loaded\n",
      "shard_42129 loaded\n",
      "shard_12714 loaded\n",
      "shard_40297 loaded\n",
      "shard_7394 loaded\n",
      "shard_24210 loaded\n",
      "shard_30207 loaded\n",
      "shard_24608 loaded\n",
      "shard_38200 loaded\n",
      "shard_46963 loaded\n",
      "shard_22219 loaded\n",
      "shard_26673 loaded\n",
      "shard_31953 loaded\n",
      "shard_17817 loaded\n",
      "shard_379 loaded\n",
      "shard_45981 loaded\n",
      "shard_21088 loaded\n",
      "shard_41257 loaded\n",
      "shard_14591 loaded\n",
      "shard_24241 loaded\n",
      "shard_9867 loaded\n",
      "shard_12630 loaded\n",
      "shard_10181 loaded\n",
      "shard_34865 loaded\n",
      "shard_46085 loaded\n",
      "shard_24482 loaded\n",
      "shard_39323 loaded\n",
      "shard_27880 loaded\n",
      "shard_20194 loaded\n",
      "shard_23954 loaded\n",
      "shard_29853 loaded\n",
      "shard_39809 loaded\n",
      "shard_40157 loaded\n",
      "shard_42628 loaded\n",
      "shard_17437 loaded\n",
      "shard_14974 loaded\n",
      "shard_16149 loaded\n",
      "shard_20783 loaded\n",
      "shard_48759 loaded\n",
      "shard_21306 loaded\n",
      "shard_26580 loaded\n",
      "shard_44729 loaded\n",
      "shard_10479 loaded\n",
      "shard_19320 loaded\n",
      "shard_36950 loaded\n",
      "shard_19704 loaded\n",
      "shard_30167 loaded\n",
      "shard_5962 loaded\n",
      "shard_12270 loaded\n",
      "shard_47148 loaded\n",
      "shard_11163 loaded\n",
      "shard_10352 loaded\n",
      "shard_2512 loaded\n",
      "shard_19021 loaded\n",
      "shard_44631 loaded\n",
      "shard_30603 loaded\n",
      "shard_45286 loaded\n",
      "shard_16107 loaded\n",
      "shard_27998 loaded\n",
      "shard_18537 loaded\n",
      "shard_25700 loaded\n",
      "shard_13617 loaded\n",
      "shard_46214 loaded\n",
      "shard_34444 loaded\n",
      "shard_37867 loaded\n",
      "shard_40330 loaded\n",
      "shard_10050 loaded\n",
      "shard_46638 loaded\n",
      "shard_42818 loaded\n",
      "shard_28121 loaded\n",
      "shard_14208 loaded\n",
      "shard_40154 loaded\n",
      "shard_27954 loaded\n",
      "shard_18507 loaded\n",
      "shard_39529 loaded\n",
      "shard_15031 loaded\n",
      "shard_5200 loaded\n",
      "shard_40391 loaded\n",
      "shard_36528 loaded\n",
      "shard_14082 loaded\n",
      "shard_5014 loaded\n",
      "shard_2379 loaded\n",
      "shard_4666 loaded\n",
      "shard_20467 loaded\n",
      "shard_41195 loaded\n",
      "shard_22043 loaded\n",
      "shard_36315 loaded\n",
      "shard_32603 loaded\n",
      "shard_34459 loaded\n",
      "shard_39836 loaded\n",
      "shard_9016 loaded\n",
      "shard_32355 loaded\n",
      "shard_49868 loaded\n",
      "shard_4894 loaded\n",
      "shard_11118 loaded\n",
      "shard_3532 loaded\n",
      "shard_2827 loaded\n",
      "shard_4144 loaded\n",
      "shard_2841 loaded\n",
      "shard_14017 loaded\n",
      "shard_41172 loaded\n",
      "shard_15373 loaded\n",
      "shard_15670 loaded\n",
      "shard_25167 loaded\n",
      "shard_7226 loaded\n",
      "shard_28079 loaded\n",
      "shard_30399 loaded\n",
      "shard_19154 loaded\n",
      "shard_14436 loaded\n",
      "shard_23419 loaded\n",
      "shard_30346 loaded\n",
      "shard_32215 loaded\n",
      "shard_32438 loaded\n",
      "shard_4342 loaded\n",
      "shard_26567 loaded\n",
      "shard_6653 loaded\n",
      "shard_728 loaded\n",
      "shard_25827 loaded\n",
      "shard_2589 loaded\n",
      "shard_34734 loaded\n",
      "shard_17692 loaded\n",
      "shard_23334 loaded\n",
      "shard_40197 loaded\n",
      "shard_41098 loaded\n",
      "shard_41697 loaded\n",
      "shard_23767 loaded\n",
      "shard_12651 loaded\n",
      "shard_8744 loaded\n",
      "shard_23851 loaded\n",
      "shard_49881 loaded\n",
      "shard_41819 loaded\n",
      "shard_25027 loaded\n",
      "shard_8821 loaded\n",
      "shard_33508 loaded\n",
      "shard_19238 loaded\n",
      "shard_643 loaded\n",
      "shard_41986 loaded\n",
      "shard_5245 loaded\n",
      "shard_43144 loaded\n",
      "shard_33584 loaded\n",
      "shard_10459 loaded\n",
      "shard_45018 loaded\n",
      "shard_42647 loaded\n",
      "shard_31475 loaded\n",
      "shard_48954 loaded\n",
      "shard_6760 loaded\n",
      "shard_14334 loaded\n",
      "shard_46116 loaded\n",
      "shard_5688 loaded\n",
      "shard_35800 loaded\n",
      "shard_10482 loaded\n",
      "shard_37084 loaded\n",
      "shard_17734 loaded\n",
      "shard_34422 loaded\n",
      "shard_46401 loaded\n",
      "shard_9349 loaded\n",
      "shard_7390 loaded\n",
      "shard_595 loaded\n",
      "shard_39151 loaded\n",
      "shard_45497 loaded\n",
      "shard_37571 loaded\n",
      "shard_49060 loaded\n",
      "shard_9943 loaded\n",
      "shard_29510 loaded\n",
      "shard_5439 loaded\n",
      "shard_34849 loaded\n",
      "shard_45660 loaded\n",
      "shard_20154 loaded\n",
      "shard_17680 loaded\n",
      "shard_8689 loaded\n",
      "shard_85 loaded\n",
      "shard_1030 loaded\n",
      "shard_29591 loaded\n",
      "shard_36489 loaded\n",
      "shard_31349 loaded\n",
      "shard_40617 loaded\n",
      "shard_34847 loaded\n",
      "shard_24732 loaded\n",
      "shard_29159 loaded\n",
      "shard_31083 loaded\n",
      "shard_47525 loaded\n",
      "shard_33734 loaded\n",
      "shard_26483 loaded\n",
      "shard_7921 loaded\n",
      "shard_43191 loaded\n",
      "shard_26834 loaded\n",
      "shard_26648 loaded\n",
      "shard_40293 loaded\n",
      "shard_38582 loaded\n",
      "shard_11352 loaded\n",
      "shard_36851 loaded\n",
      "shard_7260 loaded\n",
      "shard_13733 loaded\n",
      "shard_16553 loaded\n",
      "shard_18197 loaded\n",
      "shard_14233 loaded\n",
      "shard_43672 loaded\n",
      "shard_46525 loaded\n",
      "shard_2644 loaded\n",
      "shard_21109 loaded\n",
      "shard_13 loaded\n",
      "shard_3 loaded\n",
      "shard_26662 loaded\n",
      "shard_14793 loaded\n",
      "shard_44907 loaded\n",
      "shard_31192 loaded\n",
      "shard_34061 loaded\n",
      "shard_18872 loaded\n",
      "shard_2391 loaded\n",
      "shard_2761 loaded\n",
      "shard_27194 loaded\n",
      "shard_8605 loaded\n",
      "shard_31277 loaded\n",
      "shard_49942 loaded\n",
      "shard_21247 loaded\n",
      "shard_44708 loaded\n",
      "shard_33794 loaded\n",
      "shard_26299 loaded\n",
      "shard_41125 loaded\n",
      "shard_33963 loaded\n",
      "shard_31758 loaded\n",
      "shard_36946 loaded\n",
      "shard_13484 loaded\n",
      "shard_49434 loaded\n",
      "shard_42684 loaded\n",
      "shard_44944 loaded\n",
      "shard_29259 loaded\n",
      "shard_26321 loaded\n",
      "shard_7349 loaded\n",
      "shard_38840 loaded\n",
      "shard_19070 loaded\n",
      "shard_5122 loaded\n",
      "shard_29102 loaded\n",
      "shard_7799 loaded\n",
      "shard_26746 loaded\n",
      "shard_9581 loaded\n",
      "shard_48803 loaded\n",
      "shard_1552 loaded\n",
      "shard_18219 loaded\n",
      "shard_30955 loaded\n",
      "shard_12549 loaded\n",
      "shard_17137 loaded\n",
      "shard_42082 loaded\n",
      "shard_19367 loaded\n",
      "shard_41266 loaded\n",
      "shard_37451 loaded\n",
      "shard_36014 loaded\n",
      "shard_8614 loaded\n",
      "shard_11562 loaded\n",
      "shard_48578 loaded\n",
      "shard_29325 loaded\n",
      "shard_8660 loaded\n",
      "shard_21076 loaded\n",
      "shard_23691 loaded\n",
      "shard_22335 loaded\n",
      "shard_25886 loaded\n",
      "shard_46121 loaded\n",
      "shard_36773 loaded\n",
      "shard_48368 loaded\n",
      "shard_40060 loaded\n",
      "shard_14767 loaded\n",
      "shard_43840 loaded\n",
      "shard_38992 loaded\n",
      "shard_25797 loaded\n",
      "shard_30516 loaded\n",
      "shard_46878 loaded\n",
      "shard_37323 loaded\n",
      "shard_43006 loaded\n",
      "shard_23544 loaded\n",
      "shard_4941 loaded\n",
      "shard_34585 loaded\n",
      "shard_45563 loaded\n",
      "shard_22091 loaded\n",
      "shard_19109 loaded\n",
      "shard_25347 loaded\n",
      "shard_34304 loaded\n",
      "shard_21889 loaded\n",
      "shard_31840 loaded\n",
      "shard_18155 loaded\n",
      "shard_43841 loaded\n",
      "shard_14316 loaded\n",
      "shard_24908 loaded\n",
      "shard_15662 loaded\n",
      "shard_42413 loaded\n",
      "shard_33938 loaded\n",
      "shard_38067 loaded\n",
      "shard_25048 loaded\n",
      "shard_26126 loaded\n",
      "shard_47619 loaded\n",
      "shard_40318 loaded\n",
      "shard_28616 loaded\n",
      "shard_24679 loaded\n",
      "shard_26225 loaded\n",
      "shard_24524 loaded\n",
      "shard_12913 loaded\n",
      "shard_30881 loaded\n",
      "shard_13520 loaded\n",
      "shard_24401 loaded\n",
      "shard_16141 loaded\n",
      "shard_37926 loaded\n",
      "shard_49141 loaded\n",
      "shard_25049 loaded\n",
      "shard_11529 loaded\n",
      "shard_37768 loaded\n",
      "shard_37706 loaded\n",
      "shard_29687 loaded\n",
      "shard_28419 loaded\n",
      "shard_27841 loaded\n",
      "shard_44591 loaded\n",
      "shard_14008 loaded\n",
      "shard_39132 loaded\n",
      "shard_3702 loaded\n",
      "shard_39072 loaded\n",
      "shard_27313 loaded\n",
      "shard_8800 loaded\n",
      "shard_10699 loaded\n",
      "shard_33616 loaded\n",
      "shard_28032 loaded\n",
      "shard_32021 loaded\n",
      "shard_10725 loaded\n",
      "shard_18258 loaded\n",
      "shard_25495 loaded\n",
      "shard_29750 loaded\n",
      "shard_12440 loaded\n",
      "shard_33233 loaded\n",
      "shard_48452 loaded\n",
      "shard_16008 loaded\n",
      "shard_38712 loaded\n",
      "shard_40868 loaded\n",
      "shard_31128 loaded\n",
      "shard_35449 loaded\n",
      "shard_18124 loaded\n",
      "shard_23175 loaded\n",
      "shard_49677 loaded\n",
      "shard_25644 loaded\n",
      "shard_30775 loaded\n",
      "shard_8883 loaded\n",
      "shard_20765 loaded\n",
      "shard_11173 loaded\n",
      "shard_39377 loaded\n",
      "shard_22061 loaded\n",
      "shard_45629 loaded\n",
      "shard_33517 loaded\n",
      "shard_15948 loaded\n",
      "shard_1215 loaded\n",
      "shard_271 loaded\n",
      "shard_14512 loaded\n",
      "shard_34397 loaded\n",
      "shard_29471 loaded\n",
      "shard_24031 loaded\n",
      "shard_4387 loaded\n",
      "shard_49280 loaded\n",
      "shard_19994 loaded\n",
      "shard_5089 loaded\n",
      "shard_12822 loaded\n",
      "shard_29594 loaded\n",
      "shard_4965 loaded\n",
      "shard_40997 loaded\n",
      "shard_26488 loaded\n",
      "shard_5254 loaded\n",
      "shard_861 loaded\n",
      "shard_36546 loaded\n",
      "shard_12371 loaded\n",
      "shard_11476 loaded\n",
      "shard_6815 loaded\n",
      "shard_15780 loaded\n",
      "shard_12846 loaded\n",
      "shard_22843 loaded\n",
      "shard_27730 loaded\n",
      "shard_3455 loaded\n",
      "shard_4620 loaded\n",
      "shard_16888 loaded\n",
      "shard_26130 loaded\n",
      "shard_39495 loaded\n",
      "shard_5263 loaded\n",
      "shard_15039 loaded\n",
      "shard_24219 loaded\n",
      "shard_41500 loaded\n",
      "shard_37114 loaded\n",
      "shard_2250 loaded\n",
      "shard_31911 loaded\n",
      "shard_18441 loaded\n",
      "shard_14516 loaded\n",
      "shard_7178 loaded\n",
      "shard_26055 loaded\n",
      "shard_46846 loaded\n",
      "shard_15745 loaded\n",
      "shard_1424 loaded\n",
      "shard_46980 loaded\n",
      "shard_18422 loaded\n",
      "shard_7608 loaded\n",
      "shard_4663 loaded\n",
      "shard_18164 loaded\n",
      "shard_16621 loaded\n",
      "shard_5577 loaded\n",
      "shard_33639 loaded\n",
      "shard_30662 loaded\n",
      "shard_2195 loaded\n",
      "shard_47030 loaded\n",
      "shard_45946 loaded\n",
      "shard_33864 loaded\n",
      "shard_22304 loaded\n",
      "shard_40178 loaded\n",
      "shard_32434 loaded\n",
      "shard_25397 loaded\n",
      "shard_35746 loaded\n",
      "shard_14478 loaded\n",
      "shard_14413 loaded\n",
      "shard_27192 loaded\n",
      "shard_44958 loaded\n",
      "shard_3348 loaded\n",
      "shard_37371 loaded\n",
      "shard_37449 loaded\n",
      "shard_49043 loaded\n",
      "shard_39634 loaded\n",
      "shard_18350 loaded\n",
      "shard_13974 loaded\n",
      "shard_19436 loaded\n",
      "shard_43123 loaded\n",
      "shard_42503 loaded\n",
      "shard_14927 loaded\n",
      "shard_31244 loaded\n",
      "shard_22733 loaded\n",
      "shard_24916 loaded\n",
      "shard_20428 loaded\n",
      "shard_29692 loaded\n",
      "shard_3864 loaded\n",
      "shard_20275 loaded\n",
      "shard_44654 loaded\n",
      "shard_8199 loaded\n",
      "shard_30562 loaded\n",
      "shard_31035 loaded\n",
      "shard_12755 loaded\n",
      "shard_32881 loaded\n",
      "shard_15230 loaded\n",
      "shard_26643 loaded\n",
      "shard_43781 loaded\n",
      "shard_26741 loaded\n",
      "shard_19131 loaded\n",
      "shard_5303 loaded\n",
      "shard_37145 loaded\n",
      "shard_4774 loaded\n",
      "shard_15467 loaded\n",
      "shard_47904 loaded\n",
      "shard_37619 loaded\n",
      "shard_3858 loaded\n",
      "shard_29022 loaded\n",
      "shard_14203 loaded\n",
      "shard_24780 loaded\n",
      "shard_25678 loaded\n",
      "shard_24995 loaded\n",
      "shard_4878 loaded\n",
      "shard_42122 loaded\n",
      "shard_23568 loaded\n",
      "shard_6246 loaded\n",
      "shard_38564 loaded\n",
      "shard_4420 loaded\n",
      "shard_44980 loaded\n",
      "shard_25816 loaded\n",
      "shard_44236 loaded\n",
      "shard_1055 loaded\n",
      "shard_78 loaded\n",
      "shard_16973 loaded\n",
      "shard_20392 loaded\n",
      "shard_42995 loaded\n",
      "shard_29045 loaded\n",
      "shard_49753 loaded\n",
      "shard_12531 loaded\n",
      "shard_20248 loaded\n",
      "shard_41654 loaded\n",
      "shard_31864 loaded\n",
      "shard_4817 loaded\n",
      "shard_41344 loaded\n",
      "shard_41144 loaded\n",
      "shard_25246 loaded\n",
      "shard_25922 loaded\n",
      "shard_46184 loaded\n",
      "shard_26032 loaded\n",
      "shard_37177 loaded\n",
      "shard_19534 loaded\n",
      "shard_32277 loaded\n",
      "shard_37791 loaded\n",
      "shard_3841 loaded\n",
      "shard_37158 loaded\n",
      "shard_40285 loaded\n",
      "shard_17534 loaded\n",
      "shard_45539 loaded\n",
      "shard_38643 loaded\n",
      "shard_17646 loaded\n",
      "shard_48460 loaded\n",
      "shard_23152 loaded\n",
      "shard_44669 loaded\n",
      "shard_23685 loaded\n",
      "shard_26929 loaded\n",
      "shard_16678 loaded\n",
      "shard_23312 loaded\n",
      "shard_12882 loaded\n",
      "shard_17965 loaded\n",
      "shard_45777 loaded\n",
      "shard_32640 loaded\n",
      "shard_49190 loaded\n",
      "shard_40193 loaded\n",
      "shard_20730 loaded\n",
      "shard_23352 loaded\n",
      "shard_21264 loaded\n",
      "shard_24295 loaded\n",
      "shard_15040 loaded\n",
      "shard_31789 loaded\n",
      "shard_47428 loaded\n",
      "shard_3282 loaded\n",
      "shard_19583 loaded\n",
      "shard_40584 loaded\n",
      "shard_2997 loaded\n",
      "shard_9130 loaded\n",
      "shard_23493 loaded\n",
      "shard_11821 loaded\n",
      "shard_19179 loaded\n",
      "shard_48325 loaded\n",
      "shard_32988 loaded\n",
      "shard_17251 loaded\n",
      "shard_15019 loaded\n",
      "shard_17973 loaded\n",
      "shard_25539 loaded\n",
      "shard_29803 loaded\n",
      "shard_37890 loaded\n",
      "shard_31444 loaded\n",
      "shard_12907 loaded\n",
      "shard_38813 loaded\n",
      "shard_48114 loaded\n",
      "shard_30545 loaded\n",
      "shard_18665 loaded\n",
      "shard_20385 loaded\n",
      "shard_19256 loaded\n",
      "shard_42651 loaded\n",
      "shard_2612 loaded\n",
      "shard_13829 loaded\n",
      "shard_38110 loaded\n",
      "shard_36503 loaded\n",
      "shard_29151 loaded\n",
      "shard_48572 loaded\n",
      "shard_10582 loaded\n",
      "shard_709 loaded\n",
      "shard_20655 loaded\n",
      "shard_36927 loaded\n",
      "shard_47573 loaded\n",
      "shard_16317 loaded\n",
      "shard_22132 loaded\n",
      "shard_896 loaded\n",
      "shard_7347 loaded\n",
      "shard_4800 loaded\n",
      "shard_31322 loaded\n",
      "shard_5240 loaded\n",
      "shard_37729 loaded\n",
      "shard_19355 loaded\n",
      "shard_42922 loaded\n",
      "shard_25600 loaded\n",
      "shard_40362 loaded\n",
      "shard_6061 loaded\n",
      "shard_18870 loaded\n",
      "shard_36786 loaded\n",
      "shard_36121 loaded\n",
      "shard_25708 loaded\n",
      "shard_15994 loaded\n",
      "shard_27987 loaded\n",
      "shard_44709 loaded\n",
      "shard_23269 loaded\n",
      "shard_21339 loaded\n",
      "shard_25976 loaded\n",
      "shard_49674 loaded\n",
      "shard_10901 loaded\n",
      "shard_18012 loaded\n",
      "shard_16674 loaded\n",
      "shard_43826 loaded\n",
      "shard_2627 loaded\n",
      "shard_10762 loaded\n",
      "shard_49632 loaded\n",
      "shard_4907 loaded\n",
      "shard_31551 loaded\n",
      "shard_14837 loaded\n",
      "shard_41294 loaded\n",
      "shard_7223 loaded\n",
      "shard_14992 loaded\n",
      "shard_45882 loaded\n",
      "shard_24572 loaded\n",
      "shard_5283 loaded\n",
      "shard_18863 loaded\n",
      "shard_37981 loaded\n",
      "shard_17946 loaded\n",
      "shard_5671 loaded\n",
      "shard_22471 loaded\n",
      "shard_28429 loaded\n",
      "shard_47712 loaded\n",
      "shard_27181 loaded\n",
      "shard_17536 loaded\n",
      "shard_21430 loaded\n",
      "shard_2610 loaded\n",
      "shard_10513 loaded\n",
      "shard_22541 loaded\n",
      "shard_9521 loaded\n",
      "shard_11068 loaded\n",
      "shard_22357 loaded\n",
      "shard_37509 loaded\n",
      "shard_49444 loaded\n",
      "shard_47343 loaded\n",
      "shard_8008 loaded\n",
      "shard_13138 loaded\n",
      "shard_3769 loaded\n",
      "shard_17354 loaded\n",
      "shard_12232 loaded\n",
      "shard_39052 loaded\n",
      "shard_15798 loaded\n",
      "shard_14978 loaded\n",
      "shard_23038 loaded\n",
      "shard_27281 loaded\n",
      "shard_13165 loaded\n",
      "shard_6569 loaded\n",
      "shard_4902 loaded\n",
      "shard_25285 loaded\n",
      "shard_38262 loaded\n",
      "shard_38237 loaded\n",
      "shard_21619 loaded\n",
      "shard_7147 loaded\n",
      "shard_32961 loaded\n",
      "shard_19165 loaded\n",
      "shard_36129 loaded\n",
      "shard_29309 loaded\n",
      "shard_40486 loaded\n",
      "shard_36451 loaded\n",
      "shard_34234 loaded\n",
      "shard_19977 loaded\n",
      "shard_15648 loaded\n",
      "shard_10752 loaded\n",
      "shard_28851 loaded\n",
      "shard_26975 loaded\n",
      "shard_2169 loaded\n",
      "shard_25093 loaded\n",
      "shard_27643 loaded\n",
      "shard_720 loaded\n",
      "shard_47889 loaded\n",
      "shard_32060 loaded\n",
      "shard_49740 loaded\n",
      "shard_33340 loaded\n",
      "shard_48318 loaded\n",
      "shard_8965 loaded\n",
      "shard_23002 loaded\n",
      "shard_34874 loaded\n",
      "shard_39493 loaded\n",
      "shard_37713 loaded\n",
      "shard_35776 loaded\n",
      "shard_10406 loaded\n",
      "shard_5939 loaded\n",
      "shard_37515 loaded\n",
      "shard_20720 loaded\n",
      "shard_44143 loaded\n",
      "shard_43795 loaded\n",
      "shard_37750 loaded\n",
      "shard_23593 loaded\n",
      "shard_10684 loaded\n",
      "shard_17873 loaded\n",
      "shard_16683 loaded\n",
      "shard_12818 loaded\n",
      "shard_40172 loaded\n",
      "shard_15260 loaded\n",
      "shard_44649 loaded\n",
      "shard_22948 loaded\n",
      "shard_33186 loaded\n",
      "shard_35860 loaded\n",
      "shard_36530 loaded\n",
      "shard_9526 loaded\n",
      "shard_23242 loaded\n",
      "shard_18993 loaded\n",
      "shard_35662 loaded\n",
      "shard_30813 loaded\n",
      "shard_13309 loaded\n",
      "shard_38218 loaded\n",
      "shard_31859 loaded\n",
      "shard_230 loaded\n",
      "shard_39012 loaded\n",
      "shard_10832 loaded\n",
      "shard_11964 loaded\n",
      "shard_9803 loaded\n",
      "shard_40408 loaded\n",
      "shard_20028 loaded\n",
      "shard_5126 loaded\n",
      "shard_43642 loaded\n",
      "shard_47949 loaded\n",
      "shard_24887 loaded\n",
      "shard_38393 loaded\n",
      "shard_35974 loaded\n",
      "shard_22039 loaded\n",
      "shard_49181 loaded\n",
      "shard_43365 loaded\n",
      "shard_26528 loaded\n",
      "shard_5555 loaded\n",
      "shard_118 loaded\n",
      "shard_38405 loaded\n",
      "shard_33252 loaded\n",
      "shard_32683 loaded\n",
      "shard_29695 loaded\n",
      "shard_10083 loaded\n",
      "shard_49431 loaded\n",
      "shard_34382 loaded\n",
      "shard_45890 loaded\n",
      "shard_19597 loaded\n",
      "shard_46905 loaded\n",
      "shard_16083 loaded\n",
      "shard_1847 loaded\n",
      "shard_41405 loaded\n",
      "shard_33866 loaded\n",
      "shard_23331 loaded\n",
      "shard_13342 loaded\n",
      "shard_43421 loaded\n",
      "shard_2848 loaded\n",
      "shard_40309 loaded\n",
      "shard_40938 loaded\n",
      "shard_4603 loaded\n",
      "shard_11842 loaded\n",
      "shard_11541 loaded\n",
      "shard_27403 loaded\n",
      "shard_34214 loaded\n",
      "shard_7857 loaded\n",
      "shard_48403 loaded\n",
      "shard_21171 loaded\n",
      "shard_11862 loaded\n",
      "shard_22657 loaded\n",
      "shard_27074 loaded\n",
      "shard_4424 loaded\n",
      "shard_30406 loaded\n",
      "shard_3737 loaded\n",
      "shard_44804 loaded\n",
      "shard_40232 loaded\n",
      "shard_38666 loaded\n",
      "shard_31109 loaded\n",
      "shard_225 loaded\n",
      "shard_26862 loaded\n",
      "shard_23882 loaded\n",
      "shard_2940 loaded\n",
      "shard_11783 loaded\n",
      "shard_30072 loaded\n",
      "shard_9528 loaded\n",
      "shard_7357 loaded\n",
      "shard_16352 loaded\n",
      "shard_13014 loaded\n",
      "shard_7386 loaded\n",
      "shard_14586 loaded\n",
      "shard_556 loaded\n",
      "shard_18438 loaded\n",
      "shard_18649 loaded\n",
      "shard_9400 loaded\n",
      "shard_1283 loaded\n",
      "shard_41054 loaded\n",
      "shard_37576 loaded\n",
      "shard_19815 loaded\n",
      "shard_46653 loaded\n",
      "shard_4521 loaded\n",
      "shard_45962 loaded\n",
      "shard_23416 loaded\n",
      "shard_18303 loaded\n",
      "shard_28670 loaded\n",
      "shard_22569 loaded\n",
      "shard_39007 loaded\n",
      "shard_10613 loaded\n",
      "shard_29612 loaded\n",
      "shard_4992 loaded\n",
      "shard_12533 loaded\n",
      "shard_40334 loaded\n",
      "shard_33353 loaded\n",
      "shard_32869 loaded\n",
      "shard_37771 loaded\n",
      "shard_38471 loaded\n",
      "shard_22942 loaded\n",
      "shard_39113 loaded\n",
      "shard_23525 loaded\n",
      "shard_16993 loaded\n",
      "shard_24430 loaded\n",
      "shard_40790 loaded\n",
      "shard_10503 loaded\n",
      "shard_32541 loaded\n",
      "shard_14542 loaded\n",
      "shard_32714 loaded\n",
      "shard_23155 loaded\n",
      "shard_30790 loaded\n",
      "shard_17427 loaded\n",
      "shard_49174 loaded\n",
      "shard_7943 loaded\n",
      "shard_32733 loaded\n",
      "shard_6923 loaded\n",
      "shard_19642 loaded\n",
      "shard_46373 loaded\n",
      "shard_29851 loaded\n",
      "shard_4559 loaded\n",
      "shard_41121 loaded\n",
      "shard_45312 loaded\n",
      "shard_24262 loaded\n",
      "shard_29945 loaded\n",
      "shard_22956 loaded\n",
      "shard_41180 loaded\n",
      "shard_20454 loaded\n",
      "shard_40815 loaded\n",
      "shard_1594 loaded\n",
      "shard_32613 loaded\n",
      "shard_30573 loaded\n",
      "shard_2388 loaded\n",
      "shard_39870 loaded\n",
      "shard_15795 loaded\n",
      "shard_43897 loaded\n",
      "shard_21707 loaded\n",
      "shard_33968 loaded\n",
      "shard_12892 loaded\n",
      "shard_35824 loaded\n",
      "shard_13626 loaded\n",
      "shard_1872 loaded\n",
      "shard_18474 loaded\n",
      "shard_16960 loaded\n",
      "shard_11366 loaded\n",
      "shard_13591 loaded\n",
      "shard_97 loaded\n",
      "shard_6346 loaded\n",
      "shard_10811 loaded\n",
      "shard_12125 loaded\n",
      "shard_25198 loaded\n",
      "shard_7138 loaded\n",
      "shard_40242 loaded\n",
      "shard_41132 loaded\n",
      "shard_13674 loaded\n",
      "shard_29177 loaded\n",
      "shard_4599 loaded\n",
      "shard_27978 loaded\n",
      "shard_32576 loaded\n",
      "shard_28293 loaded\n",
      "shard_29969 loaded\n",
      "shard_28220 loaded\n",
      "shard_49446 loaded\n",
      "shard_21067 loaded\n",
      "shard_14902 loaded\n",
      "shard_49019 loaded\n",
      "shard_4042 loaded\n",
      "shard_49897 loaded\n",
      "shard_4476 loaded\n",
      "shard_9902 loaded\n",
      "shard_30357 loaded\n",
      "shard_40545 loaded\n",
      "shard_6737 loaded\n",
      "shard_3119 loaded\n",
      "shard_46439 loaded\n",
      "shard_23301 loaded\n",
      "shard_29502 loaded\n",
      "shard_6847 loaded\n",
      "shard_36627 loaded\n",
      "shard_32377 loaded\n",
      "shard_38589 loaded\n",
      "shard_12476 loaded\n",
      "shard_17622 loaded\n",
      "shard_7749 loaded\n",
      "shard_17079 loaded\n",
      "shard_5293 loaded\n",
      "shard_35062 loaded\n",
      "shard_6375 loaded\n",
      "shard_45130 loaded\n",
      "shard_10038 loaded\n",
      "shard_11117 loaded\n",
      "shard_38871 loaded\n",
      "shard_38417 loaded\n",
      "shard_33870 loaded\n",
      "shard_863 loaded\n",
      "shard_18193 loaded\n",
      "shard_35235 loaded\n",
      "shard_39297 loaded\n",
      "shard_9160 loaded\n",
      "shard_18528 loaded\n",
      "shard_4245 loaded\n",
      "shard_20026 loaded\n",
      "shard_29339 loaded\n",
      "shard_2200 loaded\n",
      "shard_18118 loaded\n",
      "shard_26733 loaded\n",
      "shard_18464 loaded\n",
      "shard_42550 loaded\n",
      "shard_39536 loaded\n",
      "shard_1889 loaded\n",
      "shard_26185 loaded\n",
      "shard_37593 loaded\n",
      "shard_35587 loaded\n",
      "shard_8865 loaded\n",
      "shard_45772 loaded\n",
      "shard_7344 loaded\n",
      "shard_10774 loaded\n",
      "shard_45819 loaded\n",
      "shard_3338 loaded\n",
      "shard_46197 loaded\n",
      "shard_19818 loaded\n",
      "shard_35522 loaded\n",
      "shard_5516 loaded\n",
      "shard_33166 loaded\n",
      "shard_23522 loaded\n",
      "shard_1407 loaded\n",
      "shard_17242 loaded\n",
      "shard_8612 loaded\n",
      "shard_14476 loaded\n",
      "shard_39855 loaded\n",
      "shard_8347 loaded\n",
      "shard_5639 loaded\n",
      "shard_15529 loaded\n",
      "shard_46770 loaded\n",
      "shard_33286 loaded\n",
      "shard_18156 loaded\n",
      "shard_22862 loaded\n",
      "shard_33674 loaded\n",
      "shard_17996 loaded\n",
      "shard_42747 loaded\n",
      "shard_18511 loaded\n",
      "shard_40984 loaded\n",
      "shard_12684 loaded\n",
      "shard_21423 loaded\n",
      "shard_7606 loaded\n",
      "shard_6168 loaded\n",
      "shard_26780 loaded\n",
      "shard_28065 loaded\n",
      "shard_45734 loaded\n",
      "shard_32094 loaded\n",
      "shard_49857 loaded\n",
      "shard_17679 loaded\n",
      "shard_45210 loaded\n",
      "shard_33992 loaded\n",
      "shard_43135 loaded\n",
      "shard_43521 loaded\n",
      "shard_16826 loaded\n",
      "shard_32441 loaded\n",
      "shard_33676 loaded\n",
      "shard_18172 loaded\n",
      "shard_20019 loaded\n",
      "shard_31026 loaded\n",
      "shard_1789 loaded\n",
      "shard_22291 loaded\n",
      "shard_2634 loaded\n",
      "shard_38193 loaded\n",
      "shard_46340 loaded\n",
      "shard_17900 loaded\n",
      "shard_32891 loaded\n",
      "shard_4281 loaded\n",
      "shard_42453 loaded\n",
      "shard_15288 loaded\n",
      "shard_38654 loaded\n",
      "shard_22812 loaded\n",
      "shard_32521 loaded\n",
      "shard_34093 loaded\n",
      "shard_9043 loaded\n",
      "shard_31339 loaded\n",
      "shard_1063 loaded\n",
      "shard_8070 loaded\n",
      "shard_10738 loaded\n",
      "shard_26229 loaded\n",
      "shard_33379 loaded\n",
      "shard_35333 loaded\n",
      "shard_13749 loaded\n",
      "shard_11030 loaded\n",
      "shard_42106 loaded\n",
      "shard_2399 loaded\n",
      "shard_4324 loaded\n",
      "shard_29439 loaded\n",
      "shard_15681 loaded\n",
      "shard_47824 loaded\n",
      "shard_48409 loaded\n",
      "shard_7119 loaded\n",
      "shard_43176 loaded\n",
      "shard_6041 loaded\n",
      "shard_24217 loaded\n",
      "shard_37155 loaded\n",
      "shard_26902 loaded\n",
      "shard_29792 loaded\n",
      "shard_28908 loaded\n",
      "shard_31819 loaded\n",
      "shard_32351 loaded\n",
      "shard_47714 loaded\n",
      "shard_15587 loaded\n",
      "shard_46003 loaded\n",
      "shard_3291 loaded\n",
      "shard_8017 loaded\n",
      "shard_26633 loaded\n",
      "shard_3235 loaded\n",
      "shard_575 loaded\n",
      "shard_39976 loaded\n",
      "shard_22297 loaded\n",
      "shard_8563 loaded\n",
      "shard_45283 loaded\n",
      "shard_41944 loaded\n",
      "shard_18557 loaded\n",
      "shard_20574 loaded\n",
      "shard_25953 loaded\n",
      "shard_10023 loaded\n",
      "shard_31893 loaded\n",
      "shard_17383 loaded\n",
      "shard_4172 loaded\n",
      "shard_39166 loaded\n",
      "shard_37499 loaded\n",
      "shard_9211 loaded\n",
      "shard_35454 loaded\n",
      "shard_19447 loaded\n",
      "shard_5461 loaded\n",
      "shard_45298 loaded\n",
      "shard_47492 loaded\n",
      "shard_35733 loaded\n",
      "shard_40893 loaded\n",
      "shard_16323 loaded\n",
      "shard_191 loaded\n",
      "shard_17585 loaded\n",
      "shard_18672 loaded\n",
      "shard_14362 loaded\n",
      "shard_41207 loaded\n",
      "shard_48908 loaded\n",
      "shard_34037 loaded\n",
      "shard_5363 loaded\n",
      "shard_26190 loaded\n",
      "shard_41173 loaded\n",
      "shard_40567 loaded\n",
      "shard_36608 loaded\n",
      "shard_28048 loaded\n",
      "shard_706 loaded\n",
      "shard_41227 loaded\n",
      "shard_35035 loaded\n",
      "shard_24110 loaded\n",
      "shard_15484 loaded\n",
      "shard_33562 loaded\n",
      "shard_6971 loaded\n",
      "shard_31134 loaded\n",
      "shard_7126 loaded\n",
      "shard_25106 loaded\n",
      "shard_37548 loaded\n",
      "shard_22697 loaded\n",
      "shard_9547 loaded\n",
      "shard_36097 loaded\n",
      "shard_32807 loaded\n",
      "shard_17941 loaded\n",
      "shard_25345 loaded\n",
      "shard_3907 loaded\n",
      "shard_36814 loaded\n",
      "shard_44157 loaded\n",
      "shard_4382 loaded\n",
      "shard_39788 loaded\n",
      "shard_26084 loaded\n",
      "shard_20037 loaded\n",
      "shard_11472 loaded\n",
      "shard_5002 loaded\n",
      "shard_8521 loaded\n",
      "shard_11625 loaded\n",
      "shard_20349 loaded\n",
      "shard_40994 loaded\n",
      "shard_6451 loaded\n",
      "shard_40802 loaded\n",
      "shard_45242 loaded\n",
      "shard_16655 loaded\n",
      "shard_48290 loaded\n",
      "shard_28180 loaded\n",
      "shard_35271 loaded\n",
      "shard_4338 loaded\n",
      "shard_18960 loaded\n",
      "shard_16036 loaded\n",
      "shard_16019 loaded\n",
      "shard_11375 loaded\n",
      "shard_36936 loaded\n",
      "shard_3040 loaded\n",
      "shard_3013 loaded\n",
      "shard_4091 loaded\n",
      "shard_44360 loaded\n",
      "shard_23429 loaded\n",
      "shard_14954 loaded\n",
      "shard_5500 loaded\n",
      "shard_35130 loaded\n",
      "shard_29041 loaded\n",
      "shard_7946 loaded\n",
      "shard_34711 loaded\n",
      "shard_4256 loaded\n",
      "shard_4847 loaded\n",
      "shard_39856 loaded\n",
      "shard_6012 loaded\n",
      "shard_14349 loaded\n",
      "shard_15955 loaded\n",
      "shard_33962 loaded\n",
      "shard_31908 loaded\n",
      "shard_31125 loaded\n",
      "shard_3058 loaded\n",
      "shard_10044 loaded\n",
      "shard_47483 loaded\n",
      "shard_22211 loaded\n",
      "shard_18779 loaded\n",
      "shard_41772 loaded\n",
      "shard_41736 loaded\n",
      "shard_42717 loaded\n",
      "shard_10162 loaded\n",
      "shard_5109 loaded\n",
      "shard_23294 loaded\n",
      "shard_13336 loaded\n",
      "shard_34379 loaded\n",
      "shard_44314 loaded\n",
      "shard_12884 loaded\n",
      "shard_43302 loaded\n",
      "shard_7582 loaded\n",
      "shard_48979 loaded\n",
      "shard_18502 loaded\n",
      "shard_11029 loaded\n",
      "shard_10803 loaded\n",
      "shard_45202 loaded\n",
      "shard_36828 loaded\n",
      "shard_21480 loaded\n",
      "shard_24507 loaded\n",
      "shard_16807 loaded\n",
      "shard_26979 loaded\n",
      "shard_32846 loaded\n",
      "shard_20057 loaded\n",
      "shard_17476 loaded\n",
      "shard_33227 loaded\n",
      "shard_33783 loaded\n",
      "shard_5338 loaded\n",
      "shard_4751 loaded\n",
      "shard_46383 loaded\n",
      "shard_17682 loaded\n",
      "shard_32501 loaded\n",
      "shard_23577 loaded\n",
      "shard_43138 loaded\n",
      "shard_34270 loaded\n",
      "shard_46899 loaded\n",
      "shard_15733 loaded\n",
      "shard_19538 loaded\n",
      "shard_7035 loaded\n",
      "shard_23499 loaded\n",
      "shard_473 loaded\n",
      "shard_40581 loaded\n",
      "shard_40647 loaded\n",
      "shard_29990 loaded\n",
      "shard_15105 loaded\n",
      "shard_3569 loaded\n",
      "shard_2713 loaded\n",
      "shard_15399 loaded\n",
      "shard_14166 loaded\n",
      "shard_33125 loaded\n",
      "shard_28848 loaded\n",
      "shard_12970 loaded\n",
      "shard_35370 loaded\n",
      "shard_13372 loaded\n",
      "shard_34033 loaded\n",
      "shard_10796 loaded\n",
      "shard_39133 loaded\n",
      "shard_5656 loaded\n",
      "shard_683 loaded\n",
      "shard_35046 loaded\n",
      "shard_2205 loaded\n",
      "shard_31157 loaded\n",
      "shard_36894 loaded\n",
      "shard_16741 loaded\n",
      "shard_6177 loaded\n",
      "shard_49611 loaded\n",
      "shard_45776 loaded\n",
      "shard_49616 loaded\n",
      "shard_45358 loaded\n",
      "shard_23838 loaded\n",
      "shard_2144 loaded\n",
      "shard_3151 loaded\n",
      "shard_25149 loaded\n",
      "shard_13283 loaded\n",
      "shard_31477 loaded\n",
      "shard_31700 loaded\n",
      "shard_19776 loaded\n",
      "shard_4651 loaded\n",
      "shard_3800 loaded\n",
      "shard_1928 loaded\n",
      "shard_5359 loaded\n",
      "shard_23648 loaded\n",
      "shard_31686 loaded\n",
      "shard_43737 loaded\n",
      "shard_32902 loaded\n",
      "shard_13854 loaded\n",
      "shard_11686 loaded\n",
      "shard_5493 loaded\n",
      "shard_2330 loaded\n",
      "shard_6507 loaded\n",
      "shard_47882 loaded\n",
      "shard_15157 loaded\n",
      "shard_14311 loaded\n",
      "shard_45535 loaded\n",
      "shard_31727 loaded\n",
      "shard_18867 loaded\n",
      "shard_6321 loaded\n",
      "shard_40417 loaded\n",
      "shard_533 loaded\n",
      "shard_13641 loaded\n",
      "shard_11766 loaded\n",
      "shard_32844 loaded\n",
      "shard_45040 loaded\n",
      "shard_23080 loaded\n",
      "shard_19555 loaded\n",
      "shard_20006 loaded\n",
      "shard_12065 loaded\n",
      "shard_4993 loaded\n",
      "shard_8912 loaded\n",
      "shard_34984 loaded\n",
      "shard_36709 loaded\n",
      "shard_24884 loaded\n",
      "shard_5075 loaded\n",
      "shard_48007 loaded\n",
      "shard_6522 loaded\n",
      "shard_28297 loaded\n",
      "shard_3278 loaded\n",
      "shard_24251 loaded\n",
      "shard_16236 loaded\n",
      "shard_27032 loaded\n",
      "shard_42273 loaded\n",
      "shard_35644 loaded\n",
      "shard_17122 loaded\n",
      "shard_36576 loaded\n",
      "shard_8460 loaded\n",
      "shard_6130 loaded\n",
      "shard_38670 loaded\n",
      "shard_34028 loaded\n",
      "shard_3711 loaded\n",
      "shard_4080 loaded\n",
      "shard_11325 loaded\n",
      "shard_45042 loaded\n",
      "shard_11045 loaded\n",
      "shard_679 loaded\n",
      "shard_43405 loaded\n",
      "shard_29801 loaded\n",
      "shard_36137 loaded\n",
      "shard_8161 loaded\n",
      "shard_5400 loaded\n",
      "shard_17335 loaded\n",
      "shard_27790 loaded\n",
      "shard_41298 loaded\n",
      "shard_29219 loaded\n",
      "shard_11123 loaded\n",
      "shard_38439 loaded\n",
      "shard_42850 loaded\n",
      "shard_10785 loaded\n",
      "shard_27292 loaded\n",
      "shard_11560 loaded\n",
      "shard_12033 loaded\n",
      "shard_5083 loaded\n",
      "shard_4569 loaded\n",
      "shard_45082 loaded\n",
      "shard_28363 loaded\n",
      "shard_39780 loaded\n",
      "shard_12263 loaded\n",
      "shard_5646 loaded\n",
      "shard_19507 loaded\n",
      "shard_27389 loaded\n",
      "shard_18875 loaded\n",
      "shard_41395 loaded\n",
      "shard_33012 loaded\n",
      "shard_39851 loaded\n",
      "shard_33155 loaded\n",
      "shard_43489 loaded\n",
      "shard_854 loaded\n",
      "shard_48843 loaded\n",
      "shard_39333 loaded\n",
      "shard_19771 loaded\n",
      "shard_8343 loaded\n",
      "shard_478 loaded\n",
      "shard_35618 loaded\n",
      "shard_1802 loaded\n",
      "shard_1671 loaded\n",
      "shard_23639 loaded\n",
      "shard_13390 loaded\n",
      "shard_27358 loaded\n",
      "shard_38633 loaded\n",
      "shard_46926 loaded\n",
      "shard_39548 loaded\n",
      "shard_21316 loaded\n",
      "shard_19422 loaded\n",
      "shard_4269 loaded\n",
      "shard_25043 loaded\n",
      "shard_20929 loaded\n",
      "shard_14791 loaded\n",
      "shard_41508 loaded\n",
      "shard_30702 loaded\n",
      "shard_9508 loaded\n",
      "shard_25473 loaded\n",
      "shard_15010 loaded\n",
      "shard_17984 loaded\n",
      "shard_27169 loaded\n",
      "shard_33447 loaded\n",
      "shard_19696 loaded\n",
      "shard_19198 loaded\n",
      "shard_46336 loaded\n",
      "shard_29233 loaded\n",
      "shard_34406 loaded\n",
      "shard_34118 loaded\n",
      "shard_19610 loaded\n",
      "shard_37184 loaded\n",
      "shard_25095 loaded\n",
      "shard_3468 loaded\n",
      "shard_49650 loaded\n",
      "shard_37931 loaded\n",
      "shard_19147 loaded\n",
      "shard_14710 loaded\n",
      "shard_10330 loaded\n",
      "shard_8930 loaded\n",
      "shard_33982 loaded\n",
      "shard_19096 loaded\n",
      "shard_23763 loaded\n",
      "shard_42923 loaded\n",
      "shard_30314 loaded\n",
      "shard_47389 loaded\n",
      "shard_42457 loaded\n",
      "shard_41084 loaded\n",
      "shard_23398 loaded\n",
      "shard_36038 loaded\n",
      "shard_49225 loaded\n",
      "shard_28303 loaded\n",
      "shard_37902 loaded\n",
      "shard_16262 loaded\n",
      "shard_5851 loaded\n",
      "shard_23679 loaded\n",
      "shard_42604 loaded\n",
      "shard_47734 loaded\n",
      "shard_36287 loaded\n",
      "shard_26281 loaded\n",
      "shard_24380 loaded\n",
      "shard_24845 loaded\n",
      "shard_27020 loaded\n",
      "shard_39699 loaded\n",
      "shard_18596 loaded\n",
      "shard_33269 loaded\n",
      "shard_6293 loaded\n",
      "shard_5737 loaded\n",
      "shard_13903 loaded\n",
      "shard_40291 loaded\n",
      "shard_20680 loaded\n",
      "shard_33496 loaded\n",
      "shard_42837 loaded\n",
      "shard_9103 loaded\n",
      "shard_13209 loaded\n",
      "shard_18895 loaded\n",
      "shard_23719 loaded\n",
      "shard_29250 loaded\n",
      "shard_20343 loaded\n",
      "shard_46856 loaded\n",
      "shard_17041 loaded\n",
      "shard_45010 loaded\n",
      "shard_6058 loaded\n",
      "shard_35456 loaded\n",
      "shard_25276 loaded\n",
      "shard_15759 loaded\n",
      "shard_10941 loaded\n",
      "shard_3521 loaded\n",
      "shard_41549 loaded\n",
      "shard_17144 loaded\n",
      "shard_38996 loaded\n",
      "shard_3874 loaded\n",
      "shard_11372 loaded\n",
      "shard_34548 loaded\n",
      "shard_36940 loaded\n",
      "shard_9887 loaded\n",
      "shard_40101 loaded\n",
      "shard_27154 loaded\n",
      "shard_16250 loaded\n",
      "shard_8834 loaded\n",
      "shard_23440 loaded\n",
      "shard_3720 loaded\n",
      "shard_8103 loaded\n",
      "shard_34296 loaded\n",
      "shard_19547 loaded\n",
      "shard_8866 loaded\n",
      "shard_2757 loaded\n",
      "shard_13132 loaded\n",
      "shard_28408 loaded\n",
      "shard_46693 loaded\n",
      "shard_42246 loaded\n",
      "shard_13673 loaded\n",
      "shard_3511 loaded\n",
      "shard_15688 loaded\n",
      "shard_13596 loaded\n",
      "shard_11170 loaded\n",
      "shard_14053 loaded\n",
      "shard_46360 loaded\n",
      "shard_32504 loaded\n",
      "shard_15366 loaded\n",
      "shard_35878 loaded\n",
      "shard_40027 loaded\n",
      "shard_49893 loaded\n",
      "shard_3429 loaded\n",
      "shard_19591 loaded\n",
      "shard_26544 loaded\n",
      "shard_46885 loaded\n",
      "shard_32806 loaded\n",
      "shard_7570 loaded\n",
      "shard_21357 loaded\n",
      "shard_16033 loaded\n",
      "shard_24488 loaded\n",
      "shard_17120 loaded\n",
      "shard_33772 loaded\n",
      "shard_1719 loaded\n",
      "shard_7550 loaded\n",
      "shard_46787 loaded\n",
      "shard_9158 loaded\n",
      "shard_49468 loaded\n",
      "shard_42061 loaded\n",
      "shard_18075 loaded\n",
      "shard_49838 loaded\n",
      "shard_23755 loaded\n",
      "shard_27052 loaded\n",
      "shard_39442 loaded\n",
      "shard_39802 loaded\n",
      "shard_5336 loaded\n",
      "shard_48959 loaded\n",
      "shard_49230 loaded\n",
      "shard_11566 loaded\n",
      "shard_49940 loaded\n",
      "shard_5407 loaded\n",
      "shard_49161 loaded\n",
      "shard_10458 loaded\n",
      "shard_23085 loaded\n",
      "shard_26064 loaded\n",
      "shard_48163 loaded\n",
      "shard_37041 loaded\n",
      "shard_5438 loaded\n",
      "shard_14662 loaded\n",
      "shard_32811 loaded\n",
      "shard_12388 loaded\n",
      "shard_31002 loaded\n",
      "shard_16027 loaded\n",
      "shard_49985 loaded\n",
      "shard_28797 loaded\n",
      "shard_25274 loaded\n",
      "shard_40406 loaded\n",
      "shard_21848 loaded\n",
      "shard_25793 loaded\n",
      "shard_37441 loaded\n",
      "shard_6674 loaded\n",
      "shard_26095 loaded\n",
      "shard_40903 loaded\n",
      "shard_46557 loaded\n",
      "shard_25734 loaded\n",
      "shard_15641 loaded\n",
      "shard_32254 loaded\n",
      "shard_26974 loaded\n",
      "shard_44571 loaded\n",
      "shard_35212 loaded\n",
      "shard_40538 loaded\n",
      "shard_33788 loaded\n",
      "shard_14815 loaded\n",
      "shard_35196 loaded\n",
      "shard_10737 loaded\n",
      "shard_7724 loaded\n",
      "shard_20510 loaded\n",
      "shard_34254 loaded\n",
      "shard_24212 loaded\n",
      "shard_39763 loaded\n",
      "shard_34631 loaded\n",
      "shard_40518 loaded\n",
      "shard_10133 loaded\n",
      "shard_37107 loaded\n",
      "shard_31250 loaded\n",
      "shard_22459 loaded\n",
      "shard_44993 loaded\n",
      "shard_48999 loaded\n",
      "shard_30602 loaded\n",
      "shard_18771 loaded\n",
      "shard_47682 loaded\n",
      "shard_33958 loaded\n",
      "shard_45291 loaded\n",
      "shard_34243 loaded\n",
      "shard_29524 loaded\n",
      "shard_42743 loaded\n",
      "shard_37989 loaded\n",
      "shard_40106 loaded\n",
      "shard_46906 loaded\n",
      "shard_19060 loaded\n",
      "shard_29846 loaded\n",
      "shard_29607 loaded\n",
      "shard_10452 loaded\n",
      "shard_4234 loaded\n",
      "shard_48924 loaded\n",
      "shard_126 loaded\n",
      "shard_5460 loaded\n",
      "shard_10555 loaded\n",
      "shard_5831 loaded\n",
      "shard_37949 loaded\n",
      "shard_13195 loaded\n",
      "shard_38028 loaded\n",
      "shard_41671 loaded\n",
      "shard_12789 loaded\n",
      "shard_22272 loaded\n",
      "shard_13697 loaded\n",
      "shard_37649 loaded\n",
      "shard_3075 loaded\n",
      "shard_25721 loaded\n",
      "shard_1391 loaded\n",
      "shard_26135 loaded\n",
      "shard_42824 loaded\n",
      "shard_35068 loaded\n",
      "shard_20524 loaded\n",
      "shard_2411 loaded\n",
      "shard_5612 loaded\n",
      "shard_39117 loaded\n",
      "shard_40040 loaded\n",
      "shard_49974 loaded\n",
      "shard_46715 loaded\n",
      "shard_9258 loaded\n",
      "shard_34287 loaded\n",
      "shard_1107 loaded\n",
      "shard_38242 loaded\n",
      "shard_47812 loaded\n",
      "shard_7053 loaded\n",
      "shard_31735 loaded\n",
      "shard_47406 loaded\n",
      "shard_39168 loaded\n",
      "shard_1653 loaded\n",
      "shard_38355 loaded\n",
      "shard_9326 loaded\n",
      "shard_40636 loaded\n",
      "shard_29960 loaded\n",
      "shard_29432 loaded\n",
      "shard_21129 loaded\n",
      "shard_40807 loaded\n",
      "shard_49681 loaded\n",
      "shard_19816 loaded\n",
      "shard_12811 loaded\n",
      "shard_27968 loaded\n",
      "shard_37050 loaded\n",
      "shard_12816 loaded\n",
      "shard_17438 loaded\n",
      "shard_41201 loaded\n",
      "shard_29995 loaded\n",
      "shard_988 loaded\n",
      "shard_8063 loaded\n",
      "shard_7008 loaded\n",
      "shard_29378 loaded\n",
      "shard_42103 loaded\n",
      "shard_39094 loaded\n",
      "shard_32685 loaded\n",
      "shard_38443 loaded\n",
      "shard_23595 loaded\n",
      "shard_26291 loaded\n",
      "shard_13409 loaded\n",
      "shard_31887 loaded\n",
      "shard_4371 loaded\n",
      "shard_42286 loaded\n",
      "shard_38887 loaded\n",
      "shard_3217 loaded\n",
      "shard_49519 loaded\n",
      "shard_8302 loaded\n",
      "shard_20048 loaded\n",
      "shard_23049 loaded\n",
      "shard_26732 loaded\n",
      "shard_16335 loaded\n",
      "shard_30997 loaded\n",
      "shard_13494 loaded\n",
      "shard_14015 loaded\n",
      "shard_27917 loaded\n",
      "shard_44142 loaded\n",
      "shard_17063 loaded\n",
      "shard_41639 loaded\n",
      "shard_6697 loaded\n",
      "shard_28434 loaded\n",
      "shard_25896 loaded\n",
      "shard_30818 loaded\n",
      "shard_4862 loaded\n",
      "shard_35539 loaded\n",
      "shard_26097 loaded\n",
      "shard_36660 loaded\n",
      "shard_48553 loaded\n",
      "shard_34445 loaded\n",
      "shard_45557 loaded\n",
      "shard_49768 loaded\n",
      "shard_9436 loaded\n",
      "shard_41558 loaded\n",
      "shard_15557 loaded\n",
      "shard_17184 loaded\n",
      "shard_17322 loaded\n",
      "shard_6951 loaded\n",
      "shard_21134 loaded\n",
      "shard_5790 loaded\n",
      "shard_5762 loaded\n",
      "shard_38636 loaded\n",
      "shard_37692 loaded\n",
      "shard_12836 loaded\n",
      "shard_6482 loaded\n",
      "shard_43749 loaded\n",
      "shard_40347 loaded\n",
      "shard_2890 loaded\n",
      "shard_18921 loaded\n",
      "shard_510 loaded\n",
      "shard_24840 loaded\n",
      "shard_42221 loaded\n",
      "shard_23333 loaded\n",
      "shard_30520 loaded\n",
      "shard_37967 loaded\n",
      "shard_2883 loaded\n",
      "shard_27227 loaded\n",
      "shard_9468 loaded\n",
      "shard_23405 loaded\n",
      "shard_14853 loaded\n",
      "shard_26853 loaded\n",
      "shard_3179 loaded\n",
      "shard_44209 loaded\n",
      "shard_1558 loaded\n",
      "shard_17249 loaded\n",
      "shard_34128 loaded\n",
      "shard_21042 loaded\n",
      "shard_15457 loaded\n",
      "shard_11746 loaded\n",
      "shard_15531 loaded\n",
      "shard_38085 loaded\n",
      "shard_45633 loaded\n",
      "shard_26313 loaded\n",
      "shard_2850 loaded\n",
      "shard_38936 loaded\n",
      "shard_43890 loaded\n",
      "shard_48546 loaded\n",
      "shard_39544 loaded\n",
      "shard_6603 loaded\n",
      "shard_49067 loaded\n",
      "shard_9625 loaded\n",
      "shard_41223 loaded\n",
      "shard_47396 loaded\n",
      "shard_2232 loaded\n",
      "shard_43798 loaded\n",
      "shard_41658 loaded\n",
      "shard_40890 loaded\n",
      "shard_31523 loaded\n",
      "shard_41716 loaded\n",
      "shard_5870 loaded\n",
      "shard_12314 loaded\n",
      "shard_31561 loaded\n",
      "shard_44800 loaded\n",
      "shard_27325 loaded\n",
      "shard_1919 loaded\n",
      "shard_19963 loaded\n",
      "shard_47209 loaded\n",
      "shard_30011 loaded\n",
      "shard_26501 loaded\n",
      "shard_18170 loaded\n",
      "shard_8687 loaded\n",
      "shard_5981 loaded\n",
      "shard_32886 loaded\n",
      "shard_46674 loaded\n",
      "shard_12870 loaded\n",
      "shard_44551 loaded\n",
      "shard_21851 loaded\n",
      "shard_34559 loaded\n",
      "shard_11848 loaded\n",
      "shard_38322 loaded\n",
      "shard_30579 loaded\n",
      "shard_40413 loaded\n",
      "shard_21545 loaded\n",
      "shard_8494 loaded\n",
      "shard_25122 loaded\n",
      "shard_42847 loaded\n",
      "shard_13890 loaded\n",
      "shard_46294 loaded\n",
      "shard_37212 loaded\n",
      "shard_18695 loaded\n",
      "shard_4795 loaded\n",
      "shard_36512 loaded\n",
      "shard_27250 loaded\n",
      "shard_18548 loaded\n",
      "shard_19697 loaded\n",
      "shard_29058 loaded\n",
      "shard_44927 loaded\n",
      "shard_47623 loaded\n",
      "shard_1288 loaded\n",
      "shard_23390 loaded\n",
      "shard_47893 loaded\n",
      "shard_30581 loaded\n",
      "shard_19542 loaded\n",
      "shard_7879 loaded\n",
      "shard_30287 loaded\n",
      "shard_13011 loaded\n",
      "shard_3994 loaded\n",
      "shard_43680 loaded\n",
      "shard_29375 loaded\n",
      "shard_9081 loaded\n",
      "shard_17994 loaded\n",
      "shard_34805 loaded\n",
      "shard_22136 loaded\n",
      "shard_28210 loaded\n",
      "shard_31520 loaded\n",
      "shard_20649 loaded\n",
      "shard_34547 loaded\n",
      "shard_26667 loaded\n",
      "shard_48305 loaded\n",
      "shard_44820 loaded\n",
      "shard_33277 loaded\n",
      "shard_36628 loaded\n",
      "shard_7116 loaded\n",
      "shard_38965 loaded\n",
      "shard_46711 loaded\n",
      "shard_35930 loaded\n",
      "shard_31762 loaded\n",
      "shard_26781 loaded\n",
      "shard_21125 loaded\n",
      "shard_28193 loaded\n",
      "shard_22524 loaded\n",
      "shard_17502 loaded\n",
      "shard_47338 loaded\n",
      "shard_34107 loaded\n",
      "shard_11771 loaded\n",
      "shard_29817 loaded\n",
      "shard_44516 loaded\n",
      "shard_15346 loaded\n",
      "shard_43943 loaded\n",
      "shard_23567 loaded\n",
      "shard_22639 loaded\n",
      "shard_12680 loaded\n",
      "shard_30558 loaded\n",
      "shard_1581 loaded\n",
      "shard_15697 loaded\n",
      "shard_35205 loaded\n",
      "shard_4856 loaded\n",
      "shard_18196 loaded\n",
      "shard_19052 loaded\n",
      "shard_11388 loaded\n",
      "shard_45012 loaded\n",
      "shard_31575 loaded\n",
      "shard_20359 loaded\n",
      "shard_14206 loaded\n",
      "shard_43270 loaded\n",
      "shard_25422 loaded\n",
      "shard_25874 loaded\n",
      "shard_1402 loaded\n",
      "shard_32486 loaded\n",
      "shard_45123 loaded\n",
      "shard_4585 loaded\n",
      "shard_40392 loaded\n",
      "shard_29155 loaded\n",
      "shard_30944 loaded\n",
      "shard_37524 loaded\n",
      "shard_31774 loaded\n",
      "shard_13020 loaded\n",
      "shard_43849 loaded\n",
      "shard_13823 loaded\n",
      "shard_28431 loaded\n",
      "shard_43167 loaded\n",
      "shard_3323 loaded\n",
      "shard_8366 loaded\n",
      "shard_44302 loaded\n",
      "shard_26342 loaded\n",
      "shard_24882 loaded\n",
      "shard_35767 loaded\n",
      "shard_42180 loaded\n",
      "shard_43312 loaded\n",
      "shard_24851 loaded\n",
      "shard_29003 loaded\n",
      "shard_26945 loaded\n",
      "shard_32951 loaded\n",
      "shard_30803 loaded\n",
      "shard_10383 loaded\n",
      "shard_34989 loaded\n",
      "shard_43048 loaded\n",
      "shard_47042 loaded\n",
      "shard_42150 loaded\n",
      "shard_24512 loaded\n",
      "shard_9066 loaded\n",
      "shard_10722 loaded\n",
      "shard_40978 loaded\n",
      "shard_5504 loaded\n",
      "shard_48524 loaded\n",
      "shard_27431 loaded\n",
      "shard_48693 loaded\n",
      "shard_43598 loaded\n",
      "shard_878 loaded\n",
      "shard_22919 loaded\n",
      "shard_29298 loaded\n",
      "shard_28835 loaded\n",
      "shard_24186 loaded\n",
      "shard_5239 loaded\n",
      "shard_8636 loaded\n",
      "shard_28915 loaded\n",
      "shard_13839 loaded\n",
      "shard_34349 loaded\n",
      "shard_44573 loaded\n",
      "shard_35443 loaded\n",
      "shard_15925 loaded\n",
      "shard_13060 loaded\n",
      "shard_39867 loaded\n",
      "shard_24094 loaded\n",
      "shard_34632 loaded\n",
      "shard_45001 loaded\n",
      "shard_8783 loaded\n",
      "shard_3242 loaded\n",
      "shard_11753 loaded\n",
      "shard_46815 loaded\n",
      "shard_1665 loaded\n",
      "shard_20161 loaded\n",
      "shard_8599 loaded\n",
      "shard_24041 loaded\n",
      "shard_2670 loaded\n",
      "shard_29342 loaded\n",
      "shard_20223 loaded\n",
      "shard_32890 loaded\n",
      "shard_12061 loaded\n",
      "shard_49203 loaded\n",
      "shard_272 loaded\n",
      "shard_31678 loaded\n",
      "shard_49032 loaded\n",
      "shard_33116 loaded\n",
      "shard_27637 loaded\n",
      "shard_36972 loaded\n",
      "shard_42130 loaded\n",
      "shard_46328 loaded\n",
      "shard_45177 loaded\n",
      "shard_15931 loaded\n",
      "shard_46170 loaded\n",
      "shard_44810 loaded\n",
      "shard_47718 loaded\n",
      "shard_5353 loaded\n",
      "shard_24564 loaded\n",
      "shard_43097 loaded\n",
      "shard_2692 loaded\n",
      "shard_46479 loaded\n",
      "shard_18635 loaded\n",
      "shard_43541 loaded\n",
      "shard_28332 loaded\n",
      "shard_38407 loaded\n",
      "shard_39214 loaded\n",
      "shard_30613 loaded\n",
      "shard_22805 loaded\n",
      "shard_311 loaded\n",
      "shard_38357 loaded\n",
      "shard_46719 loaded\n",
      "shard_16233 loaded\n",
      "shard_20284 loaded\n",
      "shard_21796 loaded\n",
      "shard_11090 loaded\n",
      "shard_36271 loaded\n",
      "shard_43742 loaded\n",
      "shard_15741 loaded\n",
      "shard_39381 loaded\n",
      "shard_16798 loaded\n",
      "shard_18394 loaded\n",
      "shard_43658 loaded\n",
      "shard_1816 loaded\n",
      "shard_18192 loaded\n",
      "shard_24702 loaded\n",
      "shard_9951 loaded\n",
      "shard_23951 loaded\n",
      "shard_36963 loaded\n",
      "shard_25366 loaded\n",
      "shard_16010 loaded\n",
      "shard_21604 loaded\n",
      "shard_31574 loaded\n",
      "shard_44032 loaded\n",
      "shard_35447 loaded\n",
      "shard_14995 loaded\n",
      "shard_31056 loaded\n",
      "shard_27974 loaded\n",
      "shard_34207 loaded\n",
      "shard_223 loaded\n",
      "shard_28871 loaded\n",
      "shard_4828 loaded\n",
      "shard_48340 loaded\n",
      "shard_48185 loaded\n",
      "shard_4239 loaded\n",
      "shard_21336 loaded\n",
      "shard_43324 loaded\n",
      "shard_368 loaded\n",
      "shard_31910 loaded\n",
      "shard_18998 loaded\n",
      "shard_49344 loaded\n",
      "shard_2780 loaded\n",
      "shard_43675 loaded\n",
      "shard_41041 loaded\n",
      "shard_23028 loaded\n",
      "shard_36792 loaded\n",
      "shard_42516 loaded\n",
      "shard_32673 loaded\n",
      "shard_38926 loaded\n",
      "shard_42966 loaded\n",
      "shard_23594 loaded\n",
      "shard_19749 loaded\n",
      "shard_23058 loaded\n",
      "shard_14184 loaded\n",
      "shard_37461 loaded\n",
      "shard_28663 loaded\n",
      "shard_5614 loaded\n",
      "shard_26261 loaded\n",
      "shard_44436 loaded\n",
      "shard_31950 loaded\n",
      "shard_14377 loaded\n",
      "shard_23744 loaded\n",
      "shard_20938 loaded\n",
      "shard_23959 loaded\n",
      "shard_22952 loaded\n",
      "shard_16080 loaded\n",
      "shard_34540 loaded\n",
      "shard_22967 loaded\n",
      "shard_24659 loaded\n",
      "shard_18708 loaded\n",
      "shard_26040 loaded\n",
      "shard_5752 loaded\n",
      "shard_23552 loaded\n",
      "shard_6789 loaded\n",
      "shard_19928 loaded\n",
      "shard_37727 loaded\n",
      "shard_16786 loaded\n",
      "shard_21003 loaded\n",
      "shard_44747 loaded\n",
      "shard_3742 loaded\n",
      "shard_49671 loaded\n",
      "shard_23871 loaded\n",
      "shard_16750 loaded\n",
      "shard_5741 loaded\n",
      "shard_21924 loaded\n",
      "shard_37869 loaded\n",
      "shard_2734 loaded\n",
      "shard_10075 loaded\n",
      "shard_37382 loaded\n",
      "shard_31749 loaded\n",
      "shard_7023 loaded\n",
      "shard_46544 loaded\n",
      "shard_49718 loaded\n",
      "shard_45505 loaded\n",
      "shard_46865 loaded\n",
      "shard_11110 loaded\n",
      "shard_24119 loaded\n",
      "shard_48540 loaded\n",
      "shard_30744 loaded\n",
      "shard_19564 loaded\n",
      "shard_12831 loaded\n",
      "shard_18421 loaded\n",
      "shard_7170 loaded\n",
      "shard_8696 loaded\n",
      "shard_14341 loaded\n",
      "shard_39158 loaded\n",
      "shard_16360 loaded\n",
      "shard_10747 loaded\n",
      "shard_43186 loaded\n",
      "shard_10862 loaded\n",
      "shard_42515 loaded\n",
      "shard_40846 loaded\n",
      "shard_25534 loaded\n",
      "shard_7002 loaded\n",
      "shard_22032 loaded\n",
      "shard_11091 loaded\n",
      "shard_9147 loaded\n",
      "shard_8833 loaded\n",
      "shard_7137 loaded\n",
      "shard_12980 loaded\n",
      "shard_9730 loaded\n",
      "shard_19493 loaded\n",
      "shard_12776 loaded\n",
      "shard_8729 loaded\n",
      "shard_1817 loaded\n",
      "shard_41063 loaded\n",
      "shard_7657 loaded\n",
      "shard_48308 loaded\n",
      "shard_47574 loaded\n",
      "shard_21075 loaded\n",
      "shard_46321 loaded\n",
      "shard_37879 loaded\n",
      "shard_46011 loaded\n",
      "shard_20442 loaded\n",
      "shard_27467 loaded\n",
      "shard_28136 loaded\n",
      "shard_26931 loaded\n",
      "shard_25900 loaded\n",
      "shard_14689 loaded\n",
      "shard_20495 loaded\n",
      "shard_29896 loaded\n",
      "shard_17426 loaded\n",
      "shard_21155 loaded\n",
      "shard_3334 loaded\n",
      "shard_7794 loaded\n",
      "shard_24264 loaded\n",
      "shard_5822 loaded\n",
      "shard_30753 loaded\n",
      "shard_37288 loaded\n",
      "shard_33940 loaded\n",
      "shard_12468 loaded\n",
      "shard_31182 loaded\n",
      "shard_14376 loaded\n",
      "shard_33171 loaded\n",
      "shard_9645 loaded\n",
      "shard_45116 loaded\n",
      "shard_46195 loaded\n",
      "shard_2676 loaded\n",
      "shard_41083 loaded\n",
      "shard_47876 loaded\n",
      "shard_21185 loaded\n",
      "shard_7891 loaded\n",
      "shard_45544 loaded\n",
      "shard_38683 loaded\n",
      "shard_14938 loaded\n",
      "shard_46988 loaded\n",
      "shard_18022 loaded\n",
      "shard_12885 loaded\n",
      "shard_20377 loaded\n",
      "shard_39535 loaded\n",
      "shard_15659 loaded\n",
      "shard_6113 loaded\n",
      "shard_25974 loaded\n",
      "shard_5024 loaded\n",
      "shard_6668 loaded\n",
      "shard_16817 loaded\n",
      "shard_7807 loaded\n",
      "shard_20345 loaded\n",
      "shard_34748 loaded\n",
      "shard_24068 loaded\n",
      "shard_48144 loaded\n",
      "shard_37159 loaded\n",
      "shard_5685 loaded\n",
      "shard_25825 loaded\n",
      "shard_12215 loaded\n",
      "shard_3479 loaded\n",
      "shard_27977 loaded\n",
      "shard_41096 loaded\n",
      "shard_31184 loaded\n",
      "shard_43179 loaded\n",
      "shard_42699 loaded\n",
      "shard_25741 loaded\n",
      "shard_36585 loaded\n",
      "shard_43133 loaded\n",
      "shard_36957 loaded\n",
      "shard_8284 loaded\n",
      "shard_14608 loaded\n",
      "shard_26956 loaded\n",
      "shard_5842 loaded\n",
      "shard_2037 loaded\n",
      "shard_7328 loaded\n",
      "shard_3150 loaded\n",
      "shard_5399 loaded\n",
      "shard_28221 loaded\n",
      "shard_41533 loaded\n",
      "shard_35082 loaded\n",
      "shard_23886 loaded\n",
      "shard_5065 loaded\n",
      "shard_45847 loaded\n",
      "shard_35686 loaded\n",
      "shard_42766 loaded\n",
      "shard_13562 loaded\n",
      "shard_28398 loaded\n",
      "shard_3216 loaded\n",
      "shard_24368 loaded\n",
      "shard_26447 loaded\n",
      "shard_21575 loaded\n",
      "shard_28722 loaded\n",
      "shard_44630 loaded\n",
      "shard_3894 loaded\n",
      "shard_21173 loaded\n",
      "shard_16626 loaded\n",
      "shard_1981 loaded\n",
      "shard_45705 loaded\n",
      "shard_38709 loaded\n",
      "shard_10920 loaded\n",
      "shard_6910 loaded\n",
      "shard_4489 loaded\n",
      "shard_45514 loaded\n",
      "shard_45615 loaded\n",
      "shard_47169 loaded\n",
      "shard_20766 loaded\n",
      "shard_17214 loaded\n",
      "shard_27692 loaded\n",
      "shard_19075 loaded\n",
      "shard_36292 loaded\n",
      "shard_34202 loaded\n",
      "shard_43212 loaded\n",
      "shard_29973 loaded\n",
      "shard_25764 loaded\n",
      "shard_28177 loaded\n",
      "shard_48514 loaded\n",
      "shard_26007 loaded\n",
      "shard_34982 loaded\n",
      "shard_11809 loaded\n",
      "shard_32051 loaded\n",
      "shard_28199 loaded\n",
      "shard_33005 loaded\n",
      "shard_26548 loaded\n",
      "shard_11797 loaded\n",
      "shard_43640 loaded\n",
      "shard_27645 loaded\n",
      "shard_17714 loaded\n",
      "shard_7985 loaded\n",
      "shard_13857 loaded\n",
      "shard_39755 loaded\n",
      "shard_20729 loaded\n",
      "shard_14783 loaded\n",
      "shard_7101 loaded\n",
      "shard_7806 loaded\n",
      "shard_34648 loaded\n",
      "shard_38505 loaded\n",
      "shard_3735 loaded\n",
      "shard_35635 loaded\n",
      "shard_25209 loaded\n",
      "shard_15390 loaded\n",
      "shard_28632 loaded\n",
      "shard_30638 loaded\n",
      "shard_47467 loaded\n",
      "shard_38955 loaded\n",
      "shard_44748 loaded\n",
      "shard_29050 loaded\n",
      "shard_49749 loaded\n",
      "shard_17454 loaded\n",
      "shard_45860 loaded\n",
      "shard_32623 loaded\n",
      "shard_36192 loaded\n",
      "shard_23598 loaded\n",
      "shard_11592 loaded\n",
      "shard_14214 loaded\n",
      "shard_10403 loaded\n",
      "shard_49909 loaded\n",
      "shard_25331 loaded\n",
      "shard_34283 loaded\n",
      "shard_17802 loaded\n",
      "shard_18828 loaded\n",
      "shard_36063 loaded\n",
      "shard_1025 loaded\n",
      "shard_28161 loaded\n",
      "shard_28989 loaded\n",
      "shard_14953 loaded\n",
      "shard_34013 loaded\n",
      "shard_41203 loaded\n",
      "shard_33 loaded\n",
      "shard_29686 loaded\n",
      "shard_33419 loaded\n",
      "shard_35613 loaded\n",
      "shard_6922 loaded\n",
      "shard_34792 loaded\n",
      "shard_15183 loaded\n",
      "shard_45207 loaded\n",
      "shard_1616 loaded\n",
      "shard_36356 loaded\n",
      "shard_8111 loaded\n",
      "shard_9613 loaded\n",
      "shard_22086 loaded\n",
      "shard_7316 loaded\n",
      "shard_41964 loaded\n",
      "shard_27706 loaded\n",
      "shard_20321 loaded\n",
      "shard_10840 loaded\n",
      "shard_32531 loaded\n",
      "shard_42677 loaded\n",
      "shard_34364 loaded\n",
      "shard_17078 loaded\n",
      "shard_41893 loaded\n",
      "shard_46295 loaded\n",
      "shard_19031 loaded\n",
      "shard_11059 loaded\n",
      "shard_45884 loaded\n",
      "shard_49416 loaded\n",
      "shard_33606 loaded\n",
      "shard_1459 loaded\n",
      "shard_44860 loaded\n",
      "shard_19197 loaded\n",
      "shard_2790 loaded\n",
      "shard_41866 loaded\n",
      "shard_9057 loaded\n",
      "shard_21060 loaded\n",
      "shard_46270 loaded\n",
      "shard_9369 loaded\n",
      "shard_23056 loaded\n",
      "shard_17315 loaded\n",
      "shard_14581 loaded\n",
      "shard_43671 loaded\n",
      "shard_62 loaded\n",
      "shard_48744 loaded\n",
      "shard_20651 loaded\n",
      "shard_40866 loaded\n",
      "shard_19281 loaded\n",
      "shard_29131 loaded\n",
      "shard_30634 loaded\n",
      "shard_31741 loaded\n",
      "shard_4594 loaded\n",
      "shard_46300 loaded\n",
      "shard_13450 loaded\n",
      "shard_26233 loaded\n",
      "shard_42577 loaded\n",
      "shard_37300 loaded\n",
      "shard_29854 loaded\n",
      "shard_24881 loaded\n",
      "shard_39911 loaded\n",
      "shard_32473 loaded\n",
      "shard_11440 loaded\n",
      "shard_40624 loaded\n",
      "shard_27040 loaded\n",
      "shard_5381 loaded\n",
      "shard_5156 loaded\n",
      "shard_36738 loaded\n",
      "shard_49388 loaded\n",
      "shard_19624 loaded\n",
      "shard_16918 loaded\n",
      "shard_45070 loaded\n",
      "shard_37672 loaded\n",
      "shard_8756 loaded\n",
      "shard_31089 loaded\n",
      "shard_15479 loaded\n",
      "shard_37551 loaded\n",
      "shard_43529 loaded\n",
      "shard_3992 loaded\n",
      "shard_25000 loaded\n",
      "shard_39648 loaded\n",
      "shard_1065 loaded\n",
      "shard_22577 loaded\n",
      "shard_44637 loaded\n",
      "shard_2363 loaded\n",
      "shard_19606 loaded\n",
      "shard_45262 loaded\n",
      "shard_1490 loaded\n",
      "shard_46982 loaded\n",
      "shard_3488 loaded\n",
      "shard_28637 loaded\n",
      "shard_16021 loaded\n",
      "shard_7279 loaded\n",
      "shard_21077 loaded\n",
      "shard_4458 loaded\n",
      "shard_39533 loaded\n",
      "shard_9844 loaded\n",
      "shard_38175 loaded\n",
      "shard_26410 loaded\n",
      "shard_1770 loaded\n",
      "shard_28391 loaded\n",
      "shard_17283 loaded\n",
      "shard_35564 loaded\n",
      "shard_16381 loaded\n",
      "shard_48402 loaded\n",
      "shard_22106 loaded\n",
      "shard_46556 loaded\n",
      "shard_2149 loaded\n",
      "shard_49563 loaded\n",
      "shard_49999 loaded\n",
      "shard_37004 loaded\n",
      "shard_12513 loaded\n",
      "shard_34661 loaded\n",
      "shard_3596 loaded\n",
      "shard_44656 loaded\n",
      "shard_20452 loaded\n",
      "shard_39260 loaded\n",
      "shard_28195 loaded\n",
      "shard_34361 loaded\n",
      "shard_21373 loaded\n",
      "shard_31612 loaded\n",
      "shard_36870 loaded\n",
      "shard_41017 loaded\n",
      "shard_22104 loaded\n",
      "shard_25589 loaded\n",
      "shard_25990 loaded\n",
      "shard_24154 loaded\n",
      "shard_9488 loaded\n",
      "shard_31673 loaded\n",
      "shard_16023 loaded\n",
      "shard_8586 loaded\n",
      "shard_14273 loaded\n",
      "shard_5167 loaded\n",
      "shard_1419 loaded\n",
      "shard_38055 loaded\n",
      "shard_7914 loaded\n",
      "shard_16162 loaded\n",
      "shard_29435 loaded\n",
      "shard_17048 loaded\n",
      "shard_44219 loaded\n",
      "shard_44740 loaded\n",
      "shard_20453 loaded\n",
      "shard_13385 loaded\n",
      "shard_48887 loaded\n",
      "shard_4399 loaded\n",
      "shard_431 loaded\n",
      "shard_41159 loaded\n",
      "shard_5325 loaded\n",
      "shard_38099 loaded\n",
      "shard_41478 loaded\n",
      "shard_6915 loaded\n",
      "shard_4467 loaded\n",
      "shard_16064 loaded\n",
      "shard_15273 loaded\n",
      "shard_5595 loaded\n",
      "shard_14385 loaded\n",
      "shard_7069 loaded\n",
      "shard_42042 loaded\n",
      "shard_19763 loaded\n",
      "shard_27262 loaded\n",
      "shard_41354 loaded\n",
      "shard_41281 loaded\n",
      "shard_45878 loaded\n",
      "shard_30943 loaded\n",
      "shard_25224 loaded\n",
      "shard_7490 loaded\n",
      "shard_27675 loaded\n",
      "shard_16299 loaded\n",
      "shard_16372 loaded\n",
      "shard_7120 loaded\n",
      "shard_30809 loaded\n",
      "shard_30115 loaded\n",
      "shard_35214 loaded\n",
      "shard_9500 loaded\n",
      "shard_27119 loaded\n",
      "shard_7025 loaded\n",
      "shard_20508 loaded\n",
      "shard_49062 loaded\n",
      "shard_22726 loaded\n",
      "shard_13906 loaded\n",
      "shard_48574 loaded\n",
      "shard_40593 loaded\n",
      "shard_29814 loaded\n",
      "shard_43355 loaded\n",
      "shard_21689 loaded\n",
      "shard_14539 loaded\n",
      "shard_4770 loaded\n",
      "shard_44438 loaded\n",
      "shard_28051 loaded\n",
      "shard_34801 loaded\n",
      "shard_12413 loaded\n",
      "shard_37878 loaded\n",
      "shard_12174 loaded\n",
      "shard_29869 loaded\n",
      "shard_30204 loaded\n",
      "shard_18582 loaded\n",
      "shard_16861 loaded\n",
      "shard_20241 loaded\n",
      "shard_5067 loaded\n",
      "shard_626 loaded\n",
      "shard_47033 loaded\n",
      "shard_12027 loaded\n",
      "shard_10927 loaded\n",
      "shard_24062 loaded\n",
      "shard_3606 loaded\n",
      "shard_28774 loaded\n",
      "shard_35992 loaded\n",
      "shard_48448 loaded\n",
      "shard_9219 loaded\n",
      "shard_4563 loaded\n",
      "shard_20287 loaded\n",
      "shard_43577 loaded\n",
      "shard_5929 loaded\n",
      "shard_35438 loaded\n",
      "shard_4314 loaded\n",
      "shard_28070 loaded\n",
      "shard_41780 loaded\n",
      "shard_28806 loaded\n",
      "shard_5143 loaded\n",
      "shard_9995 loaded\n",
      "shard_6279 loaded\n",
      "shard_17146 loaded\n",
      "shard_40920 loaded\n",
      "shard_7165 loaded\n",
      "shard_26023 loaded\n",
      "shard_7389 loaded\n",
      "shard_48062 loaded\n",
      "shard_19835 loaded\n",
      "shard_21611 loaded\n",
      "shard_3618 loaded\n",
      "shard_48653 loaded\n",
      "shard_5053 loaded\n",
      "shard_15316 loaded\n",
      "shard_48083 loaded\n",
      "shard_34009 loaded\n",
      "shard_2531 loaded\n",
      "shard_10210 loaded\n",
      "shard_47488 loaded\n",
      "shard_23252 loaded\n",
      "shard_20611 loaded\n",
      "shard_20342 loaded\n",
      "shard_36470 loaded\n",
      "shard_11475 loaded\n",
      "shard_42597 loaded\n",
      "shard_2859 loaded\n",
      "shard_13911 loaded\n",
      "shard_32516 loaded\n",
      "shard_17713 loaded\n",
      "shard_8758 loaded\n",
      "shard_25230 loaded\n",
      "shard_32767 loaded\n",
      "shard_24871 loaded\n",
      "shard_27548 loaded\n",
      "shard_30659 loaded\n",
      "shard_41630 loaded\n",
      "shard_21986 loaded\n",
      "shard_5101 loaded\n",
      "shard_3986 loaded\n",
      "shard_45186 loaded\n",
      "shard_13830 loaded\n",
      "shard_46662 loaded\n",
      "shard_33542 loaded\n",
      "shard_48335 loaded\n",
      "shard_35661 loaded\n",
      "shard_24693 loaded\n",
      "shard_33629 loaded\n",
      "shard_39782 loaded\n",
      "shard_30058 loaded\n",
      "shard_10647 loaded\n",
      "shard_35347 loaded\n",
      "shard_1991 loaded\n",
      "shard_24056 loaded\n",
      "shard_3071 loaded\n",
      "shard_28098 loaded\n",
      "shard_48342 loaded\n",
      "shard_28664 loaded\n",
      "shard_13546 loaded\n",
      "shard_32776 loaded\n",
      "shard_10035 loaded\n",
      "shard_3502 loaded\n",
      "shard_15517 loaded\n",
      "shard_18341 loaded\n",
      "shard_4893 loaded\n",
      "shard_32607 loaded\n",
      "shard_34411 loaded\n",
      "shard_11050 loaded\n",
      "shard_7419 loaded\n",
      "shard_26329 loaded\n",
      "shard_35645 loaded\n",
      "shard_27073 loaded\n",
      "shard_27263 loaded\n",
      "shard_29222 loaded\n",
      "shard_43115 loaded\n",
      "shard_9640 loaded\n",
      "shard_7732 loaded\n",
      "shard_20580 loaded\n",
      "shard_48134 loaded\n",
      "shard_30531 loaded\n",
      "shard_6930 loaded\n",
      "shard_6094 loaded\n",
      "shard_42200 loaded\n",
      "shard_39587 loaded\n",
      "shard_10642 loaded\n",
      "shard_41729 loaded\n",
      "shard_115 loaded\n",
      "shard_27254 loaded\n",
      "shard_35166 loaded\n",
      "shard_43932 loaded\n",
      "shard_36108 loaded\n",
      "shard_48627 loaded\n",
      "shard_32535 loaded\n",
      "shard_22329 loaded\n",
      "shard_41136 loaded\n",
      "shard_42588 loaded\n",
      "shard_46682 loaded\n",
      "shard_11612 loaded\n",
      "shard_29883 loaded\n",
      "shard_4634 loaded\n",
      "shard_46505 loaded\n",
      "shard_9480 loaded\n",
      "shard_9403 loaded\n",
      "shard_16958 loaded\n",
      "shard_25911 loaded\n",
      "shard_3838 loaded\n",
      "shard_38172 loaded\n",
      "shard_36160 loaded\n",
      "shard_4135 loaded\n",
      "shard_14234 loaded\n",
      "shard_31559 loaded\n",
      "shard_18202 loaded\n",
      "shard_24346 loaded\n",
      "shard_20086 loaded\n",
      "shard_18891 loaded\n",
      "shard_13315 loaded\n",
      "shard_31303 loaded\n",
      "shard_17493 loaded\n",
      "shard_7740 loaded\n",
      "shard_19871 loaded\n",
      "shard_20142 loaded\n",
      "shard_40268 loaded\n",
      "shard_41166 loaded\n",
      "shard_23928 loaded\n",
      "shard_35033 loaded\n",
      "shard_48417 loaded\n",
      "shard_42844 loaded\n",
      "shard_30259 loaded\n",
      "shard_11191 loaded\n",
      "shard_41728 loaded\n",
      "shard_31311 loaded\n",
      "shard_2254 loaded\n",
      "shard_10867 loaded\n",
      "shard_20617 loaded\n",
      "shard_41137 loaded\n",
      "shard_7762 loaded\n",
      "shard_44006 loaded\n",
      "shard_25555 loaded\n",
      "shard_23655 loaded\n",
      "shard_15279 loaded\n",
      "shard_37956 loaded\n",
      "shard_47366 loaded\n",
      "shard_39371 loaded\n",
      "shard_38120 loaded\n",
      "shard_44341 loaded\n",
      "shard_25112 loaded\n",
      "shard_29759 loaded\n",
      "shard_34071 loaded\n",
      "shard_5191 loaded\n",
      "shard_2527 loaded\n",
      "shard_11576 loaded\n",
      "shard_25030 loaded\n",
      "shard_33459 loaded\n",
      "shard_39067 loaded\n",
      "shard_4170 loaded\n",
      "shard_9293 loaded\n",
      "shard_25697 loaded\n",
      "shard_49705 loaded\n",
      "shard_2013 loaded\n",
      "shard_49958 loaded\n",
      "shard_28081 loaded\n",
      "shard_6675 loaded\n",
      "shard_10370 loaded\n",
      "shard_1563 loaded\n",
      "shard_38673 loaded\n",
      "shard_19404 loaded\n",
      "shard_35547 loaded\n",
      "shard_13067 loaded\n",
      "shard_26022 loaded\n",
      "shard_41685 loaded\n",
      "shard_37266 loaded\n",
      "shard_35648 loaded\n",
      "shard_49120 loaded\n",
      "shard_5213 loaded\n",
      "shard_41629 loaded\n",
      "shard_30145 loaded\n",
      "shard_1173 loaded\n",
      "shard_41347 loaded\n",
      "shard_36123 loaded\n",
      "shard_37985 loaded\n",
      "shard_44604 loaded\n",
      "shard_42930 loaded\n",
      "shard_34785 loaded\n",
      "shard_14442 loaded\n",
      "shard_39138 loaded\n",
      "shard_31969 loaded\n",
      "shard_31800 loaded\n",
      "shard_10168 loaded\n",
      "shard_38905 loaded\n",
      "shard_34732 loaded\n",
      "shard_29664 loaded\n",
      "shard_31287 loaded\n",
      "shard_23902 loaded\n",
      "shard_29403 loaded\n",
      "shard_15826 loaded\n",
      "shard_26650 loaded\n",
      "shard_29407 loaded\n",
      "shard_21649 loaded\n",
      "shard_12637 loaded\n",
      "shard_24206 loaded\n",
      "shard_25565 loaded\n",
      "shard_29130 loaded\n",
      "shard_22358 loaded\n",
      "shard_698 loaded\n",
      "shard_28591 loaded\n",
      "shard_46953 loaded\n",
      "shard_10717 loaded\n",
      "shard_40099 loaded\n",
      "shard_15142 loaded\n",
      "shard_42378 loaded\n",
      "shard_35600 loaded\n",
      "shard_7410 loaded\n",
      "shard_47117 loaded\n",
      "shard_45511 loaded\n",
      "shard_25242 loaded\n",
      "shard_46667 loaded\n",
      "shard_7198 loaded\n",
      "shard_22558 loaded\n",
      "shard_9825 loaded\n",
      "shard_37151 loaded\n",
      "shard_25431 loaded\n",
      "shard_11506 loaded\n",
      "shard_9966 loaded\n",
      "shard_4377 loaded\n",
      "shard_45566 loaded\n",
      "shard_49664 loaded\n",
      "shard_8703 loaded\n",
      "shard_30683 loaded\n",
      "shard_42151 loaded\n",
      "shard_27221 loaded\n",
      "shard_28601 loaded\n",
      "shard_49070 loaded\n",
      "shard_18829 loaded\n",
      "shard_24467 loaded\n",
      "shard_40000 loaded\n",
      "shard_24902 loaded\n",
      "shard_32226 loaded\n",
      "shard_16722 loaded\n",
      "shard_38777 loaded\n",
      "shard_6252 loaded\n",
      "shard_17592 loaded\n",
      "shard_35650 loaded\n",
      "shard_47527 loaded\n",
      "shard_46206 loaded\n",
      "shard_22348 loaded\n",
      "shard_11837 loaded\n",
      "shard_37830 loaded\n",
      "shard_21291 loaded\n",
      "shard_35821 loaded\n",
      "shard_27390 loaded\n",
      "shard_48715 loaded\n",
      "shard_568 loaded\n",
      "shard_34679 loaded\n",
      "shard_8004 loaded\n",
      "shard_44956 loaded\n",
      "shard_47093 loaded\n",
      "shard_23448 loaded\n",
      "shard_45376 loaded\n",
      "shard_36143 loaded\n",
      "shard_40236 loaded\n",
      "shard_15693 loaded\n",
      "shard_24293 loaded\n",
      "shard_6110 loaded\n",
      "shard_5177 loaded\n",
      "shard_33380 loaded\n",
      "shard_514 loaded\n",
      "shard_40615 loaded\n",
      "shard_46419 loaded\n",
      "shard_48413 loaded\n",
      "shard_831 loaded\n",
      "shard_38896 loaded\n",
      "shard_2474 loaded\n",
      "shard_12898 loaded\n",
      "shard_33275 loaded\n",
      "shard_15215 loaded\n",
      "shard_15963 loaded\n",
      "shard_37687 loaded\n",
      "shard_16975 loaded\n",
      "shard_6178 loaded\n",
      "shard_14320 loaded\n",
      "shard_17524 loaded\n",
      "shard_48892 loaded\n",
      "shard_41425 loaded\n",
      "shard_37127 loaded\n",
      "shard_31149 loaded\n",
      "shard_49793 loaded\n",
      "shard_29212 loaded\n",
      "shard_33432 loaded\n",
      "shard_1201 loaded\n",
      "shard_48936 loaded\n",
      "shard_21749 loaded\n",
      "shard_47670 loaded\n",
      "shard_23634 loaded\n",
      "shard_6788 loaded\n",
      "shard_19846 loaded\n",
      "shard_1579 loaded\n",
      "shard_23939 loaded\n",
      "shard_111 loaded\n",
      "shard_30888 loaded\n",
      "shard_35877 loaded\n",
      "shard_6425 loaded\n",
      "shard_8610 loaded\n",
      "shard_31488 loaded\n",
      "shard_2707 loaded\n",
      "shard_33330 loaded\n",
      "shard_42204 loaded\n",
      "shard_4252 loaded\n",
      "shard_43718 loaded\n",
      "shard_33908 loaded\n",
      "shard_34285 loaded\n",
      "shard_17094 loaded\n",
      "shard_21559 loaded\n",
      "shard_49903 loaded\n",
      "shard_40435 loaded\n",
      "shard_45157 loaded\n",
      "shard_34597 loaded\n",
      "shard_1896 loaded\n",
      "shard_1961 loaded\n",
      "shard_24506 loaded\n",
      "shard_11351 loaded\n",
      "shard_28494 loaded\n",
      "shard_40820 loaded\n",
      "shard_33514 loaded\n",
      "shard_41799 loaded\n",
      "shard_9341 loaded\n",
      "shard_11494 loaded\n",
      "shard_30523 loaded\n",
      "shard_44967 loaded\n",
      "shard_32398 loaded\n",
      "shard_44995 loaded\n",
      "shard_42148 loaded\n",
      "shard_2862 loaded\n",
      "shard_9961 loaded\n",
      "shard_9654 loaded\n",
      "shard_27511 loaded\n",
      "shard_6390 loaded\n",
      "shard_29761 loaded\n",
      "shard_17631 loaded\n",
      "shard_27695 loaded\n",
      "shard_46587 loaded\n",
      "shard_24764 loaded\n",
      "shard_32320 loaded\n",
      "shard_13240 loaded\n",
      "shard_40129 loaded\n",
      "shard_23897 loaded\n",
      "shard_40220 loaded\n",
      "shard_18926 loaded\n",
      "shard_47739 loaded\n",
      "shard_47839 loaded\n",
      "shard_21359 loaded\n",
      "shard_42136 loaded\n",
      "shard_3827 loaded\n",
      "shard_14438 loaded\n",
      "shard_14447 loaded\n",
      "shard_49491 loaded\n",
      "shard_32783 loaded\n",
      "shard_21191 loaded\n",
      "shard_17187 loaded\n",
      "shard_49384 loaded\n",
      "shard_42399 loaded\n",
      "shard_20537 loaded\n",
      "shard_4112 loaded\n",
      "shard_12407 loaded\n",
      "shard_24736 loaded\n",
      "shard_46421 loaded\n",
      "shard_309 loaded\n",
      "shard_15578 loaded\n",
      "shard_37289 loaded\n",
      "shard_1293 loaded\n",
      "shard_23409 loaded\n",
      "shard_26457 loaded\n",
      "shard_1256 loaded\n",
      "shard_18871 loaded\n",
      "shard_7671 loaded\n",
      "shard_44739 loaded\n",
      "shard_2423 loaded\n",
      "shard_9333 loaded\n",
      "shard_39750 loaded\n",
      "shard_25671 loaded\n",
      "shard_3771 loaded\n",
      "shard_8315 loaded\n",
      "shard_22804 loaded\n",
      "shard_22540 loaded\n",
      "shard_48238 loaded\n",
      "shard_26810 loaded\n",
      "shard_37284 loaded\n",
      "shard_4511 loaded\n",
      "shard_38002 loaded\n",
      "shard_48821 loaded\n",
      "shard_34804 loaded\n",
      "shard_10183 loaded\n",
      "shard_18038 loaded\n",
      "shard_32279 loaded\n",
      "shard_20774 loaded\n",
      "shard_36282 loaded\n",
      "shard_42440 loaded\n",
      "shard_39378 loaded\n",
      "shard_20240 loaded\n",
      "shard_21017 loaded\n",
      "shard_34764 loaded\n",
      "shard_42841 loaded\n",
      "shard_41522 loaded\n",
      "shard_17733 loaded\n",
      "shard_29196 loaded\n",
      "shard_29860 loaded\n",
      "shard_29721 loaded\n",
      "shard_41823 loaded\n",
      "shard_9608 loaded\n",
      "shard_40950 loaded\n",
      "shard_13072 loaded\n",
      "shard_22944 loaded\n",
      "shard_38566 loaded\n",
      "shard_12402 loaded\n",
      "shard_27567 loaded\n",
      "shard_6448 loaded\n",
      "shard_42953 loaded\n",
      "shard_20576 loaded\n",
      "shard_35509 loaded\n",
      "shard_27913 loaded\n",
      "shard_8052 loaded\n",
      "shard_19787 loaded\n",
      "shard_34174 loaded\n",
      "shard_23138 loaded\n",
      "shard_43531 loaded\n",
      "shard_33117 loaded\n",
      "shard_4682 loaded\n",
      "shard_21990 loaded\n",
      "shard_5080 loaded\n",
      "shard_5383 loaded\n",
      "shard_14269 loaded\n",
      "shard_38855 loaded\n",
      "shard_34306 loaded\n",
      "shard_27746 loaded\n",
      "shard_8363 loaded\n",
      "shard_43533 loaded\n",
      "shard_30543 loaded\n",
      "shard_47432 loaded\n",
      "shard_48548 loaded\n",
      "shard_42892 loaded\n",
      "shard_2946 loaded\n",
      "shard_285 loaded\n",
      "shard_38806 loaded\n",
      "shard_33393 loaded\n",
      "shard_9471 loaded\n",
      "shard_32069 loaded\n",
      "shard_35778 loaded\n",
      "shard_29727 loaded\n",
      "shard_24937 loaded\n",
      "shard_39405 loaded\n",
      "shard_8995 loaded\n",
      "shard_30286 loaded\n",
      "shard_4114 loaded\n",
      "shard_11968 loaded\n",
      "shard_32314 loaded\n",
      "shard_24678 loaded\n",
      "shard_4219 loaded\n",
      "shard_1196 loaded\n",
      "shard_6282 loaded\n",
      "shard_18831 loaded\n",
      "shard_49182 loaded\n",
      "shard_9455 loaded\n",
      "shard_18444 loaded\n",
      "shard_6069 loaded\n",
      "shard_47397 loaded\n",
      "shard_37453 loaded\n",
      "shard_15689 loaded\n",
      "shard_37081 loaded\n",
      "shard_344 loaded\n",
      "shard_38603 loaded\n",
      "shard_30378 loaded\n",
      "shard_40557 loaded\n",
      "shard_3182 loaded\n",
      "shard_10708 loaded\n",
      "shard_19566 loaded\n",
      "shard_13180 loaded\n",
      "shard_48073 loaded\n",
      "shard_43705 loaded\n",
      "shard_2413 loaded\n",
      "shard_3050 loaded\n",
      "shard_48851 loaded\n",
      "shard_28902 loaded\n",
      "shard_13472 loaded\n",
      "shard_5045 loaded\n",
      "shard_4316 loaded\n",
      "shard_523 loaded\n",
      "shard_11692 loaded\n",
      "shard_27568 loaded\n",
      "shard_5829 loaded\n",
      "shard_32259 loaded\n",
      "shard_17461 loaded\n",
      "shard_22532 loaded\n",
      "shard_13739 loaded\n",
      "shard_3274 loaded\n",
      "shard_20761 loaded\n",
      "shard_3972 loaded\n",
      "shard_15097 loaded\n",
      "shard_26964 loaded\n",
      "shard_38540 loaded\n",
      "shard_6331 loaded\n",
      "shard_45043 loaded\n",
      "shard_1700 loaded\n",
      "shard_34079 loaded\n",
      "shard_45251 loaded\n",
      "shard_7839 loaded\n",
      "shard_45413 loaded\n",
      "shard_25132 loaded\n",
      "shard_39055 loaded\n",
      "shard_49891 loaded\n",
      "shard_9941 loaded\n",
      "shard_41469 loaded\n",
      "shard_46894 loaded\n",
      "shard_5440 loaded\n",
      "shard_25055 loaded\n",
      "shard_49399 loaded\n",
      "shard_8544 loaded\n",
      "shard_32232 loaded\n",
      "shard_48900 loaded\n",
      "shard_40326 loaded\n",
      "shard_22653 loaded\n",
      "shard_7306 loaded\n",
      "shard_13326 loaded\n",
      "shard_21874 loaded\n",
      "shard_34627 loaded\n",
      "shard_32761 loaded\n",
      "shard_16091 loaded\n",
      "shard_16411 loaded\n",
      "shard_37950 loaded\n",
      "shard_12359 loaded\n",
      "shard_41287 loaded\n",
      "shard_7600 loaded\n",
      "shard_36849 loaded\n",
      "shard_40837 loaded\n",
      "shard_21528 loaded\n",
      "shard_35106 loaded\n",
      "shard_42424 loaded\n",
      "shard_34448 loaded\n",
      "shard_30549 loaded\n",
      "shard_12373 loaded\n",
      "shard_11383 loaded\n",
      "shard_8362 loaded\n",
      "shard_43878 loaded\n",
      "shard_1145 loaded\n",
      "shard_3156 loaded\n",
      "shard_28784 loaded\n",
      "shard_15321 loaded\n",
      "shard_24985 loaded\n",
      "shard_3245 loaded\n",
      "shard_2899 loaded\n",
      "shard_16412 loaded\n",
      "shard_37455 loaded\n",
      "shard_22560 loaded\n",
      "shard_46932 loaded\n",
      "shard_8133 loaded\n",
      "shard_13685 loaded\n",
      "shard_18838 loaded\n",
      "shard_18455 loaded\n",
      "shard_16857 loaded\n",
      "shard_35895 loaded\n",
      "shard_21384 loaded\n",
      "shard_37684 loaded\n",
      "shard_42730 loaded\n",
      "shard_806 loaded\n",
      "shard_8828 loaded\n",
      "shard_35933 loaded\n",
      "shard_44579 loaded\n",
      "shard_6800 loaded\n",
      "shard_26623 loaded\n",
      "shard_20979 loaded\n",
      "shard_13717 loaded\n",
      "shard_12272 loaded\n",
      "shard_5171 loaded\n",
      "shard_46397 loaded\n",
      "shard_4445 loaded\n",
      "shard_25426 loaded\n",
      "shard_41555 loaded\n",
      "shard_13808 loaded\n",
      "shard_38783 loaded\n",
      "shard_40034 loaded\n",
      "shard_13553 loaded\n",
      "shard_36614 loaded\n",
      "shard_4816 loaded\n",
      "shard_11209 loaded\n",
      "shard_11218 loaded\n",
      "shard_12049 loaded\n",
      "shard_27902 loaded\n",
      "shard_36447 loaded\n",
      "shard_19661 loaded\n",
      "shard_24451 loaded\n",
      "shard_26481 loaded\n",
      "shard_16322 loaded\n",
      "shard_28685 loaded\n",
      "shard_15176 loaded\n",
      "shard_29283 loaded\n",
      "shard_37654 loaded\n",
      "shard_42063 loaded\n",
      "shard_46048 loaded\n",
      "shard_23379 loaded\n",
      "shard_32943 loaded\n",
      "shard_13676 loaded\n",
      "shard_40826 loaded\n",
      "shard_48566 loaded\n",
      "shard_15912 loaded\n",
      "shard_19300 loaded\n",
      "shard_8882 loaded\n",
      "shard_10949 loaded\n",
      "shard_13855 loaded\n",
      "shard_41740 loaded\n",
      "shard_40793 loaded\n",
      "shard_39098 loaded\n",
      "shard_27638 loaded\n",
      "shard_7756 loaded\n",
      "shard_6465 loaded\n",
      "shard_17505 loaded\n",
      "shard_31994 loaded\n",
      "shard_6621 loaded\n",
      "shard_49506 loaded\n",
      "shard_39172 loaded\n",
      "shard_47593 loaded\n",
      "shard_9689 loaded\n",
      "shard_37723 loaded\n",
      "shard_37819 loaded\n",
      "shard_35022 loaded\n",
      "shard_13926 loaded\n",
      "shard_43578 loaded\n",
      "shard_49098 loaded\n",
      "shard_39482 loaded\n",
      "shard_45638 loaded\n",
      "shard_22875 loaded\n",
      "shard_18370 loaded\n",
      "shard_24479 loaded\n",
      "shard_14163 loaded\n",
      "shard_16608 loaded\n",
      "shard_4385 loaded\n",
      "shard_37994 loaded\n",
      "shard_33051 loaded\n",
      "shard_31637 loaded\n",
      "shard_5702 loaded\n",
      "shard_19676 loaded\n",
      "shard_34188 loaded\n",
      "shard_47170 loaded\n",
      "shard_11278 loaded\n",
      "shard_49541 loaded\n",
      "shard_9763 loaded\n",
      "shard_976 loaded\n",
      "shard_5471 loaded\n",
      "shard_37747 loaded\n",
      "shard_37826 loaded\n",
      "shard_35773 loaded\n",
      "shard_26219 loaded\n",
      "shard_274 loaded\n",
      "shard_42536 loaded\n",
      "shard_9815 loaded\n",
      "shard_14364 loaded\n",
      "shard_20995 loaded\n",
      "shard_31989 loaded\n",
      "shard_9781 loaded\n",
      "shard_15229 loaded\n",
      "shard_48902 loaded\n",
      "shard_31371 loaded\n",
      "shard_21072 loaded\n",
      "shard_25023 loaded\n",
      "shard_46696 loaded\n",
      "shard_14322 loaded\n",
      "shard_932 loaded\n",
      "shard_29908 loaded\n",
      "shard_12129 loaded\n",
      "shard_37491 loaded\n",
      "shard_19943 loaded\n",
      "shard_34591 loaded\n",
      "shard_42438 loaded\n",
      "shard_37552 loaded\n",
      "shard_7906 loaded\n",
      "shard_29993 loaded\n",
      "shard_17516 loaded\n",
      "shard_5161 loaded\n",
      "shard_39224 loaded\n",
      "shard_23877 loaded\n",
      "shard_47937 loaded\n",
      "shard_35629 loaded\n",
      "shard_3059 loaded\n",
      "shard_37302 loaded\n",
      "shard_41643 loaded\n",
      "shard_25121 loaded\n",
      "shard_48953 loaded\n",
      "shard_15503 loaded\n",
      "shard_17026 loaded\n",
      "shard_40886 loaded\n",
      "shard_44206 loaded\n",
      "shard_46310 loaded\n",
      "shard_3389 loaded\n",
      "shard_25518 loaded\n",
      "shard_8840 loaded\n",
      "shard_1154 loaded\n",
      "shard_22537 loaded\n",
      "shard_22850 loaded\n",
      "shard_21530 loaded\n",
      "shard_45768 loaded\n",
      "shard_41358 loaded\n",
      "shard_44848 loaded\n",
      "shard_47394 loaded\n",
      "shard_36701 loaded\n",
      "shard_41701 loaded\n",
      "shard_42031 loaded\n",
      "shard_39407 loaded\n",
      "shard_13858 loaded\n",
      "shard_32217 loaded\n",
      "shard_1825 loaded\n",
      "shard_6024 loaded\n",
      "shard_49773 loaded\n",
      "shard_37646 loaded\n",
      "shard_32713 loaded\n",
      "shard_22026 loaded\n",
      "shard_11456 loaded\n",
      "shard_24958 loaded\n",
      "shard_4852 loaded\n",
      "shard_44159 loaded\n",
      "shard_8658 loaded\n",
      "shard_34463 loaded\n",
      "shard_215 loaded\n",
      "shard_15852 loaded\n",
      "shard_7236 loaded\n",
      "shard_23561 loaded\n",
      "shard_40958 loaded\n",
      "shard_29536 loaded\n",
      "shard_48224 loaded\n",
      "shard_13243 loaded\n",
      "shard_21514 loaded\n",
      "shard_9696 loaded\n",
      "shard_47372 loaded\n",
      "shard_14594 loaded\n",
      "shard_13311 loaded\n",
      "shard_19620 loaded\n",
      "shard_13263 loaded\n",
      "shard_43709 loaded\n",
      "shard_15775 loaded\n",
      "shard_3117 loaded\n",
      "shard_21348 loaded\n",
      "shard_6801 loaded\n",
      "shard_19470 loaded\n",
      "shard_4694 loaded\n",
      "shard_33204 loaded\n",
      "shard_39852 loaded\n",
      "shard_43605 loaded\n",
      "shard_31468 loaded\n",
      "shard_19035 loaded\n",
      "shard_21862 loaded\n",
      "shard_16217 loaded\n",
      "shard_7577 loaded\n",
      "shard_9542 loaded\n",
      "shard_15243 loaded\n",
      "shard_37939 loaded\n",
      "shard_5743 loaded\n",
      "shard_25821 loaded\n",
      "shard_19761 loaded\n",
      "shard_9167 loaded\n",
      "shard_30323 loaded\n",
      "shard_27132 loaded\n",
      "shard_42002 loaded\n",
      "shard_44435 loaded\n",
      "shard_2877 loaded\n",
      "shard_37172 loaded\n",
      "shard_6186 loaded\n",
      "shard_46852 loaded\n",
      "shard_28677 loaded\n",
      "shard_6848 loaded\n",
      "shard_16480 loaded\n",
      "shard_5658 loaded\n",
      "shard_39690 loaded\n",
      "shard_35856 loaded\n",
      "shard_19316 loaded\n",
      "shard_6613 loaded\n",
      "shard_29965 loaded\n",
      "shard_39402 loaded\n",
      "shard_3262 loaded\n",
      "shard_3958 loaded\n",
      "shard_5779 loaded\n",
      "shard_28167 loaded\n",
      "shard_49373 loaded\n",
      "shard_29280 loaded\n",
      "shard_37262 loaded\n",
      "shard_24086 loaded\n",
      "shard_6414 loaded\n",
      "shard_2123 loaded\n",
      "shard_48198 loaded\n",
      "shard_41449 loaded\n",
      "shard_34490 loaded\n",
      "shard_25267 loaded\n",
      "shard_17166 loaded\n",
      "shard_41237 loaded\n",
      "shard_14423 loaded\n",
      "shard_17798 loaded\n",
      "shard_6773 loaded\n",
      "shard_11728 loaded\n",
      "shard_42331 loaded\n",
      "shard_47902 loaded\n",
      "shard_42 loaded\n",
      "shard_17320 loaded\n",
      "shard_2246 loaded\n",
      "shard_40451 loaded\n",
      "shard_37124 loaded\n",
      "shard_25432 loaded\n",
      "shard_46751 loaded\n",
      "shard_12585 loaded\n",
      "shard_9111 loaded\n",
      "shard_41811 loaded\n",
      "shard_47229 loaded\n",
      "shard_27332 loaded\n",
      "shard_4225 loaded\n",
      "shard_7289 loaded\n",
      "shard_31082 loaded\n",
      "shard_23354 loaded\n",
      "shard_39704 loaded\n",
      "shard_1339 loaded\n",
      "shard_10461 loaded\n",
      "shard_48113 loaded\n",
      "shard_16932 loaded\n",
      "shard_14777 loaded\n",
      "shard_40708 loaded\n",
      "shard_45604 loaded\n",
      "shard_17570 loaded\n",
      "shard_47435 loaded\n",
      "shard_20754 loaded\n",
      "shard_11946 loaded\n",
      "shard_46566 loaded\n",
      "shard_10795 loaded\n",
      "shard_37228 loaded\n",
      "shard_44505 loaded\n",
      "shard_17401 loaded\n",
      "shard_40918 loaded\n",
      "shard_1422 loaded\n",
      "shard_15561 loaded\n",
      "shard_27663 loaded\n",
      "shard_39112 loaded\n",
      "shard_38154 loaded\n",
      "shard_19085 loaded\n",
      "shard_11994 loaded\n",
      "shard_32141 loaded\n",
      "shard_15821 loaded\n",
      "shard_40640 loaded\n",
      "shard_14482 loaded\n",
      "shard_41238 loaded\n",
      "shard_10651 loaded\n",
      "shard_7882 loaded\n",
      "shard_4356 loaded\n",
      "shard_37137 loaded\n",
      "shard_24053 loaded\n",
      "shard_14926 loaded\n",
      "shard_12298 loaded\n",
      "shard_16237 loaded\n",
      "shard_30730 loaded\n",
      "shard_19635 loaded\n",
      "shard_45616 loaded\n",
      "shard_49383 loaded\n",
      "shard_44307 loaded\n",
      "shard_23806 loaded\n",
      "shard_22415 loaded\n",
      "shard_17855 loaded\n",
      "shard_46059 loaded\n",
      "shard_8898 loaded\n",
      "shard_15025 loaded\n",
      "shard_32206 loaded\n",
      "shard_16594 loaded\n",
      "shard_1898 loaded\n",
      "shard_48997 loaded\n",
      "shard_17346 loaded\n",
      "shard_7860 loaded\n",
      "shard_10955 loaded\n",
      "shard_16689 loaded\n",
      "shard_37379 loaded\n",
      "shard_46301 loaded\n",
      "shard_36826 loaded\n",
      "shard_35859 loaded\n",
      "shard_32090 loaded\n",
      "shard_45504 loaded\n",
      "shard_17810 loaded\n",
      "shard_43636 loaded\n",
      "shard_11947 loaded\n",
      "shard_21406 loaded\n",
      "shard_45217 loaded\n",
      "shard_13305 loaded\n",
      "shard_24051 loaded\n",
      "shard_1856 loaded\n",
      "shard_37655 loaded\n",
      "shard_16269 loaded\n",
      "shard_18827 loaded\n",
      "shard_360 loaded\n",
      "shard_2726 loaded\n",
      "shard_20861 loaded\n",
      "shard_17425 loaded\n",
      "shard_6840 loaded\n",
      "shard_7501 loaded\n",
      "shard_31340 loaded\n",
      "shard_22533 loaded\n",
      "shard_2062 loaded\n",
      "shard_44734 loaded\n",
      "shard_6379 loaded\n",
      "shard_16327 loaded\n",
      "shard_18042 loaded\n",
      "shard_49651 loaded\n",
      "shard_41769 loaded\n",
      "shard_9084 loaded\n",
      "shard_4761 loaded\n",
      "shard_34134 loaded\n",
      "shard_30677 loaded\n",
      "shard_16926 loaded\n",
      "shard_7351 loaded\n",
      "shard_22268 loaded\n",
      "shard_7541 loaded\n",
      "shard_45287 loaded\n",
      "shard_14560 loaded\n",
      "shard_29153 loaded\n",
      "shard_44272 loaded\n",
      "shard_25520 loaded\n",
      "shard_9874 loaded\n",
      "shard_43977 loaded\n",
      "shard_31591 loaded\n",
      "shard_18471 loaded\n",
      "shard_48195 loaded\n",
      "shard_33430 loaded\n",
      "shard_24676 loaded\n",
      "shard_44805 loaded\n",
      "shard_2534 loaded\n",
      "shard_12828 loaded\n",
      "shard_20129 loaded\n",
      "shard_31644 loaded\n",
      "shard_47570 loaded\n",
      "shard_42065 loaded\n",
      "shard_16874 loaded\n",
      "shard_21198 loaded\n",
      "shard_34774 loaded\n",
      "shard_43958 loaded\n",
      "shard_3393 loaded\n",
      "shard_3744 loaded\n",
      "shard_11457 loaded\n",
      "shard_39600 loaded\n",
      "shard_7752 loaded\n",
      "shard_6644 loaded\n",
      "shard_48300 loaded\n",
      "shard_12141 loaded\n",
      "shard_37719 loaded\n",
      "shard_6649 loaded\n",
      "shard_16225 loaded\n",
      "shard_28709 loaded\n",
      "shard_24534 loaded\n",
      "shard_9229 loaded\n",
      "shard_29949 loaded\n",
      "shard_25649 loaded\n",
      "shard_1566 loaded\n",
      "shard_8858 loaded\n",
      "shard_23660 loaded\n",
      "shard_2496 loaded\n",
      "shard_2427 loaded\n",
      "shard_40269 loaded\n",
      "shard_24410 loaded\n",
      "shard_36062 loaded\n",
      "shard_11857 loaded\n",
      "shard_40482 loaded\n",
      "shard_24913 loaded\n",
      "shard_3557 loaded\n",
      "shard_5815 loaded\n",
      "shard_18653 loaded\n",
      "shard_47568 loaded\n",
      "shard_47528 loaded\n",
      "shard_19762 loaded\n",
      "shard_22238 loaded\n",
      "shard_45743 loaded\n",
      "shard_45780 loaded\n",
      "shard_32633 loaded\n",
      "shard_30353 loaded\n",
      "shard_17145 loaded\n",
      "shard_45984 loaded\n",
      "shard_20254 loaded\n",
      "shard_27623 loaded\n",
      "shard_11261 loaded\n",
      "shard_34731 loaded\n",
      "shard_7307 loaded\n",
      "shard_36328 loaded\n",
      "shard_1580 loaded\n",
      "shard_22855 loaded\n",
      "shard_45038 loaded\n",
      "shard_10271 loaded\n",
      "shard_47620 loaded\n",
      "shard_46255 loaded\n",
      "shard_7962 loaded\n",
      "shard_3923 loaded\n",
      "shard_28603 loaded\n",
      "shard_49843 loaded\n",
      "shard_43760 loaded\n",
      "shard_12812 loaded\n",
      "shard_1022 loaded\n",
      "shard_19345 loaded\n",
      "shard_4833 loaded\n",
      "shard_7010 loaded\n",
      "shard_12878 loaded\n",
      "shard_45725 loaded\n",
      "shard_35433 loaded\n",
      "shard_26115 loaded\n",
      "shard_42643 loaded\n",
      "shard_37522 loaded\n",
      "shard_43730 loaded\n",
      "shard_3792 loaded\n",
      "shard_27945 loaded\n",
      "shard_3412 loaded\n",
      "shard_47901 loaded\n",
      "shard_20571 loaded\n",
      "shard_1064 loaded\n",
      "shard_461 loaded\n",
      "shard_1134 loaded\n",
      "shard_9693 loaded\n",
      "shard_28929 loaded\n",
      "shard_37358 loaded\n",
      "shard_31096 loaded\n",
      "shard_19692 loaded\n",
      "shard_37987 loaded\n",
      "shard_2015 loaded\n",
      "shard_12308 loaded\n",
      "shard_47153 loaded\n",
      "shard_3852 loaded\n",
      "shard_5430 loaded\n",
      "shard_20420 loaded\n",
      "shard_27903 loaded\n",
      "shard_27496 loaded\n",
      "shard_49081 loaded\n",
      "shard_4558 loaded\n",
      "shard_26729 loaded\n",
      "shard_34086 loaded\n",
      "shard_18609 loaded\n",
      "shard_7997 loaded\n",
      "shard_1122 loaded\n",
      "shard_35374 loaded\n",
      "shard_5209 loaded\n",
      "shard_8879 loaded\n",
      "shard_19406 loaded\n",
      "shard_17650 loaded\n",
      "shard_21682 loaded\n",
      "shard_23547 loaded\n",
      "shard_18138 loaded\n",
      "shard_14156 loaded\n",
      "shard_40314 loaded\n",
      "shard_31703 loaded\n",
      "shard_1352 loaded\n",
      "shard_26128 loaded\n",
      "shard_33737 loaded\n",
      "shard_46795 loaded\n",
      "shard_1118 loaded\n",
      "shard_4765 loaded\n",
      "shard_42663 loaded\n",
      "shard_12030 loaded\n",
      "shard_19427 loaded\n",
      "shard_33877 loaded\n",
      "shard_8936 loaded\n",
      "shard_46089 loaded\n",
      "shard_28700 loaded\n",
      "shard_34173 loaded\n",
      "shard_46745 loaded\n",
      "shard_40735 loaded\n",
      "shard_40069 loaded\n",
      "shard_34550 loaded\n",
      "shard_49193 loaded\n",
      "shard_30383 loaded\n",
      "shard_3624 loaded\n",
      "shard_43054 loaded\n",
      "shard_17071 loaded\n",
      "shard_13705 loaded\n",
      "shard_34347 loaded\n",
      "shard_9473 loaded\n",
      "shard_27570 loaded\n",
      "shard_30924 loaded\n",
      "shard_26583 loaded\n",
      "shard_21249 loaded\n",
      "shard_3616 loaded\n",
      "shard_26722 loaded\n",
      "shard_48035 loaded\n",
      "shard_19703 loaded\n",
      "shard_42220 loaded\n",
      "shard_35140 loaded\n",
      "shard_9263 loaded\n",
      "shard_43886 loaded\n",
      "shard_48599 loaded\n",
      "shard_4628 loaded\n",
      "shard_31821 loaded\n",
      "shard_34154 loaded\n",
      "shard_35791 loaded\n",
      "shard_3471 loaded\n",
      "shard_36170 loaded\n",
      "shard_6568 loaded\n",
      "shard_45222 loaded\n",
      "shard_16635 loaded\n",
      "shard_3566 loaded\n",
      "shard_7281 loaded\n",
      "shard_31294 loaded\n",
      "shard_38307 loaded\n",
      "shard_42296 loaded\n",
      "shard_45930 loaded\n",
      "shard_35879 loaded\n",
      "shard_31319 loaded\n",
      "shard_45064 loaded\n",
      "shard_38685 loaded\n",
      "shard_30752 loaded\n",
      "shard_41617 loaded\n",
      "shard_21629 loaded\n",
      "shard_42282 loaded\n",
      "shard_11449 loaded\n",
      "shard_17605 loaded\n",
      "shard_34124 loaded\n",
      "shard_22818 loaded\n",
      "shard_14892 loaded\n",
      "shard_21560 loaded\n",
      "shard_34085 loaded\n",
      "shard_14369 loaded\n",
      "shard_23247 loaded\n",
      "shard_20085 loaded\n",
      "shard_10398 loaded\n",
      "shard_15764 loaded\n",
      "shard_2810 loaded\n",
      "shard_766 loaded\n",
      "shard_36233 loaded\n",
      "shard_27185 loaded\n",
      "shard_14807 loaded\n",
      "shard_8112 loaded\n",
      "shard_44156 loaded\n",
      "shard_167 loaded\n",
      "shard_23765 loaded\n",
      "shard_28933 loaded\n",
      "shard_25682 loaded\n",
      "shard_18865 loaded\n",
      "shard_7662 loaded\n",
      "shard_25200 loaded\n",
      "shard_13613 loaded\n",
      "shard_37376 loaded\n",
      "shard_8613 loaded\n",
      "shard_25829 loaded\n",
      "shard_6192 loaded\n",
      "shard_14326 loaded\n",
      "shard_27843 loaded\n",
      "shard_41897 loaded\n",
      "shard_32508 loaded\n",
      "shard_11849 loaded\n",
      "shard_12430 loaded\n",
      "shard_46940 loaded\n",
      "shard_45337 loaded\n",
      "shard_14773 loaded\n",
      "shard_27588 loaded\n",
      "shard_17165 loaded\n",
      "shard_8069 loaded\n",
      "shard_38923 loaded\n",
      "shard_47502 loaded\n",
      "shard_4051 loaded\n",
      "shard_24024 loaded\n",
      "shard_7766 loaded\n",
      "shard_37809 loaded\n",
      "shard_11648 loaded\n",
      "shard_41406 loaded\n",
      "shard_37889 loaded\n",
      "shard_30623 loaded\n",
      "shard_24986 loaded\n",
      "shard_46426 loaded\n",
      "shard_41809 loaded\n",
      "shard_10155 loaded\n",
      "shard_38315 loaded\n",
      "shard_23727 loaded\n",
      "shard_36538 loaded\n",
      "shard_12940 loaded\n",
      "shard_44434 loaded\n",
      "shard_39889 loaded\n",
      "shard_22658 loaded\n",
      "shard_46995 loaded\n",
      "shard_43944 loaded\n",
      "shard_36154 loaded\n",
      "shard_20547 loaded\n",
      "shard_47485 loaded\n",
      "shard_42074 loaded\n",
      "shard_20366 loaded\n",
      "shard_30308 loaded\n",
      "shard_40138 loaded\n",
      "shard_678 loaded\n",
      "shard_45220 loaded\n",
      "shard_26171 loaded\n",
      "shard_4049 loaded\n",
      "shard_43613 loaded\n",
      "shard_25240 loaded\n",
      "shard_17990 loaded\n",
      "shard_35896 loaded\n",
      "shard_28568 loaded\n",
      "shard_48478 loaded\n",
      "shard_48764 loaded\n",
      "shard_23039 loaded\n",
      "shard_10500 loaded\n",
      "shard_26243 loaded\n",
      "shard_31158 loaded\n",
      "shard_34012 loaded\n",
      "shard_47716 loaded\n",
      "shard_8250 loaded\n",
      "shard_11974 loaded\n",
      "shard_12494 loaded\n",
      "shard_47785 loaded\n",
      "shard_25538 loaded\n",
      "shard_20843 loaded\n",
      "shard_45099 loaded\n",
      "shard_18910 loaded\n",
      "shard_14763 loaded\n",
      "shard_42832 loaded\n",
      "shard_33890 loaded\n",
      "shard_1940 loaded\n",
      "shard_9236 loaded\n",
      "shard_49204 loaded\n",
      "shard_15552 loaded\n",
      "shard_3788 loaded\n",
      "shard_24245 loaded\n",
      "shard_6647 loaded\n",
      "shard_34020 loaded\n",
      "shard_22009 loaded\n",
      "shard_6237 loaded\n",
      "shard_37712 loaded\n",
      "shard_47453 loaded\n",
      "shard_12225 loaded\n",
      "shard_40041 loaded\n",
      "shard_27379 loaded\n",
      "shard_35327 loaded\n",
      "shard_736 loaded\n",
      "shard_29878 loaded\n",
      "shard_37418 loaded\n",
      "shard_588 loaded\n",
      "shard_43983 loaded\n",
      "shard_2214 loaded\n",
      "shard_12471 loaded\n",
      "shard_41092 loaded\n",
      "shard_47346 loaded\n",
      "shard_35109 loaded\n",
      "shard_48875 loaded\n",
      "shard_44382 loaded\n",
      "shard_37945 loaded\n",
      "shard_49997 loaded\n",
      "shard_17348 loaded\n",
      "shard_23260 loaded\n",
      "shard_6782 loaded\n",
      "shard_12900 loaded\n",
      "shard_39344 loaded\n",
      "shard_24117 loaded\n",
      "shard_30218 loaded\n",
      "shard_46913 loaded\n",
      "shard_27926 loaded\n",
      "shard_41731 loaded\n",
      "shard_17898 loaded\n",
      "shard_3704 loaded\n",
      "shard_4174 loaded\n",
      "shard_35391 loaded\n",
      "shard_27752 loaded\n",
      "shard_7558 loaded\n",
      "shard_34185 loaded\n",
      "shard_46651 loaded\n",
      "shard_11152 loaded\n",
      "shard_16814 loaded\n",
      "shard_42038 loaded\n",
      "shard_15059 loaded\n",
      "shard_41573 loaded\n",
      "shard_26208 loaded\n",
      "shard_11584 loaded\n",
      "shard_28520 loaded\n",
      "shard_33711 loaded\n",
      "shard_30330 loaded\n",
      "shard_38039 loaded\n",
      "shard_20030 loaded\n",
      "shard_5879 loaded\n",
      "shard_9324 loaded\n",
      "shard_17326 loaded\n",
      "shard_37280 loaded\n",
      "shard_20331 loaded\n",
      "shard_38447 loaded\n",
      "shard_12992 loaded\n",
      "shard_34322 loaded\n",
      "shard_42899 loaded\n",
      "shard_20698 loaded\n",
      "shard_9414 loaded\n",
      "shard_26684 loaded\n",
      "shard_3878 loaded\n",
      "shard_49559 loaded\n",
      "shard_32617 loaded\n",
      "shard_32397 loaded\n",
      "shard_42253 loaded\n",
      "shard_8964 loaded\n",
      "shard_31013 loaded\n",
      "shard_7670 loaded\n",
      "shard_19665 loaded\n",
      "shard_9218 loaded\n",
      "shard_47040 loaded\n",
      "shard_12201 loaded\n",
      "shard_46884 loaded\n",
      "shard_38830 loaded\n",
      "shard_15705 loaded\n",
      "shard_44960 loaded\n",
      "shard_3761 loaded\n",
      "shard_23709 loaded\n",
      "shard_27054 loaded\n",
      "shard_33287 loaded\n",
      "shard_26977 loaded\n",
      "shard_22780 loaded\n",
      "shard_1373 loaded\n",
      "shard_16146 loaded\n",
      "shard_43859 loaded\n",
      "shard_9265 loaded\n",
      "shard_11675 loaded\n",
      "shard_45687 loaded\n",
      "shard_24314 loaded\n",
      "shard_24501 loaded\n",
      "shard_44697 loaded\n",
      "shard_919 loaded\n",
      "shard_27367 loaded\n",
      "shard_10846 loaded\n",
      "shard_2210 loaded\n",
      "shard_45014 loaded\n",
      "shard_48209 loaded\n",
      "shard_7414 loaded\n",
      "shard_29191 loaded\n",
      "shard_42013 loaded\n",
      "shard_9898 loaded\n",
      "shard_15376 loaded\n",
      "shard_24021 loaded\n",
      "shard_45976 loaded\n",
      "shard_9551 loaded\n",
      "shard_2449 loaded\n",
      "shard_41142 loaded\n",
      "shard_7037 loaded\n",
      "shard_20015 loaded\n",
      "shard_10382 loaded\n",
      "shard_44473 loaded\n",
      "shard_2504 loaded\n",
      "shard_33200 loaded\n",
      "shard_38267 loaded\n",
      "shard_46595 loaded\n",
      "shard_27350 loaded\n",
      "shard_10775 loaded\n",
      "shard_46458 loaded\n",
      "shard_12089 loaded\n",
      "shard_25920 loaded\n",
      "shard_27613 loaded\n",
      "shard_44731 loaded\n",
      "shard_1755 loaded\n",
      "shard_32068 loaded\n",
      "shard_40863 loaded\n",
      "shard_9944 loaded\n",
      "shard_26709 loaded\n",
      "shard_3358 loaded\n",
      "shard_32947 loaded\n",
      "shard_8049 loaded\n",
      "shard_49262 loaded\n",
      "shard_44336 loaded\n",
      "shard_38480 loaded\n",
      "shard_26332 loaded\n",
      "shard_44442 loaded\n",
      "shard_36219 loaded\n",
      "shard_20548 loaded\n",
      "shard_30467 loaded\n",
      "shard_11448 loaded\n",
      "shard_29998 loaded\n",
      "shard_43117 loaded\n",
      "shard_19980 loaded\n",
      "shard_41773 loaded\n",
      "shard_343 loaded\n",
      "shard_6497 loaded\n",
      "shard_47923 loaded\n",
      "shard_10574 loaded\n",
      "shard_5819 loaded\n",
      "shard_4060 loaded\n",
      "shard_35265 loaded\n",
      "shard_28852 loaded\n",
      "shard_12935 loaded\n",
      "shard_11935 loaded\n",
      "shard_4720 loaded\n",
      "shard_1308 loaded\n",
      "shard_43462 loaded\n",
      "shard_42526 loaded\n",
      "shard_42205 loaded\n",
      "shard_31428 loaded\n",
      "shard_46311 loaded\n",
      "shard_38476 loaded\n",
      "shard_29504 loaded\n",
      "shard_19725 loaded\n",
      "shard_18101 loaded\n",
      "shard_9328 loaded\n",
      "shard_21712 loaded\n",
      "shard_42371 loaded\n",
      "shard_39421 loaded\n",
      "shard_24349 loaded\n",
      "shard_40604 loaded\n",
      "shard_38611 loaded\n",
      "shard_18463 loaded\n",
      "shard_33282 loaded\n",
      "shard_8444 loaded\n",
      "shard_21472 loaded\n",
      "shard_49608 loaded\n",
      "shard_16143 loaded\n",
      "shard_1117 loaded\n",
      "shard_44917 loaded\n",
      "shard_29633 loaded\n",
      "shard_46560 loaded\n",
      "shard_15701 loaded\n",
      "shard_33795 loaded\n",
      "shard_26541 loaded\n",
      "shard_8518 loaded\n",
      "shard_25641 loaded\n",
      "shard_27275 loaded\n",
      "shard_40354 loaded\n",
      "shard_41375 loaded\n",
      "shard_29828 loaded\n",
      "shard_15652 loaded\n",
      "shard_38745 loaded\n",
      "shard_10481 loaded\n",
      "shard_21448 loaded\n",
      "shard_17218 loaded\n",
      "shard_28629 loaded\n",
      "shard_16081 loaded\n",
      "shard_45363 loaded\n",
      "shard_19471 loaded\n",
      "shard_34753 loaded\n",
      "shard_49382 loaded\n",
      "shard_8465 loaded\n",
      "shard_28342 loaded\n",
      "shard_19298 loaded\n",
      "shard_39769 loaded\n",
      "shard_49626 loaded\n",
      "shard_10524 loaded\n",
      "shard_11486 loaded\n",
      "shard_41374 loaded\n",
      "shard_41343 loaded\n",
      "shard_30197 loaded\n",
      "shard_33146 loaded\n",
      "shard_11186 loaded\n",
      "shard_49971 loaded\n",
      "shard_27958 loaded\n",
      "shard_760 loaded\n",
      "shard_44089 loaded\n",
      "shard_6434 loaded\n",
      "shard_21586 loaded\n",
      "shard_48012 loaded\n",
      "shard_28584 loaded\n",
      "shard_21524 loaded\n",
      "shard_36549 loaded\n",
      "shard_38284 loaded\n",
      "shard_15425 loaded\n",
      "shard_21485 loaded\n",
      "shard_3941 loaded\n",
      "shard_21236 loaded\n",
      "shard_624 loaded\n",
      "shard_8591 loaded\n",
      "shard_21674 loaded\n",
      "shard_9876 loaded\n",
      "shard_8406 loaded\n",
      "shard_12698 loaded\n",
      "shard_30123 loaded\n",
      "shard_3649 loaded\n",
      "shard_25458 loaded\n",
      "shard_7477 loaded\n",
      "shard_46677 loaded\n",
      "shard_42083 loaded\n",
      "shard_46794 loaded\n",
      "shard_11185 loaded\n",
      "shard_40070 loaded\n",
      "shard_21019 loaded\n",
      "shard_15889 loaded\n",
      "shard_30910 loaded\n",
      "shard_20935 loaded\n",
      "shard_4758 loaded\n",
      "shard_43022 loaded\n",
      "shard_26027 loaded\n",
      "shard_34436 loaded\n",
      "shard_25294 loaded\n",
      "shard_31007 loaded\n",
      "shard_30456 loaded\n",
      "shard_10145 loaded\n",
      "shard_35464 loaded\n",
      "shard_22949 loaded\n",
      "shard_48476 loaded\n",
      "shard_44319 loaded\n",
      "shard_6358 loaded\n",
      "shard_9017 loaded\n",
      "shard_22932 loaded\n",
      "shard_1390 loaded\n",
      "shard_45749 loaded\n",
      "shard_8945 loaded\n",
      "shard_43008 loaded\n",
      "shard_2536 loaded\n",
      "shard_49366 loaded\n",
      "shard_36142 loaded\n",
      "shard_15235 loaded\n",
      "shard_41609 loaded\n",
      "shard_3270 loaded\n",
      "shard_10757 loaded\n",
      "shard_15266 loaded\n",
      "shard_29770 loaded\n",
      "shard_13146 loaded\n",
      "shard_46436 loaded\n",
      "shard_22030 loaded\n",
      "shard_42154 loaded\n",
      "shard_30158 loaded\n",
      "shard_45647 loaded\n",
      "shard_25226 loaded\n",
      "shard_40639 loaded\n",
      "shard_12563 loaded\n",
      "shard_14434 loaded\n",
      "shard_20330 loaded\n",
      "shard_42363 loaded\n",
      "shard_49735 loaded\n",
      "shard_19770 loaded\n",
      "shard_2473 loaded\n",
      "shard_6846 loaded\n",
      "shard_24859 loaded\n",
      "shard_47928 loaded\n",
      "shard_4155 loaded\n",
      "shard_19971 loaded\n",
      "shard_30007 loaded\n",
      "shard_19768 loaded\n",
      "shard_24095 loaded\n",
      "shard_21083 loaded\n",
      "shard_36744 loaded\n",
      "shard_41813 loaded\n",
      "shard_24273 loaded\n",
      "shard_4984 loaded\n",
      "shard_19307 loaded\n",
      "shard_5891 loaded\n",
      "shard_41805 loaded\n",
      "shard_20228 loaded\n",
      "shard_10636 loaded\n",
      "shard_29355 loaded\n",
      "shard_37108 loaded\n",
      "shard_38010 loaded\n",
      "shard_21792 loaded\n",
      "shard_96 loaded\n",
      "shard_33917 loaded\n",
      "shard_46392 loaded\n",
      "shard_45238 loaded\n",
      "shard_32934 loaded\n",
      "shard_22748 loaded\n",
      "shard_46088 loaded\n",
      "shard_40842 loaded\n",
      "shard_38444 loaded\n",
      "shard_36136 loaded\n",
      "shard_48571 loaded\n",
      "shard_40272 loaded\n",
      "shard_16329 loaded\n",
      "shard_20701 loaded\n",
      "shard_15520 loaded\n",
      "shard_38409 loaded\n",
      "shard_44270 loaded\n",
      "shard_42114 loaded\n",
      "shard_16469 loaded\n",
      "shard_13115 loaded\n",
      "shard_30494 loaded\n",
      "shard_39791 loaded\n",
      "shard_21982 loaded\n",
      "shard_29954 loaded\n",
      "shard_47449 loaded\n",
      "shard_24696 loaded\n",
      "shard_8235 loaded\n",
      "shard_25652 loaded\n",
      "shard_32899 loaded\n",
      "shard_19574 loaded\n",
      "shard_2962 loaded\n",
      "shard_15563 loaded\n",
      "shard_22483 loaded\n",
      "shard_40434 loaded\n",
      "shard_45315 loaded\n",
      "shard_98 loaded\n",
      "shard_23558 loaded\n",
      "shard_46529 loaded\n",
      "shard_16122 loaded\n",
      "shard_36015 loaded\n",
      "shard_36284 loaded\n",
      "shard_33224 loaded\n",
      "shard_19088 loaded\n",
      "shard_25334 loaded\n",
      "shard_7610 loaded\n",
      "shard_14396 loaded\n",
      "shard_18737 loaded\n",
      "shard_47842 loaded\n",
      "shard_29085 loaded\n",
      "shard_6418 loaded\n",
      "shard_15894 loaded\n",
      "shard_35164 loaded\n",
      "shard_16828 loaded\n",
      "shard_15618 loaded\n",
      "shard_20854 loaded\n",
      "shard_29958 loaded\n",
      "shard_28753 loaded\n",
      "shard_5222 loaded\n",
      "shard_48025 loaded\n",
      "shard_33535 loaded\n",
      "shard_9725 loaded\n",
      "shard_49435 loaded\n",
      "shard_5259 loaded\n",
      "shard_8087 loaded\n",
      "shard_26818 loaded\n",
      "shard_47466 loaded\n",
      "shard_48175 loaded\n",
      "shard_518 loaded\n",
      "shard_31845 loaded\n",
      "shard_11216 loaded\n",
      "shard_37060 loaded\n",
      "shard_15210 loaded\n",
      "shard_1358 loaded\n",
      "shard_6889 loaded\n",
      "shard_32408 loaded\n",
      "shard_37401 loaded\n",
      "shard_34065 loaded\n",
      "shard_23656 loaded\n",
      "shard_42691 loaded\n",
      "shard_5194 loaded\n",
      "shard_22253 loaded\n",
      "shard_261 loaded\n",
      "shard_39900 loaded\n",
      "shard_11200 loaded\n",
      "shard_30472 loaded\n",
      "shard_36869 loaded\n",
      "shard_21542 loaded\n",
      "shard_48996 loaded\n",
      "shard_48544 loaded\n",
      "shard_31603 loaded\n",
      "shard_35755 loaded\n",
      "shard_41032 loaded\n",
      "shard_9180 loaded\n",
      "shard_37811 loaded\n",
      "shard_9486 loaded\n",
      "shard_11985 loaded\n",
      "shard_15841 loaded\n",
      "shard_35836 loaded\n",
      "shard_34083 loaded\n",
      "shard_7769 loaded\n",
      "shard_23521 loaded\n",
      "shard_43951 loaded\n",
      "shard_27385 loaded\n",
      "shard_7783 loaded\n",
      "shard_40164 loaded\n",
      "shard_14980 loaded\n",
      "shard_30969 loaded\n",
      "shard_14171 loaded\n",
      "shard_13206 loaded\n",
      "shard_27509 loaded\n",
      "shard_19188 loaded\n",
      "shard_34653 loaded\n",
      "shard_35282 loaded\n",
      "shard_17851 loaded\n",
      "shard_15122 loaded\n",
      "shard_48069 loaded\n",
      "shard_7618 loaded\n",
      "shard_29825 loaded\n",
      "shard_5330 loaded\n",
      "shard_33428 loaded\n",
      "shard_16841 loaded\n",
      "shard_3099 loaded\n",
      "shard_47132 loaded\n",
      "shard_41841 loaded\n",
      "shard_30489 loaded\n",
      "shard_49765 loaded\n",
      "shard_895 loaded\n",
      "shard_38240 loaded\n",
      "shard_46096 loaded\n",
      "shard_23895 loaded\n",
      "shard_44347 loaded\n",
      "shard_46781 loaded\n",
      "shard_12102 loaded\n",
      "shard_2104 loaded\n",
      "shard_22143 loaded\n",
      "shard_28659 loaded\n",
      "shard_34688 loaded\n",
      "shard_18214 loaded\n",
      "shard_31519 loaded\n",
      "shard_34803 loaded\n",
      "shard_45831 loaded\n",
      "shard_41006 loaded\n",
      "shard_46607 loaded\n",
      "shard_13033 loaded\n",
      "shard_23466 loaded\n",
      "shard_14711 loaded\n",
      "shard_11733 loaded\n",
      "shard_40871 loaded\n",
      "shard_28524 loaded\n",
      "shard_39479 loaded\n",
      "shard_31888 loaded\n",
      "shard_5568 loaded\n",
      "shard_5987 loaded\n",
      "shard_28973 loaded\n",
      "shard_11860 loaded\n",
      "shard_6543 loaded\n",
      "shard_6505 loaded\n",
      "shard_23668 loaded\n",
      "shard_42858 loaded\n",
      "shard_24517 loaded\n",
      "shard_49271 loaded\n",
      "shard_31278 loaded\n",
      "shard_13969 loaded\n",
      "shard_10541 loaded\n",
      "shard_36707 loaded\n",
      "shard_12316 loaded\n",
      "shard_47676 loaded\n",
      "shard_17942 loaded\n",
      "shard_39316 loaded\n",
      "shard_4240 loaded\n",
      "shard_36330 loaded\n",
      "shard_29552 loaded\n",
      "shard_33540 loaded\n",
      "shard_26523 loaded\n",
      "shard_29705 loaded\n",
      "shard_34943 loaded\n",
      "shard_38199 loaded\n",
      "shard_17241 loaded\n",
      "shard_27980 loaded\n",
      "shard_49930 loaded\n",
      "shard_1481 loaded\n",
      "shard_23168 loaded\n",
      "shard_19455 loaded\n",
      "shard_34103 loaded\n",
      "shard_14095 loaded\n",
      "shard_28963 loaded\n",
      "shard_39306 loaded\n",
      "shard_16205 loaded\n",
      "shard_43687 loaded\n",
      "shard_2077 loaded\n",
      "shard_14901 loaded\n",
      "shard_25081 loaded\n",
      "shard_2477 loaded\n",
      "shard_21364 loaded\n",
      "shard_23428 loaded\n",
      "shard_46640 loaded\n",
      "shard_49349 loaded\n",
      "shard_18659 loaded\n",
      "shard_14303 loaded\n",
      "shard_25262 loaded\n",
      "shard_3996 loaded\n",
      "shard_22869 loaded\n",
      "shard_21690 loaded\n",
      "shard_2618 loaded\n",
      "shard_42742 loaded\n",
      "shard_1332 loaded\n",
      "shard_32390 loaded\n",
      "shard_29154 loaded\n",
      "shard_48630 loaded\n",
      "shard_5604 loaded\n",
      "shard_42324 loaded\n",
      "shard_23961 loaded\n",
      "shard_15602 loaded\n",
      "shard_42704 loaded\n",
      "shard_30020 loaded\n",
      "shard_17927 loaded\n",
      "shard_46769 loaded\n",
      "shard_40860 loaded\n",
      "shard_33823 loaded\n",
      "shard_30264 loaded\n",
      "shard_36477 loaded\n",
      "shard_14654 loaded\n",
      "shard_8154 loaded\n",
      "shard_48978 loaded\n",
      "shard_765 loaded\n",
      "shard_41649 loaded\n",
      "shard_33930 loaded\n",
      "shard_19488 loaded\n",
      "shard_27349 loaded\n",
      "shard_31121 loaded\n",
      "shard_7462 loaded\n",
      "shard_36960 loaded\n",
      "shard_7401 loaded\n",
      "shard_31403 loaded\n",
      "shard_34822 loaded\n",
      "shard_38276 loaded\n",
      "shard_26439 loaded\n",
      "shard_43683 loaded\n",
      "shard_32188 loaded\n",
      "shard_40281 loaded\n",
      "shard_40389 loaded\n",
      "shard_47989 loaded\n",
      "shard_38025 loaded\n",
      "shard_3621 loaded\n",
      "shard_28485 loaded\n",
      "shard_19991 loaded\n",
      "shard_48406 loaded\n",
      "shard_32343 loaded\n",
      "shard_435 loaded\n",
      "shard_9073 loaded\n",
      "shard_34610 loaded\n",
      "shard_9007 loaded\n",
      "shard_21378 loaded\n",
      "shard_11976 loaded\n",
      "shard_11273 loaded\n",
      "shard_32251 loaded\n",
      "shard_7994 loaded\n",
      "shard_39939 loaded\n",
      "shard_45460 loaded\n",
      "shard_16877 loaded\n",
      "shard_1715 loaded\n",
      "shard_33335 loaded\n",
      "shard_21972 loaded\n",
      "shard_28389 loaded\n",
      "shard_14480 loaded\n",
      "shard_26368 loaded\n",
      "shard_41267 loaded\n",
      "shard_21846 loaded\n",
      "shard_27356 loaded\n",
      "shard_13970 loaded\n",
      "shard_24227 loaded\n",
      "shard_46034 loaded\n",
      "shard_37966 loaded\n",
      "shard_32175 loaded\n",
      "shard_8819 loaded\n",
      "shard_45208 loaded\n",
      "shard_8014 loaded\n",
      "shard_24379 loaded\n",
      "shard_36089 loaded\n",
      "shard_6706 loaded\n",
      "shard_27451 loaded\n",
      "shard_32050 loaded\n",
      "shard_21170 loaded\n",
      "shard_1518 loaded\n",
      "shard_40637 loaded\n",
      "shard_377 loaded\n",
      "shard_9686 loaded\n",
      "shard_17095 loaded\n",
      "shard_38651 loaded\n",
      "shard_17003 loaded\n",
      "shard_49716 loaded\n",
      "shard_6857 loaded\n",
      "shard_12358 loaded\n",
      "shard_18815 loaded\n",
      "shard_9215 loaded\n",
      "shard_25159 loaded\n",
      "shard_27806 loaded\n",
      "shard_5004 loaded\n",
      "shard_4462 loaded\n",
      "shard_2084 loaded\n",
      "shard_29553 loaded\n",
      "shard_10032 loaded\n",
      "shard_24179 loaded\n",
      "shard_18039 loaded\n",
      "shard_44221 loaded\n",
      "shard_10983 loaded\n",
      "shard_33373 loaded\n",
      "shard_10429 loaded\n",
      "shard_13164 loaded\n",
      "shard_32384 loaded\n",
      "shard_47647 loaded\n",
      "shard_9198 loaded\n",
      "shard_38425 loaded\n",
      "shard_32457 loaded\n",
      "shard_27707 loaded\n",
      "shard_25413 loaded\n",
      "shard_13057 loaded\n",
      "shard_43571 loaded\n",
      "shard_29498 loaded\n",
      "shard_26082 loaded\n",
      "shard_29528 loaded\n",
      "shard_37523 loaded\n",
      "shard_1574 loaded\n",
      "shard_30427 loaded\n",
      "shard_19754 loaded\n",
      "shard_35446 loaded\n",
      "shard_42760 loaded\n",
      "shard_17993 loaded\n",
      "shard_17207 loaded\n",
      "shard_1430 loaded\n",
      "shard_48858 loaded\n",
      "shard_17674 loaded\n",
      "shard_13719 loaded\n",
      "shard_11622 loaded\n",
      "shard_25995 loaded\n",
      "shard_9394 loaded\n",
      "shard_2892 loaded\n",
      "shard_29370 loaded\n",
      "shard_3463 loaded\n",
      "shard_30917 loaded\n",
      "shard_25099 loaded\n",
      "shard_7547 loaded\n",
      "shard_38715 loaded\n",
      "shard_11640 loaded\n",
      "shard_31771 loaded\n",
      "shard_49303 loaded\n",
      "shard_33755 loaded\n",
      "shard_49953 loaded\n",
      "shard_39645 loaded\n",
      "shard_30003 loaded\n",
      "shard_25574 loaded\n",
      "shard_18204 loaded\n",
      "shard_25356 loaded\n",
      "shard_12912 loaded\n",
      "shard_20724 loaded\n",
      "shard_3964 loaded\n",
      "shard_9431 loaded\n",
      "shard_9523 loaded\n",
      "shard_20973 loaded\n",
      "shard_40721 loaded\n",
      "shard_26371 loaded\n",
      "shard_30315 loaded\n",
      "shard_17550 loaded\n",
      "shard_5911 loaded\n",
      "shard_41908 loaded\n",
      "shard_12210 loaded\n",
      "shard_34979 loaded\n",
      "shard_13731 loaded\n",
      "shard_28687 loaded\n",
      "shard_30157 loaded\n",
      "shard_41879 loaded\n",
      "shard_2548 loaded\n",
      "shard_35111 loaded\n",
      "shard_47221 loaded\n",
      "shard_18096 loaded\n",
      "shard_42274 loaded\n",
      "shard_6523 loaded\n",
      "shard_43637 loaded\n",
      "shard_2359 loaded\n",
      "shard_34015 loaded\n",
      "shard_32642 loaded\n",
      "shard_49001 loaded\n",
      "shard_1075 loaded\n",
      "shard_19293 loaded\n",
      "shard_20007 loaded\n",
      "shard_37974 loaded\n",
      "shard_40662 loaded\n",
      "shard_30364 loaded\n",
      "shard_26595 loaded\n",
      "shard_37621 loaded\n",
      "shard_4982 loaded\n",
      "shard_13956 loaded\n",
      "shard_32690 loaded\n",
      "shard_11674 loaded\n",
      "shard_9003 loaded\n",
      "shard_43568 loaded\n",
      "shard_3201 loaded\n",
      "shard_8886 loaded\n",
      "shard_2190 loaded\n",
      "shard_33538 loaded\n",
      "shard_4067 loaded\n",
      "shard_42412 loaded\n",
      "shard_43520 loaded\n",
      "shard_23151 loaded\n",
      "shard_29470 loaded\n",
      "shard_42488 loaded\n",
      "shard_29744 loaded\n",
      "shard_256 loaded\n",
      "shard_5347 loaded\n",
      "shard_44337 loaded\n",
      "shard_32311 loaded\n",
      "shard_34570 loaded\n",
      "shard_36423 loaded\n",
      "shard_2043 loaded\n",
      "shard_30656 loaded\n",
      "shard_28954 loaded\n",
      "shard_29820 loaded\n",
      "shard_22870 loaded\n",
      "shard_5935 loaded\n",
      "shard_6068 loaded\n",
      "shard_31635 loaded\n",
      "shard_14144 loaded\n",
      "shard_21837 loaded\n",
      "shard_38029 loaded\n",
      "shard_36249 loaded\n",
      "shard_17820 loaded\n",
      "shard_25415 loaded\n",
      "shard_12689 loaded\n",
      "shard_43884 loaded\n",
      "shard_13910 loaded\n",
      "shard_20557 loaded\n",
      "shard_48783 loaded\n",
      "shard_2345 loaded\n",
      "shard_43383 loaded\n",
      "shard_8227 loaded\n",
      "shard_4291 loaded\n",
      "shard_17960 loaded\n",
      "shard_2408 loaded\n",
      "shard_32524 loaded\n",
      "shard_24 loaded\n",
      "shard_15393 loaded\n",
      "shard_12138 loaded\n",
      "shard_22696 loaded\n",
      "shard_38924 loaded\n",
      "shard_38782 loaded\n",
      "shard_39831 loaded\n",
      "shard_25602 loaded\n",
      "shard_258 loaded\n",
      "shard_24221 loaded\n",
      "shard_45232 loaded\n",
      "shard_4739 loaded\n",
      "shard_43357 loaded\n",
      "shard_22023 loaded\n",
      "shard_5735 loaded\n",
      "shard_680 loaded\n",
      "shard_42731 loaded\n",
      "shard_30171 loaded\n",
      "shard_31209 loaded\n",
      "shard_11224 loaded\n",
      "shard_26366 loaded\n",
      "shard_26167 loaded\n",
      "shard_6672 loaded\n",
      "shard_1314 loaded\n",
      "shard_9169 loaded\n",
      "shard_17510 loaded\n",
      "shard_3397 loaded\n",
      "shard_34105 loaded\n",
      "shard_49138 loaded\n",
      "shard_22321 loaded\n",
      "shard_9586 loaded\n",
      "shard_25162 loaded\n",
      "shard_10311 loaded\n",
      "shard_17694 loaded\n",
      "shard_11064 loaded\n",
      "shard_31569 loaded\n",
      "shard_49135 loaded\n",
      "shard_21476 loaded\n",
      "shard_29999 loaded\n",
      "shard_9900 loaded\n",
      "shard_34629 loaded\n",
      "shard_22819 loaded\n",
      "shard_27277 loaded\n",
      "shard_43952 loaded\n",
      "shard_24008 loaded\n",
      "shard_10187 loaded\n",
      "shard_13396 loaded\n",
      "shard_44599 loaded\n",
      "shard_11959 loaded\n",
      "shard_31852 loaded\n",
      "shard_4895 loaded\n",
      "shard_12514 loaded\n",
      "shard_34776 loaded\n",
      "shard_26089 loaded\n",
      "shard_45080 loaded\n",
      "shard_40216 loaded\n",
      "shard_47445 loaded\n",
      "shard_8824 loaded\n",
      "shard_47208 loaded\n",
      "shard_17786 loaded\n",
      "shard_15983 loaded\n",
      "shard_27330 loaded\n",
      "shard_10171 loaded\n",
      "shard_39239 loaded\n",
      "shard_5164 loaded\n",
      "shard_27007 loaded\n",
      "shard_27144 loaded\n",
      "shard_20840 loaded\n",
      "shard_39101 loaded\n",
      "shard_49475 loaded\n",
      "shard_13210 loaded\n",
      "shard_9370 loaded\n",
      "shard_13955 loaded\n",
      "shard_20801 loaded\n",
      "shard_18200 loaded\n",
      "shard_31861 loaded\n",
      "shard_42807 loaded\n",
      "shard_33805 loaded\n",
      "shard_42662 loaded\n",
      "shard_28443 loaded\n",
      "shard_5051 loaded\n",
      "shard_32883 loaded\n",
      "shard_33284 loaded\n",
      "shard_9706 loaded\n",
      "shard_28142 loaded\n",
      "shard_9020 loaded\n",
      "shard_6314 loaded\n",
      "shard_24014 loaded\n",
      "shard_46082 loaded\n",
      "shard_18240 loaded\n",
      "shard_11145 loaded\n",
      "shard_2120 loaded\n",
      "shard_26468 loaded\n",
      "shard_4500 loaded\n",
      "shard_18657 loaded\n",
      "shard_5590 loaded\n",
      "shard_25854 loaded\n",
      "shard_2824 loaded\n",
      "shard_9630 loaded\n",
      "shard_29956 loaded\n",
      "shard_44483 loaded\n",
      "shard_31981 loaded\n",
      "shard_49275 loaded\n",
      "shard_33597 loaded\n",
      "shard_45523 loaded\n",
      "shard_44692 loaded\n",
      "shard_11941 loaded\n",
      "shard_44948 loaded\n",
      "shard_48682 loaded\n",
      "shard_4978 loaded\n",
      "shard_35529 loaded\n",
      "shard_12602 loaded\n",
      "shard_3635 loaded\n",
      "shard_40025 loaded\n",
      "shard_4901 loaded\n",
      "shard_6074 loaded\n",
      "shard_15700 loaded\n",
      "shard_41068 loaded\n",
      "shard_9068 loaded\n",
      "shard_48637 loaded\n",
      "shard_48991 loaded\n",
      "shard_36487 loaded\n",
      "shard_10387 loaded\n",
      "shard_24761 loaded\n",
      "shard_6775 loaded\n",
      "shard_20583 loaded\n",
      "shard_46216 loaded\n",
      "shard_1397 loaded\n",
      "shard_27487 loaded\n",
      "shard_44203 loaded\n",
      "shard_23432 loaded\n",
      "shard_4451 loaded\n",
      "shard_8747 loaded\n",
      "shard_6827 loaded\n",
      "shard_5571 loaded\n",
      "shard_491 loaded\n",
      "shard_37472 loaded\n",
      "shard_32099 loaded\n",
      "shard_40887 loaded\n",
      "shard_46562 loaded\n",
      "shard_16210 loaded\n",
      "shard_27718 loaded\n",
      "shard_39009 loaded\n",
      "shard_9681 loaded\n",
      "shard_14787 loaded\n",
      "shard_27231 loaded\n",
      "shard_19774 loaded\n",
      "shard_37337 loaded\n",
      "shard_43050 loaded\n",
      "shard_44348 loaded\n",
      "shard_28691 loaded\n",
      "shard_6916 loaded\n",
      "shard_6929 loaded\n",
      "shard_26968 loaded\n",
      "shard_16242 loaded\n",
      "shard_38834 loaded\n",
      "shard_10239 loaded\n",
      "shard_787 loaded\n",
      "shard_31253 loaded\n",
      "shard_42191 loaded\n",
      "shard_34215 loaded\n",
      "shard_26865 loaded\n",
      "shard_27504 loaded\n",
      "shard_23083 loaded\n",
      "shard_45166 loaded\n",
      "shard_24030 loaded\n",
      "shard_37669 loaded\n",
      "shard_25474 loaded\n",
      "shard_24877 loaded\n",
      "shard_48355 loaded\n",
      "shard_9911 loaded\n",
      "shard_13622 loaded\n",
      "shard_20947 loaded\n",
      "shard_46319 loaded\n",
      "shard_42351 loaded\n",
      "shard_11420 loaded\n",
      "shard_9383 loaded\n",
      "shard_44788 loaded\n",
      "shard_15921 loaded\n",
      "shard_8924 loaded\n",
      "shard_12323 loaded\n",
      "shard_10984 loaded\n",
      "shard_42656 loaded\n",
      "shard_14590 loaded\n",
      "shard_17578 loaded\n",
      "shard_32443 loaded\n",
      "shard_17116 loaded\n",
      "shard_36172 loaded\n",
      "shard_27811 loaded\n",
      "shard_41669 loaded\n",
      "shard_7615 loaded\n",
      "shard_21186 loaded\n",
      "shard_6426 loaded\n",
      "shard_44324 loaded\n",
      "shard_29143 loaded\n",
      "shard_45423 loaded\n",
      "shard_31528 loaded\n",
      "shard_45005 loaded\n",
      "shard_39236 loaded\n",
      "shard_26187 loaded\n",
      "shard_34443 loaded\n",
      "shard_35743 loaded\n",
      "shard_35948 loaded\n",
      "shard_16569 loaded\n",
      "shard_20659 loaded\n",
      "shard_19002 loaded\n",
      "shard_16705 loaded\n",
      "shard_6940 loaded\n",
      "shard_9886 loaded\n",
      "shard_417 loaded\n",
      "shard_5668 loaded\n",
      "shard_19711 loaded\n",
      "shard_33067 loaded\n",
      "shard_28248 loaded\n",
      "shard_11024 loaded\n",
      "shard_24926 loaded\n",
      "shard_41442 loaded\n",
      "shard_1428 loaded\n",
      "shard_8560 loaded\n",
      "shard_27307 loaded\n",
      "shard_10462 loaded\n",
      "shard_26174 loaded\n",
      "shard_12715 loaded\n",
      "shard_31099 loaded\n",
      "shard_653 loaded\n",
      "shard_19916 loaded\n",
      "shard_2569 loaded\n",
      "shard_36529 loaded\n",
      "shard_39715 loaded\n",
      "shard_40894 loaded\n",
      "shard_27738 loaded\n",
      "shard_34077 loaded\n",
      "shard_9228 loaded\n",
      "shard_19137 loaded\n",
      "shard_39571 loaded\n",
      "shard_36878 loaded\n",
      "shard_44827 loaded\n",
      "shard_9034 loaded\n",
      "shard_22389 loaded\n",
      "shard_21244 loaded\n",
      "shard_48141 loaded\n",
      "shard_45300 loaded\n",
      "shard_46545 loaded\n",
      "shard_45643 loaded\n",
      "shard_16669 loaded\n",
      "shard_11875 loaded\n",
      "shard_14038 loaded\n",
      "shard_49445 loaded\n",
      "shard_31400 loaded\n",
      "shard_20700 loaded\n",
      "shard_14162 loaded\n",
      "shard_38839 loaded\n",
      "shard_2788 loaded\n",
      "shard_29352 loaded\n",
      "shard_29483 loaded\n",
      "shard_13036 loaded\n",
      "shard_20600 loaded\n",
      "shard_11710 loaded\n",
      "shard_25706 loaded\n",
      "shard_9751 loaded\n",
      "shard_16955 loaded\n",
      "shard_28179 loaded\n",
      "shard_8149 loaded\n",
      "shard_23396 loaded\n",
      "shard_9502 loaded\n",
      "shard_28371 loaded\n",
      "shard_43335 loaded\n",
      "shard_31342 loaded\n",
      "shard_35774 loaded\n",
      "shard_45813 loaded\n",
      "shard_44234 loaded\n",
      "shard_9466 loaded\n",
      "shard_35073 loaded\n",
      "shard_14579 loaded\n",
      "shard_17553 loaded\n",
      "shard_23380 loaded\n",
      "shard_40470 loaded\n",
      "shard_28750 loaded\n",
      "shard_48869 loaded\n",
      "shard_48993 loaded\n",
      "shard_27369 loaded\n",
      "shard_22925 loaded\n",
      "shard_14781 loaded\n",
      "shard_40082 loaded\n",
      "shard_46358 loaded\n",
      "shard_44961 loaded\n",
      "shard_42362 loaded\n",
      "shard_11738 loaded\n",
      "shard_19241 loaded\n",
      "shard_46481 loaded\n",
      "shard_32269 loaded\n",
      "shard_8188 loaded\n",
      "shard_35065 loaded\n",
      "shard_13530 loaded\n",
      "shard_25090 loaded\n",
      "shard_35669 loaded\n",
      "shard_27953 loaded\n",
      "shard_46969 loaded\n",
      "shard_21433 loaded\n",
      "shard_49222 loaded\n",
      "shard_48107 loaded\n",
      "shard_15581 loaded\n",
      "shard_5410 loaded\n",
      "shard_4056 loaded\n",
      "shard_18787 loaded\n",
      "shard_12463 loaded\n",
      "shard_27118 loaded\n",
      "shard_40022 loaded\n",
      "shard_2796 loaded\n",
      "shard_33882 loaded\n",
      "shard_37648 loaded\n",
      "shard_10448 loaded\n",
      "shard_29676 loaded\n",
      "shard_1162 loaded\n",
      "shard_15680 loaded\n",
      "shard_9928 loaded\n",
      "shard_34224 loaded\n",
      "shard_3939 loaded\n",
      "shard_9946 loaded\n",
      "shard_22667 loaded\n",
      "shard_35524 loaded\n",
      "shard_10415 loaded\n",
      "shard_42294 loaded\n",
      "shard_16534 loaded\n",
      "shard_43513 loaded\n",
      "shard_3967 loaded\n",
      "shard_47665 loaded\n",
      "shard_13317 loaded\n",
      "shard_19909 loaded\n",
      "shard_10152 loaded\n",
      "shard_40922 loaded\n",
      "shard_34386 loaded\n",
      "shard_42390 loaded\n",
      "shard_30995 loaded\n",
      "shard_48841 loaded\n",
      "shard_12342 loaded\n",
      "shard_20393 loaded\n",
      "shard_35543 loaded\n",
      "shard_16073 loaded\n",
      "shard_1879 loaded\n",
      "shard_39062 loaded\n",
      "shard_26016 loaded\n",
      "shard_4015 loaded\n",
      "shard_12099 loaded\n",
      "shard_18016 loaded\n",
      "shard_8984 loaded\n",
      "shard_13028 loaded\n",
      "shard_26524 loaded\n",
      "shard_916 loaded\n",
      "shard_30807 loaded\n",
      "shard_39988 loaded\n",
      "shard_11601 loaded\n",
      "shard_18948 loaded\n",
      "shard_21868 loaded\n",
      "shard_11853 loaded\n",
      "shard_31293 loaded\n",
      "shard_7772 loaded\n",
      "shard_46278 loaded\n",
      "shard_41818 loaded\n",
      "shard_4380 loaded\n",
      "shard_49370 loaded\n",
      "shard_44690 loaded\n",
      "shard_20244 loaded\n",
      "shard_14728 loaded\n",
      "shard_42033 loaded\n",
      "shard_30355 loaded\n",
      "shard_12580 loaded\n",
      "shard_8414 loaded\n",
      "shard_8399 loaded\n",
      "shard_39223 loaded\n",
      "shard_48371 loaded\n",
      "shard_4522 loaded\n",
      "shard_30633 loaded\n",
      "shard_11599 loaded\n",
      "shard_30155 loaded\n",
      "shard_475 loaded\n",
      "shard_6542 loaded\n",
      "shard_9224 loaded\n",
      "shard_39447 loaded\n",
      "shard_46609 loaded\n",
      "shard_23076 loaded\n",
      "shard_499 loaded\n",
      "shard_18808 loaded\n",
      "shard_5368 loaded\n",
      "shard_49948 loaded\n",
      "shard_8355 loaded\n",
      "shard_23536 loaded\n",
      "shard_14941 loaded\n",
      "shard_19195 loaded\n",
      "shard_28110 loaded\n",
      "shard_10199 loaded\n",
      "shard_18759 loaded\n",
      "shard_4374 loaded\n",
      "shard_879 loaded\n",
      "shard_34054 loaded\n",
      "shard_13059 loaded\n",
      "shard_30903 loaded\n",
      "shard_9087 loaded\n",
      "shard_26947 loaded\n",
      "shard_29839 loaded\n",
      "shard_37116 loaded\n",
      "shard_38149 loaded\n",
      "shard_29205 loaded\n",
      "shard_44073 loaded\n",
      "shard_14620 loaded\n",
      "shard_19124 loaded\n",
      "shard_36956 loaded\n",
      "shard_32027 loaded\n",
      "shard_34691 loaded\n",
      "shard_12324 loaded\n",
      "shard_22784 loaded\n",
      "shard_22923 loaded\n",
      "shard_7495 loaded\n",
      "shard_4148 loaded\n",
      "shard_2245 loaded\n",
      "shard_30412 loaded\n",
      "shard_47931 loaded\n",
      "shard_43740 loaded\n",
      "shard_19897 loaded\n",
      "shard_1876 loaded\n",
      "shard_41369 loaded\n",
      "shard_48128 loaded\n",
      "shard_36895 loaded\n",
      "shard_39181 loaded\n",
      "shard_40245 loaded\n",
      "shard_29436 loaded\n",
      "shard_21424 loaded\n",
      "shard_29071 loaded\n",
      "shard_44057 loaded\n",
      "shard_41798 loaded\n",
      "shard_46530 loaded\n",
      "shard_24846 loaded\n",
      "shard_6844 loaded\n",
      "shard_36266 loaded\n",
      "shard_29150 loaded\n",
      "shard_34300 loaded\n",
      "shard_5560 loaded\n",
      "shard_39210 loaded\n",
      "shard_17857 loaded\n",
      "shard_35016 loaded\n",
      "shard_42081 loaded\n",
      "shard_15413 loaded\n",
      "shard_34269 loaded\n",
      "shard_1077 loaded\n",
      "shard_42655 loaded\n",
      "shard_2722 loaded\n",
      "shard_42561 loaded\n",
      "shard_13826 loaded\n",
      "shard_6513 loaded\n",
      "shard_25342 loaded\n",
      "shard_31097 loaded\n",
      "shard_16160 loaded\n",
      "shard_38143 loaded\n",
      "shard_17792 loaded\n",
      "shard_47036 loaded\n",
      "shard_44851 loaded\n",
      "shard_39289 loaded\n",
      "shard_36204 loaded\n",
      "shard_48268 loaded\n",
      "shard_37484 loaded\n",
      "shard_38729 loaded\n",
      "shard_46037 loaded\n",
      "shard_36414 loaded\n",
      "shard_45797 loaded\n",
      "shard_10216 loaded\n",
      "shard_23183 loaded\n",
      "shard_33709 loaded\n",
      "shard_14725 loaded\n",
      "shard_45482 loaded\n",
      "shard_43098 loaded\n",
      "shard_48253 loaded\n",
      "shard_43923 loaded\n",
      "shard_45075 loaded\n",
      "shard_39290 loaded\n",
      "shard_28940 loaded\n",
      "shard_26983 loaded\n",
      "shard_16748 loaded\n",
      "shard_42169 loaded\n",
      "shard_48357 loaded\n",
      "shard_6509 loaded\n",
      "shard_26788 loaded\n",
      "shard_13799 loaded\n",
      "shard_19274 loaded\n",
      "shard_42969 loaded\n",
      "shard_46937 loaded\n",
      "shard_43238 loaded\n",
      "shard_1544 loaded\n",
      "shard_2626 loaded\n",
      "shard_47702 loaded\n",
      "shard_18715 loaded\n",
      "shard_32244 loaded\n",
      "shard_14504 loaded\n",
      "shard_8209 loaded\n",
      "shard_2011 loaded\n",
      "shard_6512 loaded\n",
      "shard_7096 loaded\n",
      "shard_596 loaded\n",
      "shard_1453 loaded\n",
      "shard_40502 loaded\n",
      "shard_42519 loaded\n",
      "shard_41242 loaded\n",
      "shard_49089 loaded\n",
      "shard_4073 loaded\n",
      "shard_12461 loaded\n",
      "shard_39150 loaded\n",
      "shard_33519 loaded\n",
      "shard_23040 loaded\n",
      "shard_6935 loaded\n",
      "shard_33090 loaded\n",
      "shard_1054 loaded\n",
      "shard_32295 loaded\n",
      "shard_25517 loaded\n",
      "shard_19405 loaded\n",
      "shard_39354 loaded\n",
      "shard_43283 loaded\n",
      "shard_23872 loaded\n",
      "shard_30887 loaded\n",
      "shard_35699 loaded\n",
      "shard_11180 loaded\n",
      "shard_4031 loaded\n",
      "shard_2293 loaded\n",
      "shard_44614 loaded\n",
      "shard_39134 loaded\n",
      "shard_45574 loaded\n",
      "shard_29790 loaded\n",
      "shard_5580 loaded\n",
      "shard_29806 loaded\n",
      "shard_42528 loaded\n",
      "shard_1009 loaded\n",
      "shard_16986 loaded\n",
      "shard_11721 loaded\n",
      "shard_29948 loaded\n",
      "shard_11335 loaded\n",
      "shard_42531 loaded\n",
      "shard_9998 loaded\n",
      "shard_30359 loaded\n",
      "shard_8539 loaded\n",
      "shard_5230 loaded\n",
      "shard_42762 loaded\n",
      "shard_48802 loaded\n",
      "shard_5909 loaded\n",
      "shard_5044 loaded\n",
      "shard_36304 loaded\n",
      "shard_48111 loaded\n",
      "shard_21273 loaded\n",
      "shard_12159 loaded\n",
      "shard_45485 loaded\n",
      "shard_43362 loaded\n",
      "shard_33497 loaded\n",
      "shard_29329 loaded\n",
      "shard_17671 loaded\n",
      "shard_16846 loaded\n",
      "shard_10014 loaded\n",
      "shard_15559 loaded\n",
      "shard_35903 loaded\n",
      "shard_32872 loaded\n",
      "shard_34866 loaded\n",
      "shard_7412 loaded\n",
      "shard_5052 loaded\n",
      "shard_1749 loaded\n",
      "shard_37899 loaded\n",
      "shard_47039 loaded\n",
      "shard_43419 loaded\n",
      "shard_677 loaded\n",
      "shard_18061 loaded\n",
      "shard_11331 loaded\n",
      "shard_7556 loaded\n",
      "shard_23089 loaded\n",
      "shard_8908 loaded\n",
      "shard_35093 loaded\n",
      "shard_37963 loaded\n",
      "shard_38358 loaded\n",
      "shard_910 loaded\n",
      "shard_27530 loaded\n",
      "shard_24020 loaded\n",
      "shard_1309 loaded\n",
      "shard_19368 loaded\n",
      "shard_13623 loaded\n",
      "shard_2863 loaded\n",
      "shard_19924 loaded\n",
      "shard_3197 loaded\n",
      "shard_38567 loaded\n",
      "shard_14250 loaded\n",
      "shard_4469 loaded\n",
      "shard_42821 loaded\n",
      "shard_19478 loaded\n",
      "shard_41008 loaded\n",
      "shard_32447 loaded\n",
      "shard_19043 loaded\n",
      "shard_43356 loaded\n",
      "shard_39279 loaded\n",
      "shard_23343 loaded\n",
      "shard_17760 loaded\n",
      "shard_20667 loaded\n",
      "shard_49406 loaded\n",
      "shard_22139 loaded\n",
      "shard_45676 loaded\n",
      "shard_22893 loaded\n",
      "shard_6602 loaded\n",
      "shard_3116 loaded\n",
      "shard_37352 loaded\n",
      "shard_28028 loaded\n",
      "shard_21497 loaded\n",
      "shard_48421 loaded\n",
      "shard_37089 loaded\n",
      "shard_49277 loaded\n",
      "shard_20412 loaded\n",
      "shard_39270 loaded\n",
      "shard_21871 loaded\n",
      "shard_18300 loaded\n",
      "shard_11228 loaded\n",
      "shard_4312 loaded\n",
      "shard_15158 loaded\n",
      "shard_47241 loaded\n",
      "shard_22564 loaded\n",
      "shard_14025 loaded\n",
      "shard_13973 loaded\n",
      "shard_41495 loaded\n",
      "shard_35578 loaded\n",
      "shard_22470 loaded\n",
      "shard_21434 loaded\n",
      "shard_49660 loaded\n",
      "shard_18479 loaded\n",
      "shard_6125 loaded\n",
      "shard_21801 loaded\n",
      "shard_18311 loaded\n",
      "shard_30905 loaded\n",
      "shard_37505 loaded\n",
      "shard_23480 loaded\n",
      "shard_8493 loaded\n",
      "shard_10158 loaded\n",
      "shard_11027 loaded\n",
      "shard_19602 loaded\n",
      "shard_30869 loaded\n",
      "shard_40843 loaded\n",
      "shard_22087 loaded\n",
      "shard_26826 loaded\n",
      "shard_6719 loaded\n",
      "shard_21468 loaded\n",
      "shard_3328 loaded\n",
      "shard_44083 loaded\n",
      "shard_20719 loaded\n",
      "shard_10698 loaded\n",
      "shard_36988 loaded\n",
      "shard_27149 loaded\n",
      "shard_7194 loaded\n",
      "shard_14681 loaded\n",
      "shard_2705 loaded\n",
      "shard_15244 loaded\n",
      "shard_13416 loaded\n",
      "shard_20166 loaded\n",
      "shard_25059 loaded\n",
      "shard_44857 loaded\n",
      "shard_48435 loaded\n",
      "shard_34351 loaded\n",
      "shard_10351 loaded\n",
      "shard_4244 loaded\n",
      "shard_9437 loaded\n",
      "shard_19040 loaded\n",
      "shard_49571 loaded\n",
      "shard_3806 loaded\n",
      "shard_32681 loaded\n",
      "shard_45392 loaded\n",
      "shard_16465 loaded\n",
      "shard_5902 loaded\n",
      "shard_18177 loaded\n",
      "shard_4423 loaded\n",
      "shard_375 loaded\n",
      "shard_31600 loaded\n",
      "shard_7909 loaded\n",
      "shard_25892 loaded\n",
      "shard_49085 loaded\n",
      "shard_28202 loaded\n",
      "shard_17763 loaded\n",
      "shard_11073 loaded\n",
      "shard_49296 loaded\n",
      "shard_7130 loaded\n",
      "shard_2341 loaded\n",
      "shard_43447 loaded\n",
      "shard_12113 loaded\n",
      "shard_11604 loaded\n",
      "shard_25752 loaded\n",
      "shard_21942 loaded\n",
      "shard_48611 loaded\n",
      "shard_39572 loaded\n",
      "shard_42999 loaded\n",
      "shard_30008 loaded\n",
      "shard_35546 loaded\n",
      "shard_43728 loaded\n",
      "shard_943 loaded\n",
      "shard_32814 loaded\n",
      "shard_21953 loaded\n",
      "shard_39011 loaded\n",
      "shard_41593 loaded\n",
      "shard_32908 loaded\n",
      "shard_22521 loaded\n",
      "shard_314 loaded\n",
      "shard_41937 loaded\n",
      "shard_35060 loaded\n",
      "shard_44777 loaded\n",
      "shard_38736 loaded\n",
      "shard_43907 loaded\n",
      "shard_37922 loaded\n",
      "shard_47344 loaded\n",
      "shard_45436 loaded\n",
      "shard_2777 loaded\n",
      "shard_38641 loaded\n",
      "shard_15296 loaded\n",
      "shard_20562 loaded\n",
      "shard_3542 loaded\n",
      "shard_1824 loaded\n",
      "shard_8480 loaded\n",
      "shard_18739 loaded\n",
      "shard_26478 loaded\n",
      "shard_3802 loaded\n",
      "shard_88 loaded\n",
      "shard_49526 loaded\n",
      "shard_38171 loaded\n",
      "shard_23849 loaded\n",
      "shard_42292 loaded\n",
      "shard_35086 loaded\n",
      "shard_9895 loaded\n",
      "shard_45146 loaded\n",
      "shard_8609 loaded\n",
      "shard_47678 loaded\n",
      "shard_40803 loaded\n",
      "shard_13191 loaded\n",
      "shard_48822 loaded\n",
      "shard_45439 loaded\n",
      "shard_35507 loaded\n",
      "shard_2615 loaded\n",
      "shard_2403 loaded\n",
      "shard_16506 loaded\n",
      "shard_2212 loaded\n",
      "shard_35092 loaded\n",
      "shard_10777 loaded\n",
      "shard_2310 loaded\n",
      "shard_4716 loaded\n",
      "shard_30071 loaded\n",
      "shard_24798 loaded\n",
      "shard_12165 loaded\n",
      "shard_25008 loaded\n",
      "shard_36615 loaded\n",
      "shard_35703 loaded\n",
      "shard_46957 loaded\n",
      "shard_46765 loaded\n",
      "shard_14018 loaded\n",
      "shard_34552 loaded\n",
      "shard_24402 loaded\n",
      "shard_18977 loaded\n",
      "shard_46057 loaded\n",
      "shard_26713 loaded\n",
      "shard_3199 loaded\n",
      "shard_43460 loaded\n",
      "shard_10259 loaded\n",
      "shard_34116 loaded\n",
      "shard_16421 loaded\n",
      "shard_17136 loaded\n",
      "shard_16498 loaded\n",
      "shard_42631 loaded\n",
      "shard_4048 loaded\n",
      "shard_34525 loaded\n",
      "shard_29287 loaded\n",
      "shard_14067 loaded\n",
      "shard_37468 loaded\n",
      "shard_28986 loaded\n",
      "shard_27333 loaded\n",
      "shard_6206 loaded\n",
      "shard_22790 loaded\n",
      "shard_48879 loaded\n",
      "shard_26908 loaded\n",
      "shard_13561 loaded\n",
      "shard_16378 loaded\n",
      "shard_19517 loaded\n",
      "shard_35330 loaded\n",
      "shard_28793 loaded\n",
      "shard_716 loaded\n",
      "shard_36671 loaded\n",
      "shard_10132 loaded\n",
      "shard_6975 loaded\n",
      "shard_43066 loaded\n",
      "shard_31151 loaded\n",
      "shard_7896 loaded\n",
      "shard_44370 loaded\n",
      "shard_45409 loaded\n",
      "shard_13148 loaded\n",
      "shard_15117 loaded\n",
      "shard_46559 loaded\n",
      "shard_47100 loaded\n",
      "shard_2167 loaded\n",
      "shard_20230 loaded\n",
      "shard_2243 loaded\n",
      "shard_42967 loaded\n",
      "shard_14488 loaded\n",
      "shard_34135 loaded\n",
      "shard_47932 loaded\n",
      "shard_46220 loaded\n",
      "shard_37369 loaded\n",
      "shard_35146 loaded\n",
      "shard_12398 loaded\n",
      "shard_40989 loaded\n",
      "shard_44091 loaded\n",
      "shard_48034 loaded\n",
      "shard_49836 loaded\n",
      "shard_25654 loaded\n",
      "shard_1374 loaded\n",
      "shard_3307 loaded\n",
      "shard_6001 loaded\n",
      "shard_22922 loaded\n",
      "shard_35255 loaded\n",
      "shard_37793 loaded\n",
      "shard_25737 loaded\n",
      "shard_35485 loaded\n",
      "shard_49072 loaded\n",
      "shard_12394 loaded\n",
      "shard_19908 loaded\n",
      "shard_27444 loaded\n",
      "shard_18956 loaded\n",
      "shard_14045 loaded\n",
      "shard_6374 loaded\n",
      "shard_2279 loaded\n",
      "shard_47814 loaded\n",
      "shard_38017 loaded\n",
      "shard_15899 loaded\n",
      "shard_32000 loaded\n",
      "shard_32597 loaded\n",
      "shard_34907 loaded\n",
      "shard_44756 loaded\n",
      "shard_34750 loaded\n",
      "shard_41111 loaded\n",
      "shard_41835 loaded\n",
      "shard_15132 loaded\n",
      "shard_25249 loaded\n",
      "shard_6216 loaded\n",
      "shard_3191 loaded\n",
      "shard_28113 loaded\n",
      "shard_7861 loaded\n",
      "shard_46235 loaded\n",
      "shard_38125 loaded\n",
      "shard_42767 loaded\n",
      "shard_14551 loaded\n",
      "shard_1516 loaded\n",
      "shard_38831 loaded\n",
      "shard_34782 loaded\n",
      "shard_42020 loaded\n",
      "shard_23459 loaded\n",
      "shard_2121 loaded\n",
      "shard_4295 loaded\n",
      "shard_18388 loaded\n",
      "shard_7013 loaded\n",
      "shard_45112 loaded\n",
      "shard_48382 loaded\n",
      "shard_31098 loaded\n",
      "shard_385 loaded\n",
      "shard_21360 loaded\n",
      "shard_3625 loaded\n",
      "shard_13751 loaded\n",
      "shard_10561 loaded\n",
      "shard_28312 loaded\n",
      "shard_6655 loaded\n",
      "shard_12187 loaded\n",
      "shard_42182 loaded\n",
      "shard_4712 loaded\n",
      "shard_46708 loaded\n",
      "shard_42575 loaded\n",
      "shard_31196 loaded\n",
      "shard_25216 loaded\n",
      "shard_9062 loaded\n",
      "shard_7908 loaded\n",
      "shard_21330 loaded\n",
      "shard_23044 loaded\n",
      "shard_39221 loaded\n",
      "shard_19813 loaded\n",
      "shard_40400 loaded\n",
      "shard_19691 loaded\n",
      "shard_40776 loaded\n",
      "shard_14694 loaded\n",
      "shard_35458 loaded\n",
      "shard_23952 loaded\n",
      "shard_4044 loaded\n",
      "shard_6891 loaded\n",
      "shard_13526 loaded\n",
      "shard_22218 loaded\n",
      "shard_32558 loaded\n",
      "shard_37566 loaded\n",
      "shard_23625 loaded\n",
      "shard_8194 loaded\n",
      "shard_5098 loaded\n",
      "shard_45110 loaded\n",
      "shard_9599 loaded\n",
      "shard_18760 loaded\n",
      "shard_383 loaded\n",
      "shard_41200 loaded\n",
      "shard_45132 loaded\n",
      "shard_42845 loaded\n",
      "shard_1081 loaded\n",
      "shard_6096 loaded\n",
      "shard_20737 loaded\n",
      "shard_28694 loaded\n",
      "shard_44484 loaded\n",
      "shard_24805 loaded\n",
      "shard_45827 loaded\n",
      "shard_7516 loaded\n",
      "shard_49118 loaded\n",
      "shard_17914 loaded\n",
      "shard_8691 loaded\n",
      "shard_30644 loaded\n",
      "shard_2004 loaded\n",
      "shard_30755 loaded\n",
      "shard_38911 loaded\n",
      "shard_7367 loaded\n",
      "shard_33084 loaded\n",
      "shard_16639 loaded\n",
      "shard_2587 loaded\n",
      "shard_27455 loaded\n",
      "shard_34297 loaded\n",
      "shard_7625 loaded\n",
      "shard_3178 loaded\n",
      "shard_11213 loaded\n",
      "shard_12840 loaded\n",
      "shard_42673 loaded\n",
      "shard_39795 loaded\n",
      "shard_47494 loaded\n",
      "shard_34533 loaded\n",
      "shard_32030 loaded\n",
      "shard_8090 loaded\n",
      "shard_3476 loaded\n",
      "shard_39469 loaded\n",
      "shard_30987 loaded\n",
      "shard_31654 loaded\n",
      "shard_5536 loaded\n",
      "shard_42783 loaded\n",
      "shard_20109 loaded\n",
      "shard_21790 loaded\n",
      "shard_12445 loaded\n",
      "shard_32933 loaded\n",
      "shard_38043 loaded\n",
      "shard_34023 loaded\n",
      "shard_49531 loaded\n",
      "shard_33183 loaded\n",
      "shard_11930 loaded\n",
      "shard_27940 loaded\n",
      "shard_18978 loaded\n",
      "shard_27168 loaded\n",
      "shard_23037 loaded\n",
      "shard_33299 loaded\n",
      "shard_33363 loaded\n",
      "shard_46166 loaded\n",
      "shard_26616 loaded\n",
      "shard_46673 loaded\n",
      "shard_2047 loaded\n",
      "shard_47976 loaded\n",
      "shard_13068 loaded\n",
      "shard_38489 loaded\n",
      "shard_14215 loaded\n",
      "shard_14825 loaded\n",
      "shard_19231 loaded\n",
      "shard_42748 loaded\n",
      "shard_48320 loaded\n",
      "shard_26784 loaded\n",
      "shard_15758 loaded\n",
      "shard_47952 loaded\n",
      "shard_31740 loaded\n",
      "shard_48998 loaded\n",
      "shard_21265 loaded\n",
      "shard_15906 loaded\n",
      "shard_16069 loaded\n",
      "shard_47832 loaded\n",
      "shard_30108 loaded\n",
      "shard_10425 loaded\n",
      "shard_9620 loaded\n",
      "shard_41135 loaded\n",
      "shard_49391 loaded\n",
      "shard_5788 loaded\n",
      "shard_8939 loaded\n",
      "shard_21644 loaded\n",
      "shard_32176 loaded\n",
      "shard_860 loaded\n",
      "shard_18503 loaded\n",
      "shard_39595 loaded\n",
      "shard_29662 loaded\n",
      "shard_19496 loaded\n",
      "shard_25629 loaded\n",
      "shard_33742 loaded\n",
      "shard_18395 loaded\n",
      "shard_20873 loaded\n",
      "shard_391 loaded\n",
      "shard_19840 loaded\n",
      "shard_31492 loaded\n",
      "shard_35316 loaded\n",
      "shard_33989 loaded\n",
      "shard_48650 loaded\n",
      "shard_43131 loaded\n",
      "shard_46533 loaded\n",
      "shard_37429 loaded\n",
      "shard_32752 loaded\n",
      "shard_18154 loaded\n",
      "shard_26702 loaded\n",
      "shard_45299 loaded\n",
      "shard_41283 loaded\n",
      "shard_38973 loaded\n",
      "shard_44791 loaded\n",
      "shard_5205 loaded\n",
      "shard_49213 loaded\n",
      "shard_19374 loaded\n",
      "shard_3679 loaded\n",
      "shard_15515 loaded\n",
      "shard_32849 loaded\n",
      "shard_35979 loaded\n",
      "shard_34333 loaded\n",
      "shard_15408 loaded\n",
      "shard_10384 loaded\n",
      "shard_41503 loaded\n",
      "shard_8890 loaded\n",
      "shard_49059 loaded\n",
      "shard_38211 loaded\n",
      "shard_11703 loaded\n",
      "shard_2914 loaded\n",
      "shard_41363 loaded\n",
      "shard_5644 loaded\n",
      "shard_46572 loaded\n",
      "shard_34265 loaded\n",
      "shard_42870 loaded\n",
      "shard_2426 loaded\n",
      "shard_45256 loaded\n",
      "shard_20656 loaded\n",
      "shard_36397 loaded\n",
      "shard_31328 loaded\n",
      "shard_22153 loaded\n",
      "shard_49411 loaded\n",
      "shard_45264 loaded\n",
      "shard_5235 loaded\n",
      "shard_20546 loaded\n",
      "shard_37650 loaded\n",
      "shard_9897 loaded\n",
      "shard_859 loaded\n",
      "shard_25645 loaded\n",
      "shard_35421 loaded\n",
      "shard_25436 loaded\n",
      "shard_23853 loaded\n",
      "shard_27708 loaded\n",
      "shard_22637 loaded\n",
      "shard_36369 loaded\n",
      "shard_10307 loaded\n",
      "shard_8657 loaded\n",
      "shard_5843 loaded\n",
      "shard_26893 loaded\n",
      "shard_20 loaded\n",
      "shard_49486 loaded\n",
      "shard_26220 loaded\n",
      "shard_6146 loaded\n",
      "shard_41364 loaded\n",
      "shard_20375 loaded\n",
      "shard_18237 loaded\n",
      "shard_9355 loaded\n",
      "shard_6633 loaded\n",
      "shard_47302 loaded\n",
      "shard_3243 loaded\n",
      "shard_18894 loaded\n",
      "shard_10365 loaded\n",
      "shard_14813 loaded\n",
      "shard_36442 loaded\n",
      "shard_6123 loaded\n",
      "shard_32910 loaded\n",
      "shard_30933 loaded\n",
      "shard_40817 loaded\n",
      "shard_44323 loaded\n",
      "shard_34660 loaded\n",
      "shard_38023 loaded\n",
      "shard_43851 loaded\n",
      "shard_42222 loaded\n",
      "shard_41705 loaded\n",
      "shard_22614 loaded\n",
      "shard_13884 loaded\n",
      "shard_18825 loaded\n",
      "shard_44561 loaded\n",
      "shard_47411 loaded\n",
      "shard_12399 loaded\n",
      "shard_37285 loaded\n",
      "shard_9119 loaded\n",
      "shard_29268 loaded\n",
      "shard_6348 loaded\n",
      "shard_48213 loaded\n",
      "shard_43716 loaded\n",
      "shard_17892 loaded\n",
      "shard_14723 loaded\n",
      "shard_9842 loaded\n",
      "shard_28452 loaded\n",
      "shard_30318 loaded\n",
      "shard_1747 loaded\n",
      "shard_604 loaded\n",
      "shard_3427 loaded\n",
      "shard_48214 loaded\n",
      "shard_39369 loaded\n",
      "shard_9684 loaded\n",
      "shard_30769 loaded\n",
      "shard_24731 loaded\n",
      "shard_31317 loaded\n",
      "shard_11881 loaded\n",
      "shard_32283 loaded\n",
      "shard_27881 loaded\n",
      "shard_25194 loaded\n",
      "shard_3544 loaded\n",
      "shard_29034 loaded\n",
      "shard_23164 loaded\n",
      "shard_20045 loaded\n",
      "shard_47071 loaded\n",
      "shard_32599 loaded\n",
      "shard_4221 loaded\n",
      "shard_35372 loaded\n",
      "shard_30518 loaded\n",
      "shard_37005 loaded\n",
      "shard_15712 loaded\n",
      "shard_29542 loaded\n",
      "shard_10672 loaded\n",
      "shard_9371 loaded\n",
      "shard_5271 loaded\n",
      "shard_34145 loaded\n",
      "shard_41346 loaded\n",
      "shard_19855 loaded\n",
      "shard_28666 loaded\n",
      "shard_17208 loaded\n",
      "shard_40759 loaded\n",
      "shard_25394 loaded\n",
      "shard_17046 loaded\n",
      "shard_7232 loaded\n",
      "shard_45509 loaded\n",
      "shard_29924 loaded\n",
      "shard_49286 loaded\n",
      "shard_19812 loaded\n",
      "shard_34518 loaded\n",
      "shard_28633 loaded\n",
      "shard_26075 loaded\n",
      "shard_33178 loaded\n",
      "shard_7447 loaded\n",
      "shard_35120 loaded\n",
      "shard_34281 loaded\n",
      "shard_10343 loaded\n",
      "shard_19721 loaded\n",
      "shard_29835 loaded\n",
      "shard_18666 loaded\n",
      "shard_12097 loaded\n",
      "shard_34081 loaded\n",
      "shard_14619 loaded\n",
      "shard_12472 loaded\n",
      "shard_36114 loaded\n",
      "shard_2911 loaded\n",
      "shard_40831 loaded\n",
      "shard_10733 loaded\n",
      "shard_38127 loaded\n",
      "shard_5278 loaded\n",
      "shard_10442 loaded\n",
      "shard_11101 loaded\n",
      "shard_19614 loaded\n",
      "shard_13822 loaded\n",
      "shard_10327 loaded\n",
      "shard_4430 loaded\n",
      "shard_39084 loaded\n",
      "shard_31857 loaded\n",
      "shard_4775 loaded\n",
      "shard_22303 loaded\n",
      "shard_8245 loaded\n",
      "shard_27861 loaded\n",
      "shard_33787 loaded\n",
      "shard_36561 loaded\n",
      "shard_1568 loaded\n",
      "shard_10812 loaded\n",
      "shard_30074 loaded\n",
      "shard_47506 loaded\n",
      "shard_7642 loaded\n",
      "shard_4922 loaded\n",
      "shard_12954 loaded\n",
      "shard_20589 loaded\n",
      "shard_31512 loaded\n",
      "shard_9768 loaded\n",
      "shard_38259 loaded\n",
      "shard_7694 loaded\n",
      "shard_19111 loaded\n",
      "shard_45791 loaded\n",
      "shard_38970 loaded\n",
      "shard_20587 loaded\n",
      "shard_30339 loaded\n",
      "shard_28089 loaded\n",
      "shard_34974 loaded\n",
      "shard_31427 loaded\n",
      "shard_27435 loaded\n",
      "shard_46699 loaded\n",
      "shard_22473 loaded\n",
      "shard_25386 loaded\n",
      "shard_41103 loaded\n",
      "shard_37520 loaded\n",
      "shard_24413 loaded\n",
      "shard_25094 loaded\n",
      "shard_48242 loaded\n",
      "shard_21780 loaded\n",
      "shard_28640 loaded\n",
      "shard_1989 loaded\n",
      "shard_13104 loaded\n",
      "shard_9462 loaded\n",
      "shard_26112 loaded\n",
      "shard_36896 loaded\n",
      "shard_5876 loaded\n",
      "shard_49507 loaded\n",
      "shard_27305 loaded\n",
      "shard_45442 loaded\n",
      "shard_18903 loaded\n",
      "shard_36840 loaded\n",
      "shard_25823 loaded\n",
      "shard_22063 loaded\n",
      "shard_44558 loaded\n",
      "shard_9878 loaded\n",
      "shard_42710 loaded\n",
      "shard_40779 loaded\n",
      "shard_5629 loaded\n",
      "shard_18079 loaded\n",
      "shard_16627 loaded\n",
      "shard_42062 loaded\n",
      "shard_23973 loaded\n",
      "shard_27819 loaded\n",
      "shard_45733 loaded\n",
      "shard_14110 loaded\n",
      "shard_38406 loaded\n",
      "shard_2468 loaded\n",
      "shard_8208 loaded\n",
      "shard_30954 loaded\n",
      "shard_45021 loaded\n",
      "shard_33174 loaded\n",
      "shard_3823 loaded\n",
      "shard_1224 loaded\n",
      "shard_10616 loaded\n",
      "shard_1226 loaded\n",
      "shard_26783 loaded\n",
      "shard_40432 loaded\n",
      "shard_6793 loaded\n",
      "shard_11223 loaded\n",
      "shard_17060 loaded\n",
      "shard_12031 loaded\n",
      "shard_45494 loaded\n",
      "shard_23798 loaded\n",
      "shard_4138 loaded\n",
      "shard_14745 loaded\n",
      "shard_24966 loaded\n",
      "shard_27006 loaded\n",
      "shard_32235 loaded\n",
      "shard_30524 loaded\n",
      "shard_3888 loaded\n",
      "shard_18492 loaded\n",
      "shard_36953 loaded\n",
      "shard_28410 loaded\n",
      "shard_1808 loaded\n",
      "shard_9565 loaded\n",
      "shard_25952 loaded\n",
      "shard_44332 loaded\n",
      "shard_31373 loaded\n",
      "shard_6402 loaded\n",
      "shard_45763 loaded\n",
      "shard_43477 loaded\n",
      "shard_48575 loaded\n",
      "shard_13695 loaded\n",
      "shard_26888 loaded\n",
      "shard_9822 loaded\n",
      "shard_42377 loaded\n",
      "shard_35310 loaded\n",
      "shard_15530 loaded\n",
      "shard_24425 loaded\n",
      "shard_30828 loaded\n",
      "shard_35968 loaded\n",
      "shard_2019 loaded\n",
      "shard_38749 loaded\n",
      "shard_8738 loaded\n",
      "shard_31633 loaded\n",
      "shard_26469 loaded\n",
      "shard_24866 loaded\n",
      "shard_37042 loaded\n",
      "shard_1511 loaded\n",
      "shard_719 loaded\n",
      "shard_18100 loaded\n",
      "shard_29578 loaded\n",
      "shard_48309 loaded\n",
      "shard_18239 loaded\n",
      "shard_37623 loaded\n",
      "shard_29473 loaded\n",
      "shard_39844 loaded\n",
      "shard_38077 loaded\n",
      "shard_3259 loaded\n",
      "shard_26449 loaded\n",
      "shard_33537 loaded\n",
      "shard_36981 loaded\n",
      "shard_14771 loaded\n",
      "shard_17568 loaded\n",
      "shard_32919 loaded\n",
      "shard_34554 loaded\n",
      "shard_25196 loaded\n",
      "shard_45952 loaded\n",
      "shard_25906 loaded\n",
      "shard_1877 loaded\n",
      "shard_31092 loaded\n",
      "shard_46665 loaded\n",
      "shard_25648 loaded\n",
      "shard_34807 loaded\n",
      "shard_18732 loaded\n",
      "shard_10049 loaded\n",
      "shard_21680 loaded\n",
      "shard_38732 loaded\n",
      "shard_5169 loaded\n",
      "shard_9097 loaded\n",
      "shard_23461 loaded\n",
      "shard_24248 loaded\n",
      "shard_11841 loaded\n",
      "shard_21056 loaded\n",
      "shard_48307 loaded\n",
      "shard_40202 loaded\n",
      "shard_11537 loaded\n",
      "shard_13841 loaded\n",
      "shard_35100 loaded\n",
      "shard_16328 loaded\n",
      "shard_20895 loaded\n",
      "shard_3258 loaded\n",
      "shard_39123 loaded\n",
      "shard_17669 loaded\n",
      "shard_31697 loaded\n",
      "shard_11680 loaded\n",
      "shard_20199 loaded\n",
      "shard_1833 loaded\n",
      "shard_38881 loaded\n",
      "shard_49537 loaded\n",
      "shard_10844 loaded\n",
      "shard_24988 loaded\n",
      "shard_38448 loaded\n",
      "shard_10308 loaded\n",
      "shard_36187 loaded\n",
      "shard_21754 loaded\n",
      "shard_10677 loaded\n",
      "shard_42719 loaded\n",
      "shard_47171 loaded\n",
      "shard_29324 loaded\n",
      "shard_9555 loaded\n",
      "shard_30593 loaded\n",
      "shard_25634 loaded\n",
      "shard_38504 loaded\n",
      "shard_40322 loaded\n",
      "shard_42579 loaded\n",
      "shard_1931 loaded\n",
      "shard_29291 loaded\n",
      "shard_22765 loaded\n",
      "shard_23789 loaded\n",
      "shard_8817 loaded\n",
      "shard_17593 loaded\n",
      "shard_27078 loaded\n",
      "shard_26158 loaded\n",
      "shard_26036 loaded\n",
      "shard_20077 loaded\n",
      "shard_6854 loaded\n",
      "shard_30193 loaded\n",
      "shard_1605 loaded\n",
      "shard_11779 loaded\n",
      "shard_18961 loaded\n",
      "shard_32862 loaded\n",
      "shard_27121 loaded\n",
      "shard_536 loaded\n",
      "shard_16462 loaded\n",
      "shard_29848 loaded\n",
      "shard_13474 loaded\n",
      "shard_2163 loaded\n",
      "shard_42019 loaded\n",
      "shard_9206 loaded\n",
      "shard_13368 loaded\n",
      "shard_22859 loaded\n",
      "shard_43587 loaded\n",
      "shard_42291 loaded\n",
      "shard_2441 loaded\n",
      "shard_22036 loaded\n",
      "shard_39617 loaded\n",
      "shard_30710 loaded\n",
      "shard_34206 loaded\n",
      "shard_49587 loaded\n",
      "shard_28733 loaded\n",
      "shard_30397 loaded\n",
      "shard_23135 loaded\n",
      "shard_18232 loaded\n",
      "shard_12134 loaded\n",
      "shard_11354 loaded\n",
      "shard_47903 loaded\n",
      "shard_43455 loaded\n",
      "shard_29312 loaded\n",
      "shard_43199 loaded\n",
      "shard_8829 loaded\n",
      "shard_14262 loaded\n",
      "shard_33731 loaded\n",
      "shard_1971 loaded\n",
      "shard_48526 loaded\n",
      "shard_662 loaded\n",
      "shard_8323 loaded\n",
      "shard_9388 loaded\n",
      "shard_47272 loaded\n",
      "shard_30563 loaded\n",
      "shard_32034 loaded\n",
      "shard_6876 loaded\n",
      "shard_19004 loaded\n",
      "shard_32819 loaded\n",
      "shard_25860 loaded\n",
      "shard_19727 loaded\n",
      "shard_665 loaded\n",
      "shard_6976 loaded\n",
      "shard_7216 loaded\n",
      "shard_45992 loaded\n",
      "shard_37017 loaded\n",
      "shard_18261 loaded\n",
      "shard_40940 loaded\n",
      "shard_24354 loaded\n",
      "shard_12066 loaded\n",
      "shard_44559 loaded\n",
      "shard_8224 loaded\n",
      "shard_16953 loaded\n",
      "shard_43020 loaded\n",
      "shard_5947 loaded\n",
      "shard_10608 loaded\n",
      "shard_46071 loaded\n",
      "shard_44166 loaded\n",
      "shard_17915 loaded\n",
      "shard_49772 loaded\n",
      "shard_14052 loaded\n",
      "shard_4415 loaded\n",
      "shard_13788 loaded\n",
      "shard_34146 loaded\n",
      "shard_16618 loaded\n",
      "shard_48046 loaded\n",
      "shard_2991 loaded\n",
      "shard_4222 loaded\n",
      "shard_1721 loaded\n",
      "shard_23646 loaded\n",
      "shard_35149 loaded\n",
      "shard_17391 loaded\n",
      "shard_2647 loaded\n",
      "shard_2656 loaded\n",
      "shard_47984 loaded\n",
      "shard_44886 loaded\n",
      "shard_11716 loaded\n",
      "shard_14386 loaded\n",
      "shard_21767 loaded\n",
      "shard_49580 loaded\n",
      "shard_45104 loaded\n",
      "shard_6335 loaded\n",
      "shard_20445 loaded\n",
      "shard_9063 loaded\n",
      "shard_21409 loaded\n",
      "shard_4550 loaded\n",
      "shard_27087 loaded\n",
      "shard_3143 loaded\n",
      "shard_34640 loaded\n",
      "shard_37482 loaded\n",
      "shard_24584 loaded\n",
      "shard_6824 loaded\n",
      "shard_30800 loaded\n",
      "shard_37026 loaded\n",
      "shard_17517 loaded\n",
      "shard_31775 loaded\n",
      "shard_13522 loaded\n",
      "shard_26053 loaded\n",
      "shard_3968 loaded\n",
      "shard_26099 loaded\n",
      "shard_4347 loaded\n",
      "shard_42030 loaded\n",
      "shard_6933 loaded\n",
      "shard_6752 loaded\n",
      "shard_13897 loaded\n",
      "shard_16266 loaded\n",
      "shard_37841 loaded\n",
      "shard_2652 loaded\n",
      "shard_27653 loaded\n",
      "shard_17106 loaded\n",
      "shard_17068 loaded\n",
      "shard_5308 loaded\n",
      "shard_44240 loaded\n",
      "shard_47477 loaded\n",
      "shard_7161 loaded\n",
      "shard_10413 loaded\n",
      "shard_46285 loaded\n",
      "shard_6243 loaded\n",
      "shard_13190 loaded\n",
      "shard_23526 loaded\n",
      "shard_9194 loaded\n",
      "shard_13154 loaded\n",
      "shard_32052 loaded\n",
      "shard_43554 loaded\n",
      "shard_36364 loaded\n",
      "shard_14279 loaded\n",
      "shard_23149 loaded\n",
      "shard_41827 loaded\n",
      "shard_16766 loaded\n",
      "shard_30919 loaded\n",
      "shard_22439 loaded\n",
      "shard_31398 loaded\n",
      "shard_32338 loaded\n",
      "shard_30597 loaded\n",
      "shard_34337 loaded\n",
      "shard_48569 loaded\n",
      "shard_10951 loaded\n",
      "shard_35597 loaded\n",
      "shard_35923 loaded\n",
      "shard_19297 loaded\n",
      "shard_25035 loaded\n",
      "shard_36155 loaded\n",
      "shard_18046 loaded\n",
      "shard_35685 loaded\n",
      "shard_37360 loaded\n",
      "shard_37539 loaded\n",
      "shard_9530 loaded\n",
      "shard_16364 loaded\n",
      "shard_20889 loaded\n",
      "shard_39561 loaded\n",
      "shard_4289 loaded\n",
      "shard_23170 loaded\n",
      "shard_22369 loaded\n",
      "shard_47283 loaded\n",
      "shard_9193 loaded\n",
      "shard_19985 loaded\n",
      "shard_17569 loaded\n",
      "shard_21536 loaded\n",
      "shard_23262 loaded\n",
      "shard_36127 loaded\n",
      "shard_34994 loaded\n",
      "shard_46987 loaded\n",
      "shard_8287 loaded\n",
      "shard_18324 loaded\n",
      "shard_19214 loaded\n",
      "shard_2225 loaded\n",
      "shard_37618 loaded\n",
      "shard_34903 loaded\n",
      "shard_18606 loaded\n",
      "shard_38311 loaded\n",
      "shard_32798 loaded\n",
      "shard_43707 loaded\n",
      "shard_8104 loaded\n",
      "shard_25612 loaded\n",
      "shard_25959 loaded\n",
      "shard_47376 loaded\n",
      "shard_29584 loaded\n",
      "shard_17458 loaded\n",
      "shard_30370 loaded\n",
      "shard_34415 loaded\n",
      "shard_1015 loaded\n",
      "shard_7737 loaded\n",
      "shard_2313 loaded\n",
      "shard_18767 loaded\n",
      "shard_43499 loaded\n",
      "shard_17209 loaded\n",
      "shard_31935 loaded\n",
      "shard_46528 loaded\n",
      "shard_9761 loaded\n",
      "shard_34718 loaded\n",
      "shard_20036 loaded\n",
      "shard_33582 loaded\n",
      "shard_629 loaded\n",
      "shard_31806 loaded\n",
      "shard_26139 loaded\n",
      "shard_44952 loaded\n",
      "shard_48176 loaded\n",
      "shard_29175 loaded\n",
      "shard_49321 loaded\n",
      "shard_4932 loaded\n",
      "shard_12473 loaded\n",
      "shard_32774 loaded\n",
      "shard_20304 loaded\n",
      "shard_7001 loaded\n",
      "shard_33636 loaded\n",
      "shard_19435 loaded\n",
      "shard_19140 loaded\n",
      "shard_47744 loaded\n",
      "shard_34603 loaded\n",
      "shard_22881 loaded\n",
      "shard_32637 loaded\n",
      "shard_47011 loaded\n",
      "shard_45868 loaded\n",
      "shard_47266 loaded\n",
      "shard_18949 loaded\n",
      "shard_47977 loaded\n",
      "shard_18320 loaded\n",
      "shard_9566 loaded\n",
      "shard_7567 loaded\n",
      "shard_349 loaded\n",
      "shard_14467 loaded\n",
      "shard_11665 loaded\n",
      "shard_35399 loaded\n",
      "shard_37744 loaded\n",
      "shard_8370 loaded\n",
      "shard_39720 loaded\n",
      "shard_23855 loaded\n",
      "shard_33793 loaded\n",
      "shard_20688 loaded\n",
      "shard_10930 loaded\n",
      "shard_15665 loaded\n",
      "shard_33863 loaded\n",
      "shard_11463 loaded\n",
      "shard_46430 loaded\n",
      "shard_20144 loaded\n",
      "shard_40231 loaded\n",
      "shard_17606 loaded\n",
      "shard_15331 loaded\n",
      "shard_40791 loaded\n",
      "shard_23869 loaded\n",
      "shard_45133 loaded\n",
      "shard_21180 loaded\n",
      "shard_42646 loaded\n",
      "shard_25781 loaded\n",
      "shard_33085 loaded\n",
      "shard_44399 loaded\n",
      "shard_19946 loaded\n",
      "shard_21803 loaded\n",
      "shard_22975 loaded\n",
      "shard_31579 loaded\n",
      "shard_27786 loaded\n",
      "shard_39584 loaded\n",
      "shard_48125 loaded\n",
      "shard_39883 loaded\n",
      "shard_25051 loaded\n",
      "shard_35001 loaded\n",
      "shard_27414 loaded\n",
      "shard_44672 loaded\n",
      "shard_7468 loaded\n",
      "shard_45951 loaded\n",
      "shard_35989 loaded\n",
      "shard_43275 loaded\n",
      "shard_28526 loaded\n",
      "shard_45069 loaded\n",
      "shard_44715 loaded\n",
      "shard_5189 loaded\n",
      "shard_38413 loaded\n",
      "shard_22465 loaded\n",
      "shard_11194 loaded\n",
      "shard_10056 loaded\n",
      "shard_38339 loaded\n",
      "shard_35445 loaded\n",
      "shard_41520 loaded\n",
      "shard_12694 loaded\n",
      "shard_7312 loaded\n",
      "shard_47127 loaded\n",
      "shard_32138 loaded\n",
      "shard_27914 loaded\n",
      "shard_25134 loaded\n",
      "shard_3997 loaded\n",
      "shard_26352 loaded\n",
      "shard_40597 loaded\n",
      "shard_17645 loaded\n",
      "shard_35630 loaded\n",
      "shard_35261 loaded\n",
      "shard_20638 loaded\n",
      "shard_10655 loaded\n",
      "shard_35119 loaded\n",
      "shard_4296 loaded\n",
      "shard_15421 loaded\n",
      "shard_38751 loaded\n",
      "shard_6208 loaded\n",
      "shard_9629 loaded\n",
      "shard_19751 loaded\n",
      "shard_33969 loaded\n",
      "shard_48379 loaded\n",
      "shard_27456 loaded\n",
      "shard_39765 loaded\n",
      "shard_16417 loaded\n",
      "shard_25215 loaded\n",
      "shard_29788 loaded\n",
      "shard_3341 loaded\n",
      "shard_24096 loaded\n",
      "shard_25497 loaded\n",
      "shard_21932 loaded\n",
      "shard_15219 loaded\n",
      "shard_42308 loaded\n",
      "shard_40909 loaded\n",
      "shard_12345 loaded\n",
      "shard_28451 loaded\n",
      "shard_48596 loaded\n",
      "shard_21026 loaded\n",
      "shard_329 loaded\n",
      "shard_16720 loaded\n",
      "shard_7186 loaded\n",
      "shard_30192 loaded\n",
      "shard_12889 loaded\n",
      "shard_8566 loaded\n",
      "shard_34930 loaded\n",
      "shard_19753 loaded\n",
      "shard_42168 loaded\n",
      "shard_8297 loaded\n",
      "shard_2100 loaded\n",
      "shard_32894 loaded\n",
      "shard_23513 loaded\n",
      "shard_29830 loaded\n",
      "shard_4669 loaded\n",
      "shard_36692 loaded\n",
      "shard_11144 loaded\n",
      "shard_5665 loaded\n",
      "shard_47710 loaded\n",
      "shard_47914 loaded\n",
      "shard_24026 loaded\n",
      "shard_33987 loaded\n",
      "shard_41483 loaded\n",
      "shard_45555 loaded\n",
      "shard_41437 loaded\n",
      "shard_29819 loaded\n",
      "shard_16519 loaded\n",
      "shard_11658 loaded\n",
      "shard_34816 loaded\n",
      "shard_40606 loaded\n",
      "shard_47701 loaded\n",
      "shard_43607 loaded\n",
      "shard_22410 loaded\n",
      "shard_12782 loaded\n",
      "shard_37146 loaded\n",
      "shard_18099 loaded\n",
      "shard_41231 loaded\n",
      "shard_5158 loaded\n",
      "shard_17467 loaded\n",
      "shard_49342 loaded\n",
      "shard_2774 loaded\n",
      "shard_30621 loaded\n",
      "shard_4369 loaded\n",
      "shard_45134 loaded\n",
      "shard_30405 loaded\n",
      "shard_16466 loaded\n",
      "shard_14062 loaded\n",
      "shard_7553 loaded\n",
      "shard_7696 loaded\n",
      "shard_41868 loaded\n",
      "shard_13186 loaded\n",
      "shard_46348 loaded\n",
      "shard_37464 loaded\n",
      "shard_535 loaded\n",
      "shard_30580 loaded\n",
      "shard_32546 loaded\n",
      "shard_29141 loaded\n",
      "shard_5808 loaded\n",
      "shard_30740 loaded\n",
      "shard_6185 loaded\n",
      "shard_25470 loaded\n",
      "shard_9109 loaded\n",
      "shard_9104 loaded\n",
      "shard_18301 loaded\n",
      "shard_7290 loaded\n",
      "shard_17034 loaded\n",
      "shard_22920 loaded\n",
      "shard_6251 loaded\n",
      "shard_41900 loaded\n",
      "shard_6501 loaded\n",
      "shard_27635 loaded\n",
      "shard_13418 loaded\n",
      "shard_4085 loaded\n",
      "shard_6176 loaded\n",
      "shard_42904 loaded\n",
      "shard_3401 loaded\n",
      "shard_41211 loaded\n",
      "shard_19229 loaded\n",
      "shard_6032 loaded\n",
      "shard_21408 loaded\n",
      "shard_5830 loaded\n",
      "shard_36535 loaded\n",
      "shard_14060 loaded\n",
      "shard_37470 loaded\n",
      "shard_28413 loaded\n",
      "shard_47980 loaded\n",
      "shard_14393 loaded\n",
      "shard_39364 loaded\n",
      "shard_36197 loaded\n",
      "shard_36582 loaded\n",
      "shard_49518 loaded\n",
      "shard_38658 loaded\n",
      "shard_21471 loaded\n",
      "shard_47957 loaded\n",
      "shard_47373 loaded\n",
      "shard_42576 loaded\n",
      "shard_119 loaded\n",
      "shard_19053 loaded\n",
      "shard_47256 loaded\n",
      "shard_22517 loaded\n",
      "shard_24357 loaded\n",
      "shard_44987 loaded\n",
      "shard_2904 loaded\n",
      "shard_9777 loaded\n",
      "shard_8181 loaded\n",
      "shard_37037 loaded\n",
      "shard_35258 loaded\n",
      "shard_47974 loaded\n",
      "shard_47634 loaded\n",
      "shard_13404 loaded\n",
      "shard_24502 loaded\n",
      "shard_3006 loaded\n",
      "shard_15013 loaded\n",
      "shard_45812 loaded\n",
      "shard_1494 loaded\n",
      "shard_5719 loaded\n",
      "shard_39109 loaded\n",
      "shard_10806 loaded\n",
      "shard_33702 loaded\n",
      "shard_31756 loaded\n",
      "shard_31965 loaded\n",
      "shard_24222 loaded\n",
      "shard_18655 loaded\n",
      "shard_23896 loaded\n",
      "shard_40590 loaded\n",
      "shard_3202 loaded\n",
      "shard_10374 loaded\n",
      "shard_39357 loaded\n",
      "shard_1734 loaded\n",
      "shard_42939 loaded\n",
      "shard_23922 loaded\n",
      "shard_22101 loaded\n",
      "shard_15018 loaded\n",
      "shard_33223 loaded\n",
      "shard_24025 loaded\n",
      "shard_3512 loaded\n",
      "shard_49337 loaded\n",
      "shard_42859 loaded\n",
      "shard_1783 loaded\n",
      "shard_24795 loaded\n",
      "shard_22380 loaded\n",
      "shard_8717 loaded\n",
      "shard_31834 loaded\n",
      "shard_10028 loaded\n",
      "shard_19843 loaded\n",
      "shard_3732 loaded\n",
      "shard_1395 loaded\n",
      "shard_14424 loaded\n",
      "shard_3999 loaded\n",
      "shard_13901 loaded\n",
      "shard_38164 loaded\n",
      "shard_20872 loaded\n",
      "shard_30670 loaded\n",
      "shard_16337 loaded\n",
      "shard_37139 loaded\n",
      "shard_26948 loaded\n",
      "shard_4702 loaded\n",
      "shard_17011 loaded\n",
      "shard_28387 loaded\n",
      "shard_26932 loaded\n",
      "shard_36037 loaded\n",
      "shard_38272 loaded\n",
      "shard_38503 loaded\n",
      "shard_44666 loaded\n",
      "shard_22214 loaded\n",
      "shard_40722 loaded\n",
      "shard_48602 loaded\n",
      "shard_46786 loaded\n",
      "shard_10114 loaded\n",
      "shard_26263 loaded\n",
      "shard_19095 loaded\n",
      "shard_659 loaded\n",
      "shard_21322 loaded\n",
      "shard_18082 loaded\n",
      "shard_32789 loaded\n",
      "shard_34991 loaded\n",
      "shard_11963 loaded\n",
      "shard_45369 loaded\n",
      "shard_24196 loaded\n",
      "shard_35692 loaded\n",
      "shard_992 loaded\n",
      "shard_5950 loaded\n",
      "shard_23724 loaded\n",
      "shard_46892 loaded\n",
      "shard_24759 loaded\n",
      "shard_31944 loaded\n",
      "shard_33103 loaded\n",
      "shard_49561 loaded\n",
      "shard_46352 loaded\n",
      "shard_2998 loaded\n",
      "shard_44077 loaded\n",
      "shard_16009 loaded\n",
      "shard_25074 loaded\n",
      "shard_6890 loaded\n",
      "shard_33638 loaded\n",
      "shard_3955 loaded\n",
      "shard_19935 loaded\n",
      "shard_26841 loaded\n",
      "shard_23469 loaded\n",
      "shard_33139 loaded\n",
      "shard_14688 loaded\n",
      "shard_38229 loaded\n",
      "shard_2034 loaded\n",
      "shard_37296 loaded\n",
      "shard_1411 loaded\n",
      "shard_2326 loaded\n",
      "shard_40612 loaded\n",
      "shard_12367 loaded\n",
      "shard_49432 loaded\n",
      "shard_3588 loaded\n",
      "shard_38593 loaded\n",
      "shard_8625 loaded\n",
      "shard_46298 loaded\n",
      "shard_34681 loaded\n",
      "shard_28053 loaded\n",
      "shard_21612 loaded\n",
      "shard_900 loaded\n",
      "shard_40558 loaded\n",
      "shard_11412 loaded\n",
      "shard_35964 loaded\n",
      "shard_40424 loaded\n",
      "shard_16747 loaded\n",
      "shard_44931 loaded\n",
      "shard_48747 loaded\n",
      "shard_2133 loaded\n",
      "shard_12202 loaded\n",
      "shard_4494 loaded\n",
      "shard_15811 loaded\n",
      "shard_35960 loaded\n",
      "shard_17205 loaded\n",
      "shard_38205 loaded\n",
      "shard_33016 loaded\n",
      "shard_35244 loaded\n",
      "shard_8547 loaded\n",
      "shard_32365 loaded\n",
      "shard_21064 loaded\n",
      "shard_49452 loaded\n",
      "shard_4433 loaded\n",
      "shard_47917 loaded\n",
      "shard_12442 loaded\n",
      "shard_41333 loaded\n",
      "shard_32877 loaded\n",
      "shard_4355 loaded\n",
      "shard_48449 loaded\n",
      "shard_24856 loaded\n",
      "shard_45128 loaded\n",
      "shard_43240 loaded\n",
      "shard_17450 loaded\n",
      "shard_7218 loaded\n",
      "shard_14617 loaded\n",
      "shard_14801 loaded\n",
      "shard_16176 loaded\n",
      "shard_17600 loaded\n",
      "shard_4435 loaded\n",
      "shard_23197 loaded\n",
      "shard_9362 loaded\n",
      "shard_31350 loaded\n",
      "shard_33235 loaded\n",
      "shard_31291 loaded\n",
      "shard_43127 loaded\n",
      "shard_3705 loaded\n",
      "shard_9596 loaded\n",
      "shard_16285 loaded\n",
      "shard_18037 loaded\n",
      "shard_11407 loaded\n",
      "shard_28185 loaded\n",
      "shard_34431 loaded\n",
      "shard_37740 loaded\n",
      "shard_9045 loaded\n",
      "shard_6492 loaded\n",
      "shard_8762 loaded\n",
      "shard_15664 loaded\n",
      "shard_18344 loaded\n",
      "shard_19258 loaded\n",
      "shard_33173 loaded\n",
      "shard_10665 loaded\n",
      "shard_39892 loaded\n",
      "shard_23620 loaded\n",
      "shard_39682 loaded\n",
      "shard_77 loaded\n",
      "shard_9381 loaded\n",
      "shard_20470 loaded\n",
      "shard_7787 loaded\n",
      "shard_12100 loaded\n",
      "shard_20982 loaded\n",
      "shard_23374 loaded\n",
      "shard_37725 loaded\n",
      "shard_29467 loaded\n",
      "shard_12990 loaded\n",
      "shard_7852 loaded\n",
      "shard_46782 loaded\n",
      "shard_30470 loaded\n",
      "shard_6277 loaded\n",
      "shard_19875 loaded\n",
      "shard_3592 loaded\n",
      "shard_8797 loaded\n",
      "shard_11840 loaded\n",
      "shard_38845 loaded\n",
      "shard_39307 loaded\n",
      "shard_41876 loaded\n",
      "shard_45609 loaded\n",
      "shard_3034 loaded\n",
      "shard_25385 loaded\n",
      "shard_34990 loaded\n",
      "shard_27646 loaded\n",
      "shard_23349 loaded\n",
      "shard_31510 loaded\n",
      "shard_18279 loaded\n",
      "shard_35322 loaded\n",
      "shard_18493 loaded\n",
      "shard_44939 loaded\n",
      "shard_8120 loaded\n",
      "shard_5666 loaded\n",
      "shard_3061 loaded\n",
      "shard_38610 loaded\n",
      "shard_35504 loaded\n",
      "shard_33576 loaded\n",
      "shard_44223 loaded\n",
      "shard_48527 loaded\n",
      "shard_33696 loaded\n",
      "shard_22721 loaded\n",
      "shard_13106 loaded\n",
      "shard_2861 loaded\n",
      "shard_48102 loaded\n",
      "shard_24794 loaded\n",
      "shard_28819 loaded\n",
      "shard_32126 loaded\n",
      "shard_36872 loaded\n",
      "shard_6997 loaded\n",
      "shard_5006 loaded\n",
      "shard_18617 loaded\n",
      "shard_4786 loaded\n",
      "shard_4277 loaded\n",
      "shard_14738 loaded\n",
      "shard_10664 loaded\n",
      "shard_43400 loaded\n",
      "shard_12979 loaded\n",
      "shard_3925 loaded\n",
      "shard_44988 loaded\n",
      "shard_9296 loaded\n",
      "shard_41993 loaded\n",
      "shard_30837 loaded\n",
      "shard_14259 loaded\n",
      "shard_14457 loaded\n",
      "shard_16154 loaded\n",
      "shard_8784 loaded\n",
      "shard_9907 loaded\n",
      "shard_15691 loaded\n",
      "shard_23992 loaded\n",
      "shard_48162 loaded\n",
      "shard_7601 loaded\n",
      "shard_36554 loaded\n",
      "shard_17245 loaded\n",
      "shard_25755 loaded\n",
      "shard_44340 loaded\n",
      "shard_4670 loaded\n",
      "shard_1915 loaded\n",
      "shard_28059 loaded\n",
      "shard_21557 loaded\n",
      "shard_42796 loaded\n",
      "shard_30368 loaded\n",
      "shard_1451 loaded\n",
      "shard_14599 loaded\n",
      "shard_4624 loaded\n",
      "shard_38902 loaded\n",
      "shard_18171 loaded\n",
      "shard_32768 loaded\n",
      "shard_2358 loaded\n",
      "shard_26360 loaded\n",
      "shard_33518 loaded\n",
      "shard_18710 loaded\n",
      "shard_28877 loaded\n",
      "shard_48594 loaded\n",
      "shard_49379 loaded\n",
      "shard_2759 loaded\n",
      "shard_47913 loaded\n",
      "shard_21044 loaded\n",
      "shard_48020 loaded\n",
      "shard_8619 loaded\n",
      "shard_38837 loaded\n",
      "shard_13747 loaded\n",
      "shard_24486 loaded\n",
      "shard_371 loaded\n",
      "shard_11307 loaded\n",
      "shard_24817 loaded\n",
      "shard_16852 loaded\n",
      "shard_13516 loaded\n",
      "shard_28099 loaded\n",
      "shard_3002 loaded\n",
      "shard_8722 loaded\n",
      "shard_12276 loaded\n",
      "shard_27050 loaded\n",
      "shard_28920 loaded\n",
      "shard_36456 loaded\n",
      "shard_48721 loaded\n",
      "shard_27044 loaded\n",
      "shard_32926 loaded\n",
      "shard_46324 loaded\n",
      "shard_4598 loaded\n",
      "shard_9550 loaded\n",
      "shard_38617 loaded\n",
      "shard_22731 loaded\n",
      "shard_2525 loaded\n",
      "shard_3983 loaded\n",
      "shard_41613 loaded\n",
      "shard_31907 loaded\n",
      "shard_34141 loaded\n",
      "shard_10380 loaded\n",
      "shard_9257 loaded\n",
      "shard_8172 loaded\n",
      "shard_34334 loaded\n",
      "shard_5292 loaded\n",
      "shard_33855 loaded\n",
      "shard_5713 loaded\n",
      "shard_26615 loaded\n",
      "shard_16456 loaded\n",
      "shard_39604 loaded\n",
      "shard_5586 loaded\n",
      "shard_7987 loaded\n",
      "shard_43966 loaded\n",
      "shard_49054 loaded\n",
      "shard_42889 loaded\n",
      "shard_13475 loaded\n",
      "shard_45374 loaded\n",
      "shard_20869 loaded\n",
      "shard_31366 loaded\n",
      "shard_5333 loaded\n",
      "shard_47126 loaded\n",
      "shard_28540 loaded\n",
      "shard_44191 loaded\n",
      "shard_18404 loaded\n",
      "shard_21962 loaded\n",
      "shard_4551 loaded\n",
      "shard_30709 loaded\n",
      "shard_46422 loaded\n",
      "shard_31361 loaded\n",
      "shard_4750 loaded\n",
      "shard_14905 loaded\n",
      "shard_14081 loaded\n",
      "shard_27562 loaded\n",
      "shard_36848 loaded\n",
      "shard_38473 loaded\n",
      "shard_23019 loaded\n",
      "shard_34729 loaded\n",
      "shard_19483 loaded\n",
      "shard_39286 loaded\n",
      "shard_30718 loaded\n",
      "shard_43880 loaded\n",
      "shard_22222 loaded\n",
      "shard_2645 loaded\n",
      "shard_12733 loaded\n",
      "shard_41285 loaded\n",
      "shard_34253 loaded\n",
      "shard_26518 loaded\n",
      "shard_17012 loaded\n",
      "shard_22229 loaded\n",
      "shard_7268 loaded\n",
      "shard_33975 loaded\n",
      "shard_45704 loaded\n",
      "shard_36883 loaded\n",
      "shard_13414 loaded\n",
      "shard_30514 loaded\n",
      "shard_42593 loaded\n",
      "shard_4686 loaded\n",
      "shard_33495 loaded\n",
      "shard_47843 loaded\n",
      "shard_19605 loaded\n",
      "shard_1031 loaded\n",
      "shard_48028 loaded\n",
      "shard_32858 loaded\n",
      "shard_30018 loaded\n",
      "shard_20449 loaded\n",
      "shard_16284 loaded\n",
      "shard_10355 loaded\n",
      "shard_25598 loaded\n",
      "shard_12507 loaded\n",
      "shard_28671 loaded\n",
      "shard_496 loaded\n",
      "shard_41512 loaded\n",
      "shard_14552 loaded\n",
      "shard_42174 loaded\n",
      "shard_42797 loaded\n",
      "shard_8551 loaded\n",
      "shard_22050 loaded\n",
      "shard_36842 loaded\n",
      "shard_28740 loaded\n",
      "shard_39534 loaded\n",
      "shard_30303 loaded\n",
      "shard_39598 loaded\n",
      "shard_4453 loaded\n",
      "shard_1357 loaded\n",
      "shard_3435 loaded\n",
      "shard_36237 loaded\n",
      "shard_19700 loaded\n",
      "shard_20058 loaded\n",
      "shard_14185 loaded\n",
      "shard_6928 loaded\n",
      "shard_8579 loaded\n",
      "shard_10540 loaded\n",
      "shard_5350 loaded\n",
      "shard_7944 loaded\n",
      "shard_49318 loaded\n",
      "shard_7310 loaded\n",
      "shard_3903 loaded\n",
      "shard_7745 loaded\n",
      "shard_7923 loaded\n",
      "shard_38483 loaded\n",
      "shard_28731 loaded\n",
      "shard_37315 loaded\n",
      "shard_36735 loaded\n",
      "shard_42328 loaded\n",
      "shard_34567 loaded\n",
      "shard_1072 loaded\n",
      "shard_12221 loaded\n",
      "shard_34457 loaded\n",
      "shard_32230 loaded\n",
      "shard_11885 loaded\n",
      "shard_42993 loaded\n",
      "shard_25252 loaded\n",
      "shard_34220 loaded\n",
      "shard_12489 loaded\n",
      "shard_18784 loaded\n",
      "shard_45230 loaded\n",
      "shard_11676 loaded\n",
      "shard_5695 loaded\n",
      "shard_37064 loaded\n",
      "shard_12186 loaded\n",
      "shard_10357 loaded\n",
      "shard_8848 loaded\n",
      "shard_28487 loaded\n",
      "shard_30533 loaded\n",
      "shard_45336 loaded\n",
      "shard_44624 loaded\n",
      "shard_24191 loaded\n",
      "shard_37894 loaded\n",
      "shard_27030 loaded\n",
      "shard_39137 loaded\n",
      "shard_32928 loaded\n",
      "shard_31754 loaded\n",
      "shard_10614 loaded\n",
      "shard_21167 loaded\n",
      "shard_41059 loaded\n",
      "shard_26466 loaded\n",
      "shard_13194 loaded\n",
      "shard_14483 loaded\n",
      "shard_29609 loaded\n",
      "shard_44309 loaded\n",
      "shard_9917 loaded\n",
      "shard_3984 loaded\n",
      "shard_33936 loaded\n",
      "shard_34596 loaded\n",
      "shard_36930 loaded\n",
      "shard_11188 loaded\n",
      "shard_2365 loaded\n",
      "shard_2165 loaded\n",
      "shard_46657 loaded\n",
      "shard_32769 loaded\n",
      "shard_16916 loaded\n",
      "shard_8240 loaded\n",
      "shard_21677 loaded\n",
      "shard_10850 loaded\n",
      "shard_16617 loaded\n",
      "shard_22882 loaded\n",
      "shard_21034 loaded\n",
      "shard_36313 loaded\n",
      "shard_41407 loaded\n",
      "shard_13441 loaded\n",
      "shard_19601 loaded\n",
      "shard_33359 loaded\n",
      "shard_11670 loaded\n",
      "shard_48119 loaded\n",
      "shard_31423 loaded\n",
      "shard_38155 loaded\n",
      "shard_24687 loaded\n",
      "shard_41157 loaded\n",
      "shard_37067 loaded\n",
      "shard_13204 loaded\n",
      "shard_34342 loaded\n",
      "shard_44809 loaded\n",
      "shard_23100 loaded\n",
      "shard_46586 loaded\n",
      "shard_38432 loaded\n",
      "shard_48766 loaded\n",
      "shard_94 loaded\n",
      "shard_32421 loaded\n",
      "shard_2558 loaded\n",
      "shard_17923 loaded\n",
      "shard_16983 loaded\n",
      "shard_31601 loaded\n",
      "shard_46729 loaded\n",
      "shard_354 loaded\n",
      "shard_13778 loaded\n",
      "shard_20554 loaded\n",
      "shard_32317 loaded\n",
      "shard_19058 loaded\n",
      "shard_11688 loaded\n",
      "shard_11793 loaded\n",
      "shard_22808 loaded\n",
      "shard_46256 loaded\n",
      "shard_36775 loaded\n",
      "shard_34358 loaded\n",
      "shard_33996 loaded\n",
      "shard_34682 loaded\n",
      "shard_46320 loaded\n",
      "shard_14256 loaded\n",
      "shard_10723 loaded\n",
      "shard_16310 loaded\n",
      "shard_35568 loaded\n",
      "shard_16547 loaded\n",
      "shard_8010 loaded\n",
      "shard_18560 loaded\n",
      "shard_40045 loaded\n",
      "shard_27634 loaded\n",
      "shard_47545 loaded\n",
      "shard_26791 loaded\n",
      "shard_25446 loaded\n",
      "shard_43351 loaded\n",
      "shard_38841 loaded\n",
      "shard_47427 loaded\n",
      "shard_11020 loaded\n",
      "shard_21087 loaded\n",
      "shard_12297 loaded\n",
      "shard_1725 loaded\n",
      "shard_17850 loaded\n",
      "shard_24163 loaded\n",
      "shard_38366 loaded\n",
      "shard_21727 loaded\n",
      "shard_1602 loaded\n",
      "shard_41516 loaded\n",
      "shard_41461 loaded\n",
      "shard_27498 loaded\n",
      "shard_36969 loaded\n",
      "shard_23636 loaded\n",
      "shard_25469 loaded\n",
      "shard_48222 loaded\n",
      "shard_27175 loaded\n",
      "shard_44814 loaded\n",
      "shard_31187 loaded\n",
      "shard_22404 loaded\n",
      "shard_20856 loaded\n",
      "shard_29415 loaded\n",
      "shard_26838 loaded\n",
      "shard_9948 loaded\n",
      "shard_26617 loaded\n",
      "shard_21393 loaded\n",
      "shard_7928 loaded\n",
      "shard_22610 loaded\n",
      "shard_9648 loaded\n",
      "shard_21284 loaded\n",
      "shard_33868 loaded\n",
      "shard_7585 loaded\n",
      "shard_10587 loaded\n",
      "shard_12524 loaded\n",
      "shard_6974 loaded\n",
      "shard_15099 loaded\n",
      "shard_6560 loaded\n",
      "shard_34451 loaded\n",
      "shard_21599 loaded\n",
      "shard_17938 loaded\n",
      "shard_32676 loaded\n",
      "shard_38159 loaded\n",
      "shard_19151 loaded\n",
      "shard_45271 loaded\n",
      "shard_4388 loaded\n",
      "shard_14121 loaded\n",
      "shard_26847 loaded\n",
      "shard_19234 loaded\n",
      "shard_22060 loaded\n",
      "shard_28589 loaded\n",
      "shard_26647 loaded\n",
      "shard_46547 loaded\n",
      "shard_43666 loaded\n",
      "shard_15082 loaded\n",
      "shard_12431 loaded\n",
      "shard_23835 loaded\n",
      "shard_26309 loaded\n",
      "shard_27005 loaded\n",
      "shard_17294 loaded\n",
      "shard_29035 loaded\n",
      "shard_22773 loaded\n",
      "shard_45502 loaded\n",
      "shard_45852 loaded\n",
      "shard_17541 loaded\n",
      "shard_34890 loaded\n",
      "shard_29693 loaded\n",
      "shard_38556 loaded\n",
      "shard_18622 loaded\n",
      "shard_27874 loaded\n",
      "shard_42669 loaded\n",
      "shard_40798 loaded\n",
      "shard_47590 loaded\n",
      "shard_46686 loaded\n",
      "shard_4321 loaded\n",
      "shard_21315 loaded\n",
      "shard_46658 loaded\n",
      "shard_86 loaded\n",
      "shard_775 loaded\n",
      "shard_39081 loaded\n",
      "shard_32248 loaded\n",
      "shard_31102 loaded\n",
      "shard_10742 loaded\n",
      "shard_21441 loaded\n",
      "shard_14819 loaded\n",
      "shard_20575 loaded\n",
      "shard_46821 loaded\n",
      "shard_22102 loaded\n",
      "shard_1914 loaded\n",
      "shard_17616 loaded\n",
      "shard_18683 loaded\n",
      "shard_27237 loaded\n",
      "shard_39718 loaded\n",
      "shard_8581 loaded\n",
      "shard_1478 loaded\n",
      "shard_48634 loaded\n",
      "shard_39707 loaded\n",
      "shard_16867 loaded\n",
      "shard_39434 loaded\n",
      "shard_25299 loaded\n",
      "shard_1514 loaded\n",
      "shard_2274 loaded\n",
      "shard_2276 loaded\n",
      "shard_10451 loaded\n",
      "shard_18168 loaded\n",
      "shard_27340 loaded\n",
      "shard_17446 loaded\n",
      "shard_21115 loaded\n",
      "shard_22046 loaded\n",
      "shard_16090 loaded\n",
      "shard_9317 loaded\n",
      "shard_46631 loaded\n",
      "shard_47660 loaded\n",
      "shard_10296 loaded\n",
      "shard_36570 loaded\n",
      "shard_37884 loaded\n",
      "shard_2857 loaded\n",
      "shard_21190 loaded\n",
      "shard_13466 loaded\n",
      "shard_23680 loaded\n",
      "shard_24059 loaded\n",
      "shard_3749 loaded\n",
      "shard_4884 loaded\n",
      "shard_14340 loaded\n",
      "shard_3232 loaded\n",
      "shard_41101 loaded\n",
      "shard_41290 loaded\n",
      "shard_8839 loaded\n",
      "shard_4472 loaded\n",
      "shard_20181 loaded\n",
      "shard_6162 loaded\n",
      "shard_46015 loaded\n",
      "shard_48151 loaded\n",
      "shard_14403 loaded\n",
      "shard_25868 loaded\n",
      "shard_18816 loaded\n",
      "shard_41456 loaded\n",
      "shard_28035 loaded\n",
      "shard_40182 loaded\n",
      "shard_17905 loaded\n",
      "shard_17304 loaded\n",
      "shard_4026 loaded\n",
      "shard_12626 loaded\n",
      "shard_715 loaded\n",
      "shard_34355 loaded\n",
      "shard_38037 loaded\n",
      "shard_466 loaded\n",
      "shard_797 loaded\n",
      "shard_7746 loaded\n",
      "shard_28116 loaded\n",
      "shard_14575 loaded\n",
      "shard_47614 loaded\n",
      "shard_18790 loaded\n",
      "shard_45057 loaded\n",
      "shard_40592 loaded\n",
      "shard_19407 loaded\n",
      "shard_8969 loaded\n",
      "shard_30201 loaded\n",
      "shard_14849 loaded\n",
      "shard_24686 loaded\n",
      "shard_21092 loaded\n",
      "shard_7992 loaded\n",
      "shard_23695 loaded\n",
      "shard_15043 loaded\n",
      "shard_33356 loaded\n",
      "shard_38879 loaded\n",
      "shard_32563 loaded\n",
      "shard_4290 loaded\n",
      "shard_36571 loaded\n",
      "shard_18794 loaded\n",
      "shard_37932 loaded\n",
      "shard_44728 loaded\n",
      "shard_34127 loaded\n",
      "shard_16088 loaded\n",
      "shard_12703 loaded\n",
      "shard_48285 loaded\n",
      "shard_501 loaded\n",
      "shard_21203 loaded\n",
      "shard_22645 loaded\n",
      "shard_19512 loaded\n",
      "shard_25430 loaded\n",
      "shard_47508 loaded\n",
      "shard_34423 loaded\n",
      "shard_22675 loaded\n",
      "shard_35053 loaded\n",
      "shard_32556 loaded\n",
      "shard_33102 loaded\n",
      "shard_10069 loaded\n",
      "shard_36640 loaded\n",
      "shard_42010 loaded\n",
      "shard_21254 loaded\n",
      "shard_29064 loaded\n",
      "shard_7378 loaded\n",
      "shard_9418 loaded\n",
      "shard_19530 loaded\n",
      "shard_17090 loaded\n",
      "shard_11467 loaded\n",
      "shard_21885 loaded\n",
      "shard_18924 loaded\n",
      "shard_27485 loaded\n",
      "shard_14782 loaded\n",
      "shard_1771 loaded\n",
      "shard_35958 loaded\n",
      "shard_11704 loaded\n",
      "shard_1572 loaded\n",
      "shard_3387 loaded\n",
      "shard_47661 loaded\n",
      "shard_17075 loaded\n",
      "shard_36949 loaded\n",
      "shard_38247 loaded\n",
      "shard_8005 loaded\n",
      "shard_16311 loaded\n",
      "shard_28794 loaded\n",
      "shard_17448 loaded\n",
      "shard_9910 loaded\n",
      "shard_21600 loaded\n",
      "shard_38490 loaded\n",
      "shard_43089 loaded\n",
      "shard_4196 loaded\n",
      "shard_6200 loaded\n",
      "shard_39843 loaded\n",
      "shard_3928 loaded\n",
      "shard_20876 loaded\n",
      "shard_11548 loaded\n",
      "shard_44443 loaded\n",
      "shard_8649 loaded\n",
      "shard_3554 loaded\n",
      "shard_39096 loaded\n",
      "shard_49589 loaded\n",
      "shard_19658 loaded\n",
      "shard_29627 loaded\n",
      "shard_24707 loaded\n",
      "shard_22545 loaded\n",
      "shard_14843 loaded\n",
      "shard_15240 loaded\n",
      "shard_36839 loaded\n",
      "shard_46680 loaded\n",
      "shard_28164 loaded\n",
      "shard_16724 loaded\n",
      "shard_313 loaded\n",
      "shard_48856 loaded\n",
      "shard_44760 loaded\n",
      "shard_14998 loaded\n",
      "shard_5979 loaded\n",
      "shard_16790 loaded\n",
      "shard_27981 loaded\n",
      "shard_14600 loaded\n",
      "shard_24874 loaded\n",
      "shard_14267 loaded\n",
      "shard_26824 loaded\n",
      "shard_476 loaded\n",
      "shard_1921 loaded\n",
      "shard_38280 loaded\n",
      "shard_2549 loaded\n",
      "shard_49482 loaded\n",
      "shard_14123 loaded\n",
      "shard_32399 loaded\n",
      "shard_14189 loaded\n",
      "shard_43155 loaded\n",
      "shard_42955 loaded\n",
      "shard_26731 loaded\n",
      "shard_29555 loaded\n",
      "shard_45528 loaded\n",
      "shard_46690 loaded\n",
      "shard_41535 loaded\n",
      "shard_9491 loaded\n",
      "shard_22686 loaded\n",
      "shard_35759 loaded\n",
      "shard_7354 loaded\n",
      "shard_45684 loaded\n",
      "shard_16764 loaded\n",
      "shard_46564 loaded\n",
      "shard_21594 loaded\n",
      "shard_4418 loaded\n",
      "shard_9643 loaded\n",
      "shard_5803 loaded\n",
      "shard_550 loaded\n",
      "shard_28894 loaded\n",
      "shard_19358 loaded\n",
      "shard_26749 loaded\n",
      "shard_33015 loaded\n",
      "shard_30428 loaded\n",
      "shard_34633 loaded\n",
      "shard_34824 loaded\n",
      "shard_23267 loaded\n",
      "shard_45092 loaded\n",
      "shard_26901 loaded\n",
      "shard_42774 loaded\n",
      "shard_9165 loaded\n",
      "shard_25293 loaded\n",
      "shard_27847 loaded\n",
      "shard_13437 loaded\n",
      "shard_6564 loaded\n",
      "shard_19932 loaded\n",
      "shard_46866 loaded\n",
      "shard_35798 loaded\n",
      "shard_17007 loaded\n",
      "shard_48323 loaded\n",
      "shard_14272 loaded\n",
      "shard_22911 loaded\n",
      "shard_18835 loaded\n",
      "shard_29129 loaded\n",
      "shard_24166 loaded\n",
      "shard_37303 loaded\n",
      "shard_28298 loaded\n",
      "shard_18563 loaded\n",
      "shard_3183 loaded\n",
      "shard_14071 loaded\n",
      "shard_30095 loaded\n",
      "shard_16497 loaded\n",
      "shard_14708 loaded\n",
      "shard_29457 loaded\n",
      "shard_13681 loaded\n",
      "shard_13706 loaded\n",
      "shard_30842 loaded\n",
      "shard_29301 loaded\n",
      "shard_30733 loaded\n",
      "shard_6394 loaded\n",
      "shard_13680 loaded\n",
      "shard_12491 loaded\n",
      "shard_12400 loaded\n",
      "shard_32274 loaded\n",
      "shard_19182 loaded\n",
      "shard_47856 loaded\n",
      "shard_31210 loaded\n",
      "shard_49219 loaded\n",
      "shard_49396 loaded\n",
      "shard_3052 loaded\n",
      "shard_18724 loaded\n",
      "shard_11895 loaded\n",
      "shard_26395 loaded\n",
      "shard_15026 loaded\n",
      "shard_36672 loaded\n",
      "shard_48894 loaded\n",
      "shard_44300 loaded\n",
      "shard_9920 loaded\n",
      "shard_1295 loaded\n",
      "shard_21549 loaded\n",
      "shard_45050 loaded\n",
      "shard_46567 loaded\n",
      "shard_24169 loaded\n",
      "shard_11343 loaded\n",
      "shard_38213 loaded\n",
      "shard_48082 loaded\n",
      "shard_20370 loaded\n",
      "shard_26919 loaded\n",
      "shard_48586 loaded\n",
      "shard_25919 loaded\n",
      "shard_26356 loaded\n",
      "shard_13572 loaded\n",
      "shard_47232 loaded\n",
      "shard_2058 loaded\n",
      "shard_4896 loaded\n",
      "shard_30706 loaded\n",
      "shard_44720 loaded\n",
      "shard_20642 loaded\n",
      "shard_39778 loaded\n",
      "shard_40427 loaded\n",
      "shard_22228 loaded\n",
      "shard_25551 loaded\n",
      "shard_46302 loaded\n",
      "shard_4835 loaded\n",
      "shard_44346 loaded\n",
      "shard_37948 loaded\n",
      "shard_38226 loaded\n",
      "shard_39756 loaded\n",
      "shard_36396 loaded\n",
      "shard_47629 loaded\n",
      "shard_42778 loaded\n",
      "shard_20145 loaded\n",
      "shard_22931 loaded\n",
      "shard_45125 loaded\n",
      "shard_11534 loaded\n",
      "shard_26515 loaded\n",
      "shard_45578 loaded\n",
      "shard_3628 loaded\n",
      "shard_11248 loaded\n",
      "shard_1901 loaded\n",
      "shard_48681 loaded\n",
      "shard_21608 loaded\n",
      "shard_2995 loaded\n",
      "shard_26381 loaded\n",
      "shard_15855 loaded\n",
      "shard_22340 loaded\n",
      "shard_35455 loaded\n",
      "shard_3332 loaded\n",
      "shard_16667 loaded\n",
      "shard_31690 loaded\n",
      "shard_28818 loaded\n",
      "shard_45841 loaded\n",
      "shard_14615 loaded\n",
      "shard_15949 loaded\n",
      "shard_25882 loaded\n",
      "shard_36110 loaded\n",
      "shard_34835 loaded\n",
      "shard_24213 loaded\n",
      "shard_22019 loaded\n",
      "shard_17379 loaded\n",
      "shard_34398 loaded\n",
      "shard_1401 loaded\n",
      "shard_32543 loaded\n",
      "shard_8282 loaded\n",
      "shard_30824 loaded\n",
      "shard_737 loaded\n",
      "shard_1403 loaded\n",
      "shard_2961 loaded\n",
      "shard_8196 loaded\n",
      "shard_6995 loaded\n",
      "shard_37891 loaded\n",
      "shard_43552 loaded\n",
      "shard_28855 loaded\n",
      "shard_12523 loaded\n",
      "shard_46554 loaded\n",
      "shard_24903 loaded\n",
      "shard_21952 loaded\n",
      "shard_21237 loaded\n",
      "shard_30055 loaded\n",
      "shard_5480 loaded\n",
      "shard_47834 loaded\n",
      "shard_34367 loaded\n",
      "shard_29304 loaded\n",
      "shard_34329 loaded\n",
      "shard_23563 loaded\n",
      "shard_8003 loaded\n",
      "shard_7177 loaded\n",
      "shard_31199 loaded\n",
      "shard_26598 loaded\n",
      "shard_36030 loaded\n",
      "shard_42304 loaded\n",
      "shard_27200 loaded\n",
      "shard_3523 loaded\n",
      "shard_25751 loaded\n",
      "shard_45957 loaded\n",
      "shard_30998 loaded\n",
      "shard_47879 loaded\n",
      "shard_43999 loaded\n",
      "shard_30277 loaded\n",
      "shard_29080 loaded\n",
      "shard_20671 loaded\n",
      "shard_34019 loaded\n",
      "shard_17787 loaded\n",
      "shard_19733 loaded\n",
      "shard_25021 loaded\n",
      "shard_3672 loaded\n",
      "shard_42173 loaded\n",
      "shard_46863 loaded\n",
      "shard_29703 loaded\n",
      "shard_49218 loaded\n",
      "shard_103 loaded\n",
      "shard_35567 loaded\n",
      "shard_14116 loaded\n",
      "shard_34385 loaded\n",
      "shard_29237 loaded\n",
      "shard_1913 loaded\n",
      "shard_1148 loaded\n",
      "shard_44012 loaded\n",
      "shard_31541 loaded\n",
      "shard_20052 loaded\n",
      "shard_8144 loaded\n",
      "shard_7114 loaded\n",
      "shard_49291 loaded\n",
      "shard_36567 loaded\n",
      "shard_28558 loaded\n",
      "shard_18844 loaded\n",
      "shard_7910 loaded\n",
      "shard_3462 loaded\n",
      "shard_14363 loaded\n",
      "shard_46539 loaded\n",
      "shard_9108 loaded\n",
      "shard_29270 loaded\n",
      "shard_49673 loaded\n",
      "shard_8171 loaded\n",
      "shard_48800 loaded\n",
      "shard_20930 loaded\n",
      "shard_46939 loaded\n",
      "shard_47285 loaded\n",
      "shard_31190 loaded\n",
      "shard_27610 loaded\n",
      "shard_13804 loaded\n",
      "shard_7511 loaded\n",
      "shard_44023 loaded\n",
      "shard_7200 loaded\n",
      "shard_19982 loaded\n",
      "shard_12894 loaded\n",
      "shard_29799 loaded\n",
      "shard_20646 loaded\n",
      "shard_1962 loaded\n",
      "shard_13128 loaded\n",
      "shard_22993 loaded\n",
      "shard_12636 loaded\n",
      "shard_32359 loaded\n",
      "shard_7604 loaded\n",
      "shard_32007 loaded\n",
      "shard_35975 loaded\n",
      "shard_14092 loaded\n",
      "shard_2606 loaded\n",
      "shard_35673 loaded\n",
      "shard_10864 loaded\n",
      "shard_18747 loaded\n",
      "shard_46887 loaded\n",
      "shard_13501 loaded\n",
      "shard_28503 loaded\n",
      "shard_8182 loaded\n",
      "shard_16159 loaded\n",
      "shard_33498 loaded\n",
      "shard_24622 loaded\n",
      "shard_15707 loaded\n",
      "shard_20894 loaded\n",
      "shard_7082 loaded\n",
      "shard_3377 loaded\n",
      "shard_22814 loaded\n",
      "shard_1102 loaded\n",
      "shard_45354 loaded\n",
      "shard_26720 loaded\n",
      "shard_2915 loaded\n",
      "shard_36157 loaded\n",
      "shard_44616 loaded\n",
      "shard_24677 loaded\n",
      "shard_32134 loaded\n",
      "shard_13364 loaded\n",
      "shard_25617 loaded\n",
      "shard_8300 loaded\n",
      "shard_48521 loaded\n",
      "shard_44894 loaded\n",
      "shard_42436 loaded\n",
      "shard_20899 loaded\n",
      "shard_25359 loaded\n",
      "shard_1287 loaded\n",
      "shard_42139 loaded\n",
      "shard_25442 loaded\n",
      "shard_17597 loaded\n",
      "shard_19190 loaded\n",
      "shard_42036 loaded\n",
      "shard_37175 loaded\n",
      "shard_2949 loaded\n",
      "shard_12964 loaded\n",
      "shard_12275 loaded\n",
      "shard_38914 loaded\n",
      "shard_46649 loaded\n",
      "shard_39665 loaded\n",
      "shard_3483 loaded\n",
      "shard_8423 loaded\n",
      "shard_9916 loaded\n",
      "shard_45127 loaded\n",
      "shard_29122 loaded\n",
      "shard_43311 loaded\n",
      "shard_22678 loaded\n",
      "shard_24940 loaded\n",
      "shard_25728 loaded\n",
      "shard_15096 loaded\n",
      "shard_40631 loaded\n",
      "shard_9772 loaded\n",
      "shard_7123 loaded\n",
      "shard_18898 loaded\n",
      "shard_8785 loaded\n",
      "shard_8752 loaded\n",
      "shard_15402 loaded\n",
      "shard_30187 loaded\n",
      "shard_47176 loaded\n",
      "shard_16442 loaded\n",
      "shard_18257 loaded\n",
      "shard_6580 loaded\n",
      "shard_6654 loaded\n",
      "shard_10401 loaded\n",
      "shard_23052 loaded\n",
      "shard_3198 loaded\n",
      "shard_48441 loaded\n",
      "shard_39083 loaded\n",
      "shard_28218 loaded\n",
      "shard_34387 loaded\n",
      "shard_28373 loaded\n",
      "shard_18226 loaded\n",
      "shard_4127 loaded\n",
      "shard_27540 loaded\n",
      "shard_16792 loaded\n",
      "shard_40080 loaded\n",
      "shard_11334 loaded\n",
      "shard_24849 loaded\n",
      "shard_3517 loaded\n",
      "shard_37049 loaded\n",
      "shard_46374 loaded\n",
      "shard_28771 loaded\n",
      "shard_7535 loaded\n",
      "shard_8198 loaded\n",
      "shard_29038 loaded\n",
      "shard_34098 loaded\n",
      "shard_15443 loaded\n",
      "shard_18667 loaded\n",
      "shard_1130 loaded\n",
      "shard_40366 loaded\n",
      "shard_48279 loaded\n",
      "shard_32249 loaded\n",
      "shard_15327 loaded\n",
      "shard_48329 loaded\n",
      "shard_574 loaded\n",
      "shard_18185 loaded\n",
      "shard_37368 loaded\n",
      "shard_15437 loaded\n",
      "shard_42537 loaded\n",
      "shard_33558 loaded\n",
      "shard_25523 loaded\n",
      "shard_7559 loaded\n",
      "shard_38698 loaded\n",
      "shard_29987 loaded\n",
      "shard_14936 loaded\n",
      "shard_34179 loaded\n",
      "shard_15698 loaded\n",
      "shard_47000 loaded\n",
      "shard_23977 loaded\n",
      "shard_19737 loaded\n",
      "shard_31018 loaded\n",
      "shard_20188 loaded\n",
      "shard_40692 loaded\n",
      "shard_40356 loaded\n",
      "shard_33551 loaded\n",
      "shard_18707 loaded\n",
      "shard_10016 loaded\n",
      "shard_32829 loaded\n",
      "shard_30661 loaded\n",
      "shard_19764 loaded\n",
      "shard_45103 loaded\n",
      "shard_40975 loaded\n",
      "shard_35848 loaded\n",
      "shard_20341 loaded\n",
      "shard_24616 loaded\n",
      "shard_33632 loaded\n",
      "shard_6461 loaded\n",
      "shard_17602 loaded\n",
      "shard_47173 loaded\n",
      "shard_14502 loaded\n",
      "shard_1476 loaded\n",
      "shard_17877 loaded\n",
      "shard_603 loaded\n",
      "shard_9222 loaded\n",
      "shard_249 loaded\n",
      "shard_1317 loaded\n",
      "shard_41246 loaded\n",
      "shard_43810 loaded\n",
      "shard_43573 loaded\n",
      "shard_31297 loaded\n",
      "shard_13701 loaded\n",
      "shard_27854 loaded\n",
      "shard_38812 loaded\n",
      "shard_8838 loaded\n",
      "shard_5454 loaded\n",
      "shard_23489 loaded\n",
      "shard_25513 loaded\n",
      "shard_6699 loaded\n",
      "shard_15416 loaded\n",
      "shard_38352 loaded\n",
      "shard_14649 loaded\n",
      "shard_12571 loaded\n",
      "shard_34948 loaded\n",
      "shard_45927 loaded\n",
      "shard_15885 loaded\n",
      "shard_205 loaded\n",
      "shard_2219 loaded\n",
      "shard_17000 loaded\n",
      "shard_41387 loaded\n",
      "shard_18744 loaded\n",
      "shard_42459 loaded\n",
      "shard_9869 loaded\n",
      "shard_35210 loaded\n",
      "shard_40729 loaded\n",
      "shard_32571 loaded\n",
      "shard_48115 loaded\n",
      "shard_19386 loaded\n",
      "shard_30861 loaded\n",
      "shard_41748 loaded\n",
      "shard_44056 loaded\n",
      "shard_14610 loaded\n",
      "shard_24233 loaded\n",
      "shard_44238 loaded\n",
      "shard_21723 loaded\n",
      "shard_11824 loaded\n",
      "shard_15720 loaded\n",
      "shard_18925 loaded\n",
      "shard_33355 loaded\n",
      "shard_19788 loaded\n",
      "shard_6355 loaded\n",
      "shard_22252 loaded\n",
      "shard_37556 loaded\n",
      "shard_21169 loaded\n",
      "shard_8968 loaded\n",
      "shard_9056 loaded\n",
      "shard_32507 loaded\n",
      "shard_36666 loaded\n",
      "shard_49417 loaded\n",
      "shard_17963 loaded\n",
      "shard_3221 loaded\n",
      "shard_23268 loaded\n",
      "shard_13193 loaded\n",
      "shard_48400 loaded\n",
      "shard_35614 loaded\n",
      "shard_14298 loaded\n",
      "shard_21502 loaded\n",
      "shard_13671 loaded\n",
      "shard_4237 loaded\n",
      "shard_44465 loaded\n",
      "shard_17406 loaded\n",
      "shard_1304 loaded\n",
      "shard_27565 loaded\n",
      "shard_46035 loaded\n",
      "shard_36616 loaded\n",
      "shard_11096 loaded\n",
      "shard_29930 loaded\n",
      "shard_33901 loaded\n",
      "shard_48773 loaded\n",
      "shard_3417 loaded\n",
      "shard_26132 loaded\n",
      "shard_19499 loaded\n",
      "shard_25186 loaded\n",
      "shard_41184 loaded\n",
      "shard_29053 loaded\n",
      "shard_22929 loaded\n",
      "shard_19863 loaded\n",
      "shard_8646 loaded\n",
      "shard_4970 loaded\n",
      "shard_19510 loaded\n",
      "shard_22666 loaded\n",
      "shard_29481 loaded\n",
      "shard_46854 loaded\n",
      "shard_39972 loaded\n",
      "shard_12443 loaded\n",
      "shard_42618 loaded\n",
      "shard_18321 loaded\n",
      "shard_13883 loaded\n",
      "shard_3898 loaded\n",
      "shard_42271 loaded\n",
      "shard_27337 loaded\n",
      "shard_16947 loaded\n",
      "shard_29440 loaded\n",
      "shard_19941 loaded\n",
      "shard_8001 loaded\n",
      "shard_35230 loaded\n",
      "shard_27657 loaded\n",
      "shard_7084 loaded\n",
      "shard_47147 loaded\n",
      "shard_41527 loaded\n",
      "shard_31463 loaded\n",
      "shard_25477 loaded\n",
      "shard_19617 loaded\n",
      "shard_12704 loaded\n",
      "shard_29235 loaded\n",
      "shard_39152 loaded\n",
      "shard_43869 loaded\n",
      "shard_24197 loaded\n",
      "shard_10798 loaded\n",
      "shard_29485 loaded\n",
      "shard_5367 loaded\n",
      "shard_36905 loaded\n",
      "shard_49409 loaded\n",
      "shard_49501 loaded\n",
      "shard_12299 loaded\n",
      "shard_42145 loaded\n",
      "shard_47756 loaded\n",
      "shard_9921 loaded\n",
      "shard_7876 loaded\n",
      "shard_26033 loaded\n",
      "shard_39359 loaded\n",
      "shard_22728 loaded\n",
      "shard_38979 loaded\n",
      "shard_37077 loaded\n",
      "shard_45025 loaded\n",
      "shard_14856 loaded\n",
      "shard_41542 loaded\n",
      "shard_14099 loaded\n",
      "shard_10627 loaded\n",
      "shard_16348 loaded\n",
      "shard_18589 loaded\n",
      "shard_24848 loaded\n",
      "shard_11419 loaded\n",
      "shard_36478 loaded\n",
      "shard_27113 loaded\n",
      "shard_17431 loaded\n",
      "shard_27159 loaded\n",
      "shard_22486 loaded\n",
      "shard_20317 loaded\n",
      "shard_783 loaded\n",
      "shard_28608 loaded\n",
      "shard_10615 loaded\n",
      "shard_35617 loaded\n",
      "shard_5663 loaded\n",
      "shard_2510 loaded\n",
      "shard_9675 loaded\n",
      "shard_3378 loaded\n",
      "shard_17284 loaded\n",
      "shard_12151 loaded\n",
      "shard_20405 loaded\n",
      "shard_17102 loaded\n",
      "shard_20853 loaded\n",
      "shard_34967 loaded\n",
      "shard_26727 loaded\n",
      "shard_41824 loaded\n",
      "shard_4778 loaded\n",
      "shard_37250 loaded\n",
      "shard_29224 loaded\n",
      "shard_41707 loaded\n",
      "shard_40279 loaded\n",
      "shard_21089 loaded\n",
      "shard_12674 loaded\n",
      "shard_7338 loaded\n",
      "shard_16818 loaded\n",
      "shard_15797 loaded\n",
      "shard_39971 loaded\n",
      "shard_4186 loaded\n",
      "shard_10099 loaded\n",
      "shard_27048 loaded\n",
      "shard_29979 loaded\n",
      "shard_36636 loaded\n",
      "shard_5533 loaded\n",
      "shard_49312 loaded\n",
      "shard_15 loaded\n",
      "shard_37426 loaded\n",
      "shard_6909 loaded\n",
      "shard_35175 loaded\n",
      "shard_8013 loaded\n",
      "shard_14883 loaded\n",
      "shard_28322 loaded\n",
      "shard_37074 loaded\n",
      "shard_6806 loaded\n",
      "shard_25184 loaded\n",
      "shard_2141 loaded\n",
      "shard_36504 loaded\n",
      "shard_17745 loaded\n",
      "shard_36533 loaded\n",
      "shard_15174 loaded\n",
      "shard_28326 loaded\n",
      "shard_18892 loaded\n",
      "shard_38678 loaded\n",
      "shard_32995 loaded\n",
      "shard_19044 loaded\n",
      "shard_38502 loaded\n",
      "shard_47967 loaded\n",
      "shard_2332 loaded\n",
      "shard_10735 loaded\n",
      "shard_19862 loaded\n",
      "shard_40173 loaded\n",
      "shard_35435 loaded\n",
      "shard_24010 loaded\n",
      "shard_26946 loaded\n",
      "shard_16692 loaded\n",
      "shard_9796 loaded\n",
      "shard_12621 loaded\n",
      "shard_10761 loaded\n",
      "shard_34666 loaded\n",
      "shard_18757 loaded\n",
      "shard_34500 loaded\n",
      "shard_8042 loaded\n",
      "shard_18736 loaded\n",
      "shard_19728 loaded\n",
      "shard_17582 loaded\n",
      "shard_31875 loaded\n",
      "shard_23319 loaded\n",
      "shard_27099 loaded\n",
      "shard_31760 loaded\n",
      "shard_2337 loaded\n",
      "shard_45757 loaded\n",
      "shard_46975 loaded\n",
      "shard_39567 loaded\n",
      "shard_3960 loaded\n",
      "shard_46158 loaded\n",
      "shard_36698 loaded\n",
      "shard_23144 loaded\n",
      "shard_43657 loaded\n",
      "shard_43926 loaded\n",
      "shard_25144 loaded\n",
      "shard_17591 loaded\n",
      "shard_28834 loaded\n",
      "shard_19958 loaded\n",
      "shard_3790 loaded\n",
      "shard_47863 loaded\n",
      "shard_47286 loaded\n",
      "shard_11310 loaded\n",
      "shard_41786 loaded\n",
      "shard_22636 loaded\n",
      "shard_25354 loaded\n",
      "shard_8682 loaded\n",
      "shard_12325 loaded\n",
      "shard_37306 loaded\n",
      "shard_4400 loaded\n",
      "shard_10993 loaded\n",
      "shard_18054 loaded\n",
      "shard_40375 loaded\n",
      "shard_46997 loaded\n",
      "shard_2420 loaded\n",
      "shard_6151 loaded\n",
      "shard_17239 loaded\n",
      "shard_46652 loaded\n",
      "shard_9981 loaded\n",
      "shard_18959 loaded\n",
      "shard_49232 loaded\n",
      "shard_32335 loaded\n",
      "shard_27166 loaded\n",
      "shard_25943 loaded\n",
      "shard_41626 loaded\n",
      "shard_33907 loaded\n",
      "shard_41566 loaded\n",
      "shard_128 loaded\n",
      "shard_43551 loaded\n",
      "shard_37927 loaded\n",
      "shard_47509 loaded\n",
      "shard_37924 loaded\n",
      "shard_37629 loaded\n",
      "shard_25420 loaded\n",
      "shard_19633 loaded\n",
      "shard_16974 loaded\n",
      "shard_1731 loaded\n",
      "shard_29162 loaded\n",
      "shard_5608 loaded\n",
      "shard_30858 loaded\n",
      "shard_23088 loaded\n",
      "shard_40312 loaded\n",
      "shard_21217 loaded\n",
      "shard_36084 loaded\n",
      "shard_29477 loaded\n",
      "shard_26794 loaded\n",
      "shard_22629 loaded\n",
      "shard_11016 loaded\n",
      "shard_17824 loaded\n",
      "shard_183 loaded\n",
      "shard_5356 loaded\n",
      "shard_44975 loaded\n",
      "shard_20759 loaded\n",
      "shard_21904 loaded\n",
      "shard_24706 loaded\n",
      "shard_15611 loaded\n",
      "shard_8626 loaded\n",
      "shard_27018 loaded\n",
      "shard_8754 loaded\n",
      "shard_8944 loaded\n",
      "shard_9365 loaded\n",
      "shard_30408 loaded\n",
      "shard_47779 loaded\n",
      "shard_39476 loaded\n",
      "shard_42765 loaded\n",
      "shard_30820 loaded\n",
      "shard_12780 loaded\n",
      "shard_43119 loaded\n",
      "shard_39313 loaded\n",
      "shard_41384 loaded\n",
      "shard_10086 loaded\n",
      "shard_36604 loaded\n",
      "shard_4184 loaded\n",
      "shard_39568 loaded\n",
      "shard_40835 loaded\n",
      "shard_10041 loaded\n",
      "shard_12122 loaded\n",
      "shard_23470 loaded\n",
      "shard_36161 loaded\n",
      "shard_4918 loaded\n",
      "shard_19333 loaded\n",
      "shard_26333 loaded\n",
      "shard_12412 loaded\n",
      "shard_8464 loaded\n",
      "shard_23690 loaded\n",
      "shard_20814 loaded\n",
      "shard_18245 loaded\n",
      "shard_10969 loaded\n",
      "shard_34301 loaded\n",
      "shard_7849 loaded\n",
      "shard_9813 loaded\n",
      "shard_13374 loaded\n",
      "shard_5444 loaded\n",
      "shard_6769 loaded\n",
      "shard_36100 loaded\n",
      "shard_68 loaded\n",
      "shard_33567 loaded\n",
      "shard_29218 loaded\n",
      "shard_18651 loaded\n",
      "shard_30262 loaded\n",
      "shard_46313 loaded\n",
      "shard_38410 loaded\n",
      "shard_33977 loaded\n",
      "shard_20080 loaded\n",
      "shard_16293 loaded\n",
      "shard_41253 loaded\n",
      "shard_40206 loaded\n",
      "shard_1209 loaded\n",
      "shard_34639 loaded\n",
      "shard_14137 loaded\n",
      "shard_12269 loaded\n",
      "shard_39403 loaded\n",
      "shard_43842 loaded\n",
      "shard_22845 loaded\n",
      "shard_30788 loaded\n",
      "shard_49401 loaded\n",
      "shard_22691 loaded\n",
      "shard_21890 loaded\n",
      "shard_37040 loaded\n",
      "shard_31305 loaded\n",
      "shard_2928 loaded\n",
      "shard_15431 loaded\n",
      "shard_49554 loaded\n",
      "shard_23494 loaded\n",
      "shard_7427 loaded\n",
      "shard_24562 loaded\n",
      "shard_47237 loaded\n",
      "shard_31593 loaded\n",
      "shard_26320 loaded\n",
      "shard_44369 loaded\n",
      "shard_4938 loaded\n",
      "shard_3911 loaded\n",
      "shard_43697 loaded\n",
      "shard_9321 loaded\n",
      "shard_40496 loaded\n",
      "shard_34486 loaded\n",
      "shard_16208 loaded\n",
      "shard_30764 loaded\n",
      "shard_40738 loaded\n",
      "shard_14653 loaded\n",
      "shard_48951 loaded\n",
      "shard_24645 loaded\n",
      "shard_3891 loaded\n",
      "shard_48027 loaded\n",
      "shard_44783 loaded\n",
      "shard_20518 loaded\n",
      "shard_12403 loaded\n",
      "shard_49899 loaded\n",
      "shard_36553 loaded\n",
      "shard_12411 loaded\n",
      "shard_12862 loaded\n",
      "shard_8230 loaded\n",
      "shard_39246 loaded\n",
      "shard_30425 loaded\n",
      "shard_33806 loaded\n",
      "shard_43303 loaded\n",
      "shard_26573 loaded\n",
      "shard_35350 loaded\n",
      "shard_48377 loaded\n",
      "shard_38814 loaded\n",
      "shard_30082 loaded\n",
      "shard_17637 loaded\n",
      "shard_5854 loaded\n",
      "shard_28106 loaded\n",
      "shard_43960 loaded\n",
      "shard_35904 loaded\n",
      "shard_37311 loaded\n",
      "shard_41847 loaded\n",
      "shard_49976 loaded\n",
      "shard_5390 loaded\n",
      "shard_17753 loaded\n",
      "shard_44381 loaded\n",
      "shard_46191 loaded\n",
      "shard_15427 loaded\n",
      "shard_16281 loaded\n",
      "shard_9939 loaded\n",
      "shard_33622 loaded\n",
      "shard_33255 loaded\n",
      "shard_903 loaded\n",
      "shard_21232 loaded\n",
      "shard_37877 loaded\n",
      "shard_44359 loaded\n",
      "shard_6611 loaded\n",
      "shard_18148 loaded\n",
      "shard_12423 loaded\n",
      "shard_49801 loaded\n",
      "shard_11258 loaded\n",
      "shard_19710 loaded\n",
      "shard_49962 loaded\n",
      "shard_46973 loaded\n",
      "shard_35389 loaded\n",
      "shard_7779 loaded\n",
      "shard_24208 loaded\n",
      "shard_18911 loaded\n",
      "shard_29866 loaded\n",
      "shard_847 loaded\n",
      "shard_15200 loaded\n",
      "shard_27234 loaded\n",
      "shard_44922 loaded\n",
      "shard_35263 loaded\n",
      "shard_16406 loaded\n",
      "shard_37836 loaded\n",
      "shard_34613 loaded\n",
      "shard_38046 loaded\n",
      "shard_21371 loaded\n",
      "shard_42270 loaded\n",
      "shard_30198 loaded\n",
      "shard_41895 loaded\n",
      "shard_3098 loaded\n",
      "shard_6435 loaded\n",
      "shard_21346 loaded\n",
      "shard_20803 loaded\n",
      "shard_23172 loaded\n",
      "shard_48674 loaded\n",
      "shard_5540 loaded\n",
      "shard_6484 loaded\n",
      "shard_3847 loaded\n",
      "shard_35972 loaded\n",
      "shard_21706 loaded\n",
      "shard_28488 loaded\n",
      "shard_32755 loaded\n",
      "shard_22429 loaded\n",
      "shard_32628 loaded\n",
      "shard_42702 loaded\n",
      "shard_1556 loaded\n",
      "shard_38907 loaded\n",
      "shard_39353 loaded\n",
      "shard_43967 loaded\n",
      "shard_44376 loaded\n",
      "shard_13205 loaded\n",
      "shard_725 loaded\n",
      "shard_30001 loaded\n",
      "shard_31629 loaded\n",
      "shard_28739 loaded\n",
      "shard_17788 loaded\n",
      "shard_14874 loaded\n",
      "shard_23055 loaded\n",
      "shard_12495 loaded\n",
      "shard_23464 loaded\n",
      "shard_46288 loaded\n",
      "shard_15358 loaded\n",
      "shard_9564 loaded\n",
      "shard_2138 loaded\n",
      "shard_39310 loaded\n",
      "shard_346 loaded\n",
      "shard_32337 loaded\n",
      "shard_45677 loaded\n",
      "shard_33194 loaded\n",
      "shard_41990 loaded\n",
      "shard_34091 loaded\n",
      "shard_1155 loaded\n",
      "shard_9340 loaded\n",
      "shard_6330 loaded\n",
      "shard_1960 loaded\n",
      "shard_33197 loaded\n",
      "shard_28292 loaded\n",
      "shard_41286 loaded\n",
      "shard_6813 loaded\n",
      "shard_10731 loaded\n",
      "shard_26833 loaded\n",
      "shard_38791 loaded\n",
      "shard_36552 loaded\n",
      "shard_24834 loaded\n",
      "shard_9588 loaded\n",
      "shard_32839 loaded\n",
      "shard_41492 loaded\n",
      "shard_12426 loaded\n",
      "shard_27787 loaded\n",
      "shard_7473 loaded\n",
      "shard_47234 loaded\n",
      "shard_43689 loaded\n",
      "shard_9217 loaded\n",
      "shard_29207 loaded\n",
      "shard_8309 loaded\n",
      "shard_20069 loaded\n",
      "shard_27279 loaded\n",
      "shard_18822 loaded\n",
      "shard_23 loaded\n",
      "shard_7698 loaded\n",
      "shard_3520 loaded\n",
      "shard_31698 loaded\n",
      "shard_40915 loaded\n",
      "shard_8727 loaded\n",
      "shard_22109 loaded\n",
      "shard_41038 loaded\n",
      "shard_49144 loaded\n",
      "shard_33285 loaded\n",
      "shard_29443 loaded\n",
      "shard_47874 loaded\n",
      "shard_8963 loaded\n",
      "shard_43908 loaded\n",
      "shard_40883 loaded\n",
      "shard_32116 loaded\n",
      "shard_27010 loaded\n",
      "shard_22866 loaded\n",
      "shard_21032 loaded\n",
      "shard_5823 loaded\n",
      "shard_43306 loaded\n",
      "shard_4875 loaded\n",
      "shard_47831 loaded\n",
      "shard_15364 loaded\n",
      "shard_15384 loaded\n",
      "shard_23483 loaded\n",
      "shard_14091 loaded\n",
      "shard_24162 loaded\n",
      "shard_11611 loaded\n",
      "shard_33062 loaded\n",
      "shard_8766 loaded\n",
      "shard_7474 loaded\n",
      "shard_17758 loaded\n",
      "shard_23082 loaded\n",
      "shard_32185 loaded\n",
      "shard_22017 loaded\n",
      "shard_6300 loaded\n",
      "shard_32492 loaded\n",
      "shard_8384 loaded\n",
      "shard_24122 loaded\n",
      "shard_37678 loaded\n",
      "shard_40453 loaded\n",
      "shard_26186 loaded\n",
      "shard_25973 loaded\n",
      "shard_39673 loaded\n",
      "shard_33071 loaded\n",
      "shard_17532 loaded\n",
      "shard_26058 loaded\n",
      "shard_42040 loaded\n",
      "shard_48790 loaded\n",
      "shard_17919 loaded\n",
      "shard_34069 loaded\n",
      "shard_29093 loaded\n",
      "shard_31472 loaded\n",
      "shard_18536 loaded\n",
      "shard_34909 loaded\n",
      "shard_1017 loaded\n",
      "shard_7975 loaded\n",
      "shard_33385 loaded\n",
      "shard_23500 loaded\n",
      "shard_41052 loaded\n",
      "shard_31916 loaded\n",
      "shard_12617 loaded\n",
      "shard_41018 loaded\n",
      "shard_11904 loaded\n",
      "shard_39330 loaded\n",
      "shard_30050 loaded\n",
      "shard_39480 loaded\n",
      "shard_46263 loaded\n",
      "shard_11760 loaded\n",
      "shard_23826 loaded\n",
      "shard_6278 loaded\n",
      "shard_1471 loaded\n",
      "shard_16761 loaded\n",
      "shard_47050 loaded\n",
      "shard_37245 loaded\n",
      "shard_39790 loaded\n",
      "shard_13502 loaded\n",
      "shard_48955 loaded\n",
      "shard_34021 loaded\n",
      "shard_19155 loaded\n",
      "shard_23166 loaded\n",
      "shard_38697 loaded\n",
      "shard_15154 loaded\n",
      "shard_22384 loaded\n",
      "shard_34937 loaded\n",
      "shard_16349 loaded\n",
      "shard_1183 loaded\n",
      "shard_16894 loaded\n",
      "shard_4524 loaded\n",
      "shard_29029 loaded\n",
      "shard_40098 loaded\n",
      "shard_12962 loaded\n",
      "shard_803 loaded\n",
      "shard_34988 loaded\n",
      "shard_485 loaded\n",
      "shard_5198 loaded\n",
      "shard_19057 loaded\n",
      "shard_4444 loaded\n",
      "shard_36737 loaded\n",
      "shard_35408 loaded\n",
      "shard_17084 loaded\n",
      "shard_7564 loaded\n",
      "shard_15624 loaded\n",
      "shard_219 loaded\n",
      "shard_49492 loaded\n",
      "shard_27816 loaded\n",
      "shard_8835 loaded\n",
      "shard_38820 loaded\n",
      "shard_27156 loaded\n",
      "shard_37342 loaded\n",
      "shard_38738 loaded\n",
      "shard_22921 loaded\n",
      "shard_6946 loaded\n",
      "shard_30785 loaded\n",
      "shard_8704 loaded\n",
      "shard_10907 loaded\n",
      "shard_35494 loaded\n",
      "shard_32152 loaded\n",
      "shard_44364 loaded\n",
      "shard_26387 loaded\n",
      "shard_1762 loaded\n",
      "shard_49128 loaded\n",
      "shard_34040 loaded\n",
      "shard_20105 loaded\n",
      "shard_14621 loaded\n",
      "shard_4330 loaded\n",
      "shard_16485 loaded\n",
      "shard_13222 loaded\n",
      "shard_23117 loaded\n",
      "shard_10112 loaded\n",
      "shard_20436 loaded\n",
      "shard_33756 loaded\n",
      "shard_14133 loaded\n",
      "shard_28493 loaded\n",
      "shard_7424 loaded\n",
      "shard_37189 loaded\n",
      "shard_20733 loaded\n",
      "shard_17107 loaded\n",
      "shard_40184 loaded\n",
      "shard_26223 loaded\n",
      "shard_49176 loaded\n",
      "shard_24082 loaded\n",
      "shard_28890 loaded\n",
      "shard_38487 loaded\n",
      "shard_20397 loaded\n",
      "shard_17366 loaded\n",
      "shard_5693 loaded\n",
      "shard_13254 loaded\n",
      "shard_22479 loaded\n",
      "shard_26198 loaded\n",
      "shard_26569 loaded\n",
      "shard_45798 loaded\n",
      "shard_28536 loaded\n",
      "shard_16964 loaded\n",
      "shard_3088 loaded\n",
      "shard_22693 loaded\n",
      "shard_11429 loaded\n",
      "shard_23245 loaded\n",
      "shard_39266 loaded\n",
      "shard_997 loaded\n",
      "shard_22522 loaded\n",
      "shard_12282 loaded\n",
      "shard_36547 loaded\n",
      "shard_38182 loaded\n",
      "shard_47202 loaded\n",
      "shard_3726 loaded\n",
      "shard_28377 loaded\n",
      "shard_10740 loaded\n",
      "shard_2206 loaded\n",
      "shard_44566 loaded\n",
      "shard_26710 loaded\n",
      "shard_12362 loaded\n",
      "shard_36117 loaded\n",
      "shard_37281 loaded\n",
      "shard_34551 loaded\n",
      "shard_33875 loaded\n",
      "shard_44495 loaded\n",
      "shard_12960 loaded\n",
      "shard_25339 loaded\n",
      "shard_37968 loaded\n",
      "shard_24335 loaded\n",
      "shard_43255 loaded\n",
      "shard_19323 loaded\n",
      "shard_44053 loaded\n",
      "shard_39216 loaded\n",
      "shard_36056 loaded\n",
      "shard_42696 loaded\n",
      "shard_38050 loaded\n",
      "shard_26377 loaded\n",
      "shard_19051 loaded\n",
      "shard_6155 loaded\n",
      "shard_16794 loaded\n",
      "shard_32616 loaded\n",
      "shard_37695 loaded\n",
      "shard_4678 loaded\n",
      "shard_25607 loaded\n",
      "shard_24745 loaded\n",
      "shard_48411 loaded\n",
      "shard_42997 loaded\n",
      "shard_10204 loaded\n",
      "shard_43800 loaded\n",
      "shard_19275 loaded\n",
      "shard_9850 loaded\n",
      "shard_32200 loaded\n",
      "shard_39528 loaded\n",
      "shard_43714 loaded\n",
      "shard_24879 loaded\n",
      "shard_39751 loaded\n",
      "shard_13646 loaded\n",
      "shard_1425 loaded\n",
      "shard_16030 loaded\n",
      "shard_48243 loaded\n",
      "shard_3933 loaded\n",
      "shard_24468 loaded\n",
      "shard_15874 loaded\n",
      "shard_20153 loaded\n",
      "shard_49623 loaded\n",
      "shard_29598 loaded\n",
      "shard_40442 loaded\n",
      "shard_33185 loaded\n",
      "shard_39394 loaded\n",
      "shard_24259 loaded\n",
      "shard_25484 loaded\n",
      "shard_28088 loaded\n",
      "shard_19221 loaded\n",
      "shard_8952 loaded\n",
      "shard_39622 loaded\n",
      "shard_43503 loaded\n",
      "shard_2309 loaded\n",
      "shard_5993 loaded\n",
      "shard_16290 loaded\n",
      "shard_36688 loaded\n",
      "shard_47728 loaded\n",
      "shard_42603 loaded\n",
      "shard_22448 loaded\n",
      "shard_31104 loaded\n",
      "shard_46109 loaded\n",
      "shard_17133 loaded\n",
      "shard_10794 loaded\n",
      "shard_37883 loaded\n",
      "shard_41322 loaded\n",
      "shard_852 loaded\n",
      "shard_11103 loaded\n",
      "shard_10417 loaded\n",
      "shard_34310 loaded\n",
      "shard_32756 loaded\n",
      "shard_43602 loaded\n",
      "shard_8291 loaded\n",
      "shard_28962 loaded\n",
      "shard_44865 loaded\n",
      "shard_29402 loaded\n",
      "shard_5641 loaded\n",
      "shard_31238 loaded\n",
      "shard_290 loaded\n",
      "shard_22386 loaded\n",
      "shard_45000 loaded\n",
      "shard_427 loaded\n",
      "shard_44201 loaded\n",
      "shard_8253 loaded\n",
      "shard_2355 loaded\n",
      "shard_5775 loaded\n",
      "shard_25351 loaded\n",
      "shard_13172 loaded\n",
      "shard_39016 loaded\n",
      "shard_30415 loaded\n",
      "shard_11321 loaded\n",
      "shard_26005 loaded\n",
      "shard_32065 loaded\n",
      "shard_30947 loaded\n",
      "shard_20390 loaded\n",
      "shard_20486 loaded\n",
      "shard_22927 loaded\n",
      "shard_25562 loaded\n",
      "shard_29507 loaded\n",
      "shard_23889 loaded\n",
      "shard_35926 loaded\n",
      "shard_40755 loaded\n",
      "shard_48675 loaded\n",
      "shard_31779 loaded\n",
      "shard_18592 loaded\n",
      "shard_7571 loaded\n",
      "shard_19299 loaded\n",
      "shard_44404 loaded\n",
      "shard_28234 loaded\n",
      "shard_31087 loaded\n",
      "shard_32157 loaded\n",
      "shard_46829 loaded\n",
      "shard_37339 loaded\n",
      "shard_35829 loaded\n",
      "shard_13871 loaded\n",
      "shard_3120 loaded\n",
      "shard_17237 loaded\n",
      "shard_30019 loaded\n",
      "shard_29623 loaded\n",
      "shard_20092 loaded\n",
      "shard_1448 loaded\n",
      "shard_21269 loaded\n",
      "shard_12475 loaded\n",
      "shard_8484 loaded\n",
      "shard_44230 loaded\n",
      "shard_29645 loaded\n",
      "shard_26896 loaded\n",
      "shard_25156 loaded\n",
      "shard_5138 loaded\n",
      "shard_39259 loaded\n",
      "shard_29314 loaded\n",
      "shard_37242 loaded\n",
      "shard_26122 loaded\n",
      "shard_4652 loaded\n",
      "shard_42505 loaded\n",
      "shard_24782 loaded\n",
      "shard_44592 loaded\n",
      "shard_40825 loaded\n",
      "shard_3979 loaded\n",
      "shard_33073 loaded\n",
      "shard_15007 loaded\n",
      "shard_36507 loaded\n",
      "shard_10858 loaded\n",
      "shard_10497 loaded\n",
      "shard_39401 loaded\n",
      "shard_21095 loaded\n",
      "shard_30135 loaded\n",
      "shard_5556 loaded\n",
      "shard_3087 loaded\n",
      "shard_36466 loaded\n",
      "shard_26176 loaded\n",
      "shard_21899 loaded\n",
      "shard_583 loaded\n",
      "shard_18689 loaded\n",
      "shard_5249 loaded\n",
      "shard_10714 loaded\n",
      "shard_6641 loaded\n",
      "shard_36648 loaded\n",
      "shard_18389 loaded\n",
      "shard_17922 loaded\n",
      "shard_43828 loaded\n",
      "shard_8079 loaded\n",
      "shard_26669 loaded\n",
      "shard_24646 loaded\n",
      "shard_46252 loaded\n",
      "shard_48188 loaded\n",
      "shard_34498 loaded\n",
      "shard_34897 loaded\n",
      "shard_2460 loaded\n",
      "shard_28755 loaded\n",
      "shard_26923 loaded\n",
      "shard_27196 loaded\n",
      "shard_44274 loaded\n",
      "shard_33501 loaded\n",
      "shard_34417 loaded\n",
      "shard_15187 loaded\n",
      "shard_26866 loaded\n",
      "shard_25223 loaded\n",
      "shard_44350 loaded\n",
      "shard_48948 loaded\n",
      "shard_21432 loaded\n",
      "shard_35101 loaded\n",
      "shard_12883 loaded\n",
      "shard_48470 loaded\n",
      "shard_4322 loaded\n",
      "shard_47973 loaded\n",
      "shard_30678 loaded\n",
      "shard_27906 loaded\n",
      "shard_14657 loaded\n",
      "shard_24188 loaded\n",
      "shard_42945 loaded\n",
      "shard_31224 loaded\n",
      "shard_3413 loaded\n",
      "shard_43399 loaded\n",
      "shard_15417 loaded\n",
      "shard_5328 loaded\n",
      "shard_38624 loaded\n",
      "shard_17257 loaded\n",
      "shard_667 loaded\n",
      "shard_26660 loaded\n",
      "shard_7121 loaded\n",
      "shard_6107 loaded\n",
      "shard_26593 loaded\n",
      "shard_17142 loaded\n",
      "shard_40476 loaded\n",
      "shard_33909 loaded\n",
      "shard_9514 loaded\n",
      "shard_34418 loaded\n",
      "shard_21778 loaded\n",
      "shard_39692 loaded\n",
      "shard_13457 loaded\n",
      "shard_363 loaded\n",
      "shard_10494 loaded\n",
      "shard_21696 loaded\n",
      "shard_1230 loaded\n",
      "shard_38580 loaded\n",
      "shard_28702 loaded\n",
      "shard_49462 loaded\n",
      "shard_23090 loaded\n",
      "shard_41604 loaded\n",
      "shard_21766 loaded\n",
      "shard_37489 loaded\n",
      "shard_40399 loaded\n",
      "shard_176 loaded\n",
      "shard_46606 loaded\n",
      "shard_18991 loaded\n",
      "shard_22705 loaded\n",
      "shard_8661 loaded\n",
      "shard_6581 loaded\n",
      "shard_46064 loaded\n",
      "shard_28149 loaded\n",
      "shard_47443 loaded\n",
      "shard_15265 loaded\n",
      "shard_29724 loaded\n",
      "shard_359 loaded\n",
      "shard_17039 loaded\n",
      "shard_21912 loaded\n",
      "shard_7104 loaded\n",
      "shard_42429 loaded\n",
      "shard_23279 loaded\n",
      "shard_30814 loaded\n",
      "shard_44020 loaded\n",
      "shard_1294 loaded\n",
      "shard_43390 loaded\n",
      "shard_12043 loaded\n",
      "shard_13750 loaded\n",
      "shard_45843 loaded\n",
      "shard_46141 loaded\n",
      "shard_45258 loaded\n",
      "shard_15054 loaded\n",
      "shard_46889 loaded\n",
      "shard_49327 loaded\n",
      "shard_24036 loaded\n",
      "shard_18698 loaded\n",
      "shard_14534 loaded\n",
      "shard_31921 loaded\n",
      "shard_34944 loaded\n",
      "shard_37973 loaded\n",
      "shard_37794 loaded\n",
      "shard_29613 loaded\n",
      "shard_16197 loaded\n",
      "shard_13709 loaded\n",
      "shard_7554 loaded\n",
      "shard_18533 loaded\n",
      "shard_27413 loaded\n",
      "shard_17574 loaded\n",
      "shard_39538 loaded\n",
      "shard_19918 loaded\n",
      "shard_43797 loaded\n",
      "shard_10890 loaded\n",
      "shard_7277 loaded\n",
      "shard_32316 loaded\n",
      "shard_35959 loaded\n",
      "shard_8794 loaded\n",
      "shard_24626 loaded\n",
      "shard_45573 loaded\n",
      "shard_39385 loaded\n",
      "shard_22624 loaded\n",
      "shard_38971 loaded\n",
      "shard_7659 loaded\n",
      "shard_45943 loaded\n",
      "shard_34066 loaded\n",
      "shard_15490 loaded\n",
      "shard_8947 loaded\n",
      "shard_46941 loaded\n",
      "shard_43545 loaded\n",
      "shard_41053 loaded\n",
      "shard_39443 loaded\n",
      "shard_40551 loaded\n",
      "shard_1839 loaded\n",
      "shard_39156 loaded\n",
      "shard_16815 loaded\n",
      "shard_9623 loaded\n",
      "shard_6056 loaded\n",
      "shard_36213 loaded\n",
      "shard_31355 loaded\n",
      "shard_27046 loaded\n",
      "shard_29160 loaded\n",
      "shard_14059 loaded\n",
      "shard_975 loaded\n",
      "shard_3641 loaded\n",
      "shard_8097 loaded\n",
      "shard_381 loaded\n",
      "shard_48237 loaded\n",
      "shard_20107 loaded\n",
      "shard_11663 loaded\n",
      "shard_31929 loaded\n",
      "shard_32446 loaded\n",
      "shard_46282 loaded\n",
      "shard_20533 loaded\n",
      "shard_38676 loaded\n",
      "shard_46217 loaded\n",
      "shard_8573 loaded\n",
      "shard_30934 loaded\n",
      "shard_16441 loaded\n",
      "shard_3638 loaded\n",
      "shard_6913 loaded\n",
      "shard_29433 loaded\n",
      "shard_15314 loaded\n",
      "shard_30105 loaded\n",
      "shard_41842 loaded\n",
      "shard_17483 loaded\n",
      "shard_28055 loaded\n",
      "shard_12258 loaded\n",
      "shard_21765 loaded\n",
      "shard_24607 loaded\n",
      "shard_46526 loaded\n",
      "shard_28252 loaded\n",
      "shard_29697 loaded\n",
      "shard_42639 loaded\n",
      "shard_26031 loaded\n",
      "shard_45848 loaded\n",
      "shard_47348 loaded\n",
      "shard_24057 loaded\n",
      "shard_29422 loaded\n",
      "shard_20880 loaded\n",
      "shard_38792 loaded\n",
      "shard_19858 loaded\n",
      "shard_24855 loaded\n",
      "shard_49372 loaded\n",
      "shard_21344 loaded\n",
      "shard_12348 loaded\n",
      "shard_5361 loaded\n",
      "shard_4843 loaded\n",
      "shard_47543 loaded\n",
      "shard_23277 loaded\n",
      "shard_40461 loaded\n",
      "shard_37689 loaded\n",
      "shard_23488 loaded\n",
      "shard_35915 loaded\n",
      "shard_1606 loaded\n",
      "shard_19232 loaded\n",
      "shard_5601 loaded\n",
      "shard_29182 loaded\n",
      "shard_24563 loaded\n",
      "shard_23884 loaded\n",
      "shard_34047 loaded\n",
      "shard_28907 loaded\n",
      "shard_37898 loaded\n",
      "shard_7075 loaded\n",
      "shard_5337 loaded\n",
      "shard_7652 loaded\n",
      "shard_12111 loaded\n",
      "shard_40850 loaded\n",
      "shard_31242 loaded\n",
      "shard_27541 loaded\n",
      "shard_41217 loaded\n",
      "shard_46721 loaded\n",
      "shard_12550 loaded\n",
      "shard_35914 loaded\n",
      "shard_14493 loaded\n",
      "shard_1499 loaded\n",
      "shard_8910 loaded\n",
      "shard_10848 loaded\n",
      "shard_40073 loaded\n",
      "shard_44680 loaded\n",
      "shard_36258 loaded\n",
      "shard_28064 loaded\n",
      "shard_5892 loaded\n",
      "shard_17809 loaded\n",
      "shard_26306 loaded\n",
      "shard_46762 loaded\n",
      "shard_3654 loaded\n",
      "shard_27821 loaded\n",
      "shard_12987 loaded\n",
      "shard_19020 loaded\n",
      "shard_40407 loaded\n",
      "shard_11272 loaded\n",
      "shard_43954 loaded\n",
      "shard_29263 loaded\n",
      "shard_32222 loaded\n",
      "shard_31656 loaded\n",
      "shard_5196 loaded\n",
      "shard_24578 loaded\n",
      "shard_45197 loaded\n",
      "shard_35466 loaded\n",
      "shard_14845 loaded\n",
      "shard_4505 loaded\n",
      "shard_41721 loaded\n",
      "shard_45854 loaded\n",
      "shard_29736 loaded\n",
      "shard_20994 loaded\n",
      "shard_32611 loaded\n",
      "shard_35847 loaded\n",
      "shard_46733 loaded\n",
      "shard_19740 loaded\n",
      "shard_18586 loaded\n",
      "shard_28017 loaded\n",
      "shard_21300 loaded\n",
      "shard_43822 loaded\n",
      "shard_25597 loaded\n",
      "shard_24629 loaded\n",
      "shard_2773 loaded\n",
      "shard_6052 loaded\n",
      "shard_46742 loaded\n",
      "shard_22266 loaded\n",
      "shard_44662 loaded\n",
      "shard_35351 loaded\n",
      "shard_19078 loaded\n",
      "shard_14454 loaded\n",
      "shard_13828 loaded\n",
      "shard_7127 loaded\n",
      "shard_17501 loaded\n",
      "shard_17479 loaded\n",
      "shard_33374 loaded\n",
      "shard_1404 loaded\n",
      "shard_40799 loaded\n",
      "shard_3449 loaded\n",
      "shard_4203 loaded\n",
      "shard_39551 loaded\n",
      "shard_40261 loaded\n",
      "shard_42416 loaded\n",
      "shard_39273 loaded\n",
      "shard_38934 loaded\n",
      "shard_47671 loaded\n",
      "shard_40196 loaded\n",
      "shard_15192 loaded\n",
      "shard_33196 loaded\n",
      "shard_25774 loaded\n",
      "shard_45360 loaded\n",
      "shard_21648 loaded\n",
      "shard_5123 loaded\n",
      "shard_48564 loaded\n",
      "shard_16988 loaded\n",
      "shard_32484 loaded\n",
      "shard_6319 loaded\n",
      "shard_14275 loaded\n",
      "shard_28477 loaded\n",
      "shard_23807 loaded\n",
      "shard_36439 loaded\n",
      "shard_16730 loaded\n",
      "shard_48126 loaded\n",
      "shard_45167 loaded\n",
      "shard_4300 loaded\n",
      "shard_44306 loaded\n",
      "shard_12220 loaded\n",
      "shard_5561 loaded\n",
      "shard_10860 loaded\n",
      "shard_20925 loaded\n",
      "shard_45902 loaded\n",
      "shard_1255 loaded\n",
      "shard_43723 loaded\n",
      "shard_2749 loaded\n",
      "shard_37443 loaded\n",
      "shard_37035 loaded\n",
      "shard_8045 loaded\n",
      "shard_47361 loaded\n",
      "shard_38719 loaded\n",
      "shard_19315 loaded\n",
      "shard_7893 loaded\n",
      "shard_18104 loaded\n",
      "shard_6471 loaded\n",
      "shard_43487 loaded\n",
      "shard_44407 loaded\n",
      "shard_15858 loaded\n",
      "shard_9492 loaded\n",
      "shard_26193 loaded\n",
      "shard_10851 loaded\n",
      "shard_45799 loaded\n",
      "shard_47087 loaded\n",
      "shard_23096 loaded\n",
      "shard_16651 loaded\n",
      "shard_1252 loaded\n",
      "shard_44802 loaded\n",
      "shard_48704 loaded\n",
      "shard_23300 loaded\n",
      "shard_49538 loaded\n",
      "shard_24000 loaded\n",
      "shard_47381 loaded\n",
      "shard_31335 loaded\n",
      "shard_20922 loaded\n",
      "shard_11409 loaded\n",
      "shard_28206 loaded\n",
      "shard_14126 loaded\n",
      "shard_47595 loaded\n",
      "shard_12760 loaded\n",
      "shard_24438 loaded\n",
      "shard_35241 loaded\n",
      "shard_43128 loaded\n",
      "shard_1413 loaded\n",
      "shard_44537 loaded\n",
      "shard_45547 loaded\n",
      "shard_10619 loaded\n",
      "shard_19206 loaded\n",
      "shard_21775 loaded\n",
      "shard_38346 loaded\n",
      "shard_40621 loaded\n",
      "shard_2244 loaded\n",
      "shard_33988 loaded\n",
      "shard_17396 loaded\n",
      "shard_27951 loaded\n",
      "shard_12957 loaded\n",
      "shard_9864 loaded\n",
      "shard_24400 loaded\n",
      "shard_26882 loaded\n",
      "shard_15809 loaded\n",
      "shard_36288 loaded\n",
      "shard_42046 loaded\n",
      "shard_14260 loaded\n",
      "shard_48006 loaded\n",
      "shard_5858 loaded\n",
      "shard_27029 loaded\n",
      "shard_13794 loaded\n",
      "shard_16737 loaded\n",
      "shard_11774 loaded\n",
      "shard_47353 loaded\n",
      "shard_49574 loaded\n",
      "shard_584 loaded\n",
      "shard_42979 loaded\n",
      "shard_32240 loaded\n",
      "shard_44430 loaded\n",
      "shard_20747 loaded\n",
      "shard_41409 loaded\n",
      "shard_22989 loaded\n",
      "shard_2328 loaded\n",
      "shard_28876 loaded\n",
      "shard_8035 loaded\n",
      "shard_45985 loaded\n",
      "shard_25994 loaded\n",
      "shard_31329 loaded\n",
      "shard_34501 loaded\n",
      "shard_38764 loaded\n",
      "shard_18411 loaded\n",
      "shard_44362 loaded\n",
      "shard_3160 loaded\n",
      "shard_9679 loaded\n",
      "shard_13669 loaded\n",
      "shard_21692 loaded\n",
      "shard_37053 loaded\n",
      "shard_13339 loaded\n",
      "shard_31443 loaded\n",
      "shard_25012 loaded\n",
      "shard_26452 loaded\n",
      "shard_12528 loaded\n",
      "shard_29592 loaded\n",
      "shard_12037 loaded\n",
      "shard_33038 loaded\n",
      "shard_26547 loaded\n",
      "shard_9642 loaded\n",
      "shard_47599 loaded\n",
      "shard_27813 loaded\n",
      "shard_10134 loaded\n",
      "shard_33706 loaded\n",
      "shard_12904 loaded\n",
      "shard_36232 loaded\n",
      "shard_28212 loaded\n",
      "shard_46994 loaded\n",
      "shard_7555 loaded\n",
      "shard_8184 loaded\n",
      "shard_6119 loaded\n",
      "shard_521 loaded\n",
      "shard_15334 loaded\n",
      "shard_41890 loaded\n",
      "shard_41434 loaded\n",
      "shard_28960 loaded\n",
      "shard_4348 loaded\n",
      "shard_29069 loaded\n",
      "shard_40789 loaded\n",
      "shard_12018 loaded\n",
      "shard_1897 loaded\n",
      "shard_39194 loaded\n",
      "shard_49556 loaded\n",
      "shard_41339 loaded\n",
      "shard_27754 loaded\n",
      "shard_6601 loaded\n",
      "shard_16114 loaded\n",
      "shard_35437 loaded\n",
      "shard_35688 loaded\n",
      "shard_36791 loaded\n",
      "shard_33231 loaded\n",
      "shard_20360 loaded\n",
      "shard_19900 loaded\n",
      "shard_27882 loaded\n",
      "shard_15068 loaded\n",
      "shard_15257 loaded\n",
      "shard_5697 loaded\n",
      "shard_7242 loaded\n",
      "shard_18236 loaded\n",
      "shard_35938 loaded\n",
      "shard_24274 loaded\n",
      "shard_36804 loaded\n",
      "shard_24445 loaded\n",
      "shard_28174 loaded\n",
      "shard_29767 loaded\n",
      "shard_37526 loaded\n",
      "shard_41460 loaded\n",
      "shard_11890 loaded\n",
      "shard_29032 loaded\n",
      "shard_6049 loaded\n",
      "shard_16660 loaded\n",
      "shard_228 loaded\n",
      "shard_49558 loaded\n",
      "shard_1640 loaded\n",
      "shard_43638 loaded\n",
      "shard_22599 loaded\n",
      "shard_37203 loaded\n",
      "shard_1582 loaded\n",
      "shard_13672 loaded\n",
      "shard_19412 loaded\n",
      "shard_4014 loaded\n",
      "shard_10433 loaded\n",
      "shard_35029 loaded\n",
      "shard_16209 loaded\n",
      "shard_18041 loaded\n",
      "shard_42177 loaded\n",
      "shard_33824 loaded\n",
      "shard_35128 loaded\n",
      "shard_38368 loaded\n",
      "shard_23976 loaded\n",
      "shard_36779 loaded\n",
      "shard_18841 loaded\n",
      "shard_11791 loaded\n",
      "shard_20146 loaded\n",
      "shard_1703 loaded\n",
      "shard_28958 loaded\n",
      "shard_32645 loaded\n",
      "shard_28798 loaded\n",
      "shard_17778 loaded\n",
      "shard_28803 loaded\n",
      "shard_8859 loaded\n",
      "shard_12685 loaded\n",
      "shard_43279 loaded\n",
      "shard_15882 loaded\n",
      "shard_32303 loaded\n",
      "shard_2439 loaded\n",
      "shard_29165 loaded\n",
      "shard_27607 loaded\n",
      "shard_20102 loaded\n",
      "shard_12648 loaded\n",
      "shard_14296 loaded\n",
      "shard_47363 loaded\n",
      "shard_22898 loaded\n",
      "shard_33837 loaded\n",
      "shard_27386 loaded\n",
      "shard_31394 loaded\n",
      "shard_37479 loaded\n",
      "shard_19282 loaded\n",
      "shard_27659 loaded\n",
      "shard_8195 loaded\n",
      "shard_24540 loaded\n",
      "shard_41233 loaded\n",
      "shard_45932 loaded\n",
      "shard_5157 loaded\n",
      "shard_2524 loaded\n",
      "shard_36138 loaded\n",
      "shard_129 loaded\n",
      "shard_26635 loaded\n",
      "shard_28327 loaded\n",
      "shard_48276 loaded\n",
      "shard_25329 loaded\n",
      "shard_24388 loaded\n",
      "shard_32911 loaded\n",
      "shard_3125 loaded\n",
      "shard_36257 loaded\n",
      "shard_8837 loaded\n",
      "shard_29575 loaded\n",
      "shard_47852 loaded\n",
      "shard_46350 loaded\n",
      "shard_8068 loaded\n",
      "shard_35506 loaded\n",
      "shard_3906 loaded\n",
      "shard_5284 loaded\n",
      "shard_27031 loaded\n",
      "shard_2317 loaded\n",
      "shard_18419 loaded\n",
      "shard_21744 loaded\n",
      "shard_42210 loaded\n",
      "shard_39632 loaded\n",
      "shard_2795 loaded\n",
      "shard_5699 loaded\n",
      "shard_27133 loaded\n",
      "shard_6134 loaded\n",
      "shard_8943 loaded\n",
      "shard_4534 loaded\n",
      "shard_43371 loaded\n",
      "shard_31701 loaded\n",
      "shard_21918 loaded\n",
      "shard_21784 loaded\n",
      "shard_24740 loaded\n",
      "shard_29353 loaded\n",
      "shard_45353 loaded\n",
      "shard_49794 loaded\n",
      "shard_25020 loaded\n",
      "shard_46346 loaded\n",
      "shard_14141 loaded\n",
      "shard_48169 loaded\n",
      "shard_33365 loaded\n",
      "shard_7661 loaded\n",
      "shard_5231 loaded\n",
      "shard_28567 loaded\n",
      "shard_28542 loaded\n",
      "shard_41466 loaded\n",
      "shard_939 loaded\n",
      "shard_16156 loaded\n",
      "shard_11873 loaded\n",
      "shard_2032 loaded\n",
      "shard_31079 loaded\n",
      "shard_25443 loaded\n",
      "shard_19159 loaded\n",
      "shard_1890 loaded\n",
      "shard_39722 loaded\n",
      "shard_45164 loaded\n",
      "shard_28112 loaded\n",
      "shard_13480 loaded\n",
      "shard_2106 loaded\n",
      "shard_13610 loaded\n",
      "shard_29671 loaded\n",
      "shard_2568 loaded\n",
      "shard_46145 loaded\n",
      "shard_18282 loaded\n",
      "shard_43794 loaded\n",
      "shard_35294 loaded\n",
      "shard_2912 loaded\n",
      "shard_10620 loaded\n",
      "shard_13914 loaded\n",
      "shard_26516 loaded\n",
      "shard_464 loaded\n",
      "shard_40788 loaded\n",
      "shard_21678 loaded\n",
      "shard_6809 loaded\n",
      "shard_8516 loaded\n",
      "shard_26618 loaded\n",
      "shard_38456 loaded\n",
      "shard_39845 loaded\n",
      "shard_3718 loaded\n",
      "shard_34806 loaded\n",
      "shard_4278 loaded\n",
      "shard_29468 loaded\n",
      "shard_34484 loaded\n",
      "shard_44622 loaded\n",
      "shard_13792 loaded\n",
      "shard_33086 loaded\n",
      "shard_2555 loaded\n",
      "shard_41379 loaded\n",
      "shard_1335 loaded\n",
      "shard_48011 loaded\n",
      "shard_28900 loaded\n",
      "shard_7897 loaded\n",
      "shard_21098 loaded\n",
      "shard_43871 loaded\n",
      "shard_15111 loaded\n",
      "shard_27797 loaded\n",
      "shard_28436 loaded\n",
      "shard_37697 loaded\n",
      "shard_24147 loaded\n",
      "shard_17697 loaded\n",
      "shard_43304 loaded\n",
      "shard_26402 loaded\n",
      "shard_1970 loaded\n",
      "shard_5382 loaded\n",
      "shard_11051 loaded\n",
      "shard_31862 loaded\n",
      "shard_41417 loaded\n",
      "shard_29902 loaded\n",
      "shard_18412 loaded\n",
      "shard_34261 loaded\n",
      "shard_48019 loaded\n",
      "shard_40726 loaded\n",
      "shard_41846 loaded\n",
      "shard_13729 loaded\n",
      "shard_33165 loaded\n",
      "shard_47058 loaded\n",
      "shard_48727 loaded\n",
      "shard_48671 loaded\n",
      "shard_28441 loaded\n",
      "shard_1662 loaded\n",
      "shard_11551 loaded\n",
      "shard_43661 loaded\n",
      "shard_4250 loaded\n",
      "shard_39454 loaded\n",
      "shard_22442 loaded\n",
      "shard_47160 loaded\n",
      "shard_14999 loaded\n",
      "shard_6528 loaded\n",
      "shard_16153 loaded\n",
      "shard_21901 loaded\n",
      "shard_15381 loaded\n",
      "shard_8670 loaded\n",
      "shard_45106 loaded\n",
      "shard_33699 loaded\n",
      "shard_17504 loaded\n",
      "shard_4910 loaded\n",
      "shard_13007 loaded\n",
      "shard_23566 loaded\n",
      "shard_10238 loaded\n",
      "shard_45044 loaded\n",
      "shard_1202 loaded\n",
      "shard_36482 loaded\n",
      "shard_36135 loaded\n",
      "shard_48189 loaded\n",
      "shard_18953 loaded\n",
      "shard_26145 loaded\n",
      "shard_44371 loaded\n",
      "shard_25849 loaded\n",
      "shard_35264 loaded\n",
      "shard_8477 loaded\n",
      "shard_5279 loaded\n",
      "shard_15569 loaded\n",
      "shard_14959 loaded\n",
      "shard_47271 loaded\n",
      "shard_12447 loaded\n",
      "shard_14389 loaded\n",
      "shard_42090 loaded\n",
      "shard_10227 loaded\n",
      "shard_44503 loaded\n",
      "shard_11438 loaded\n",
      "shard_27240 loaded\n",
      "shard_7963 loaded\n",
      "shard_16253 loaded\n",
      "shard_2286 loaded\n",
      "shard_25195 loaded\n",
      "shard_186 loaded\n",
      "shard_2228 loaded\n",
      "shard_4262 loaded\n",
      "shard_31660 loaded\n",
      "shard_38391 loaded\n",
      "shard_12589 loaded\n",
      "shard_23131 loaded\n",
      "shard_44007 loaded\n",
      "shard_27976 loaded\n",
      "shard_30693 loaded\n",
      "shard_11897 loaded\n",
      "shard_37938 loaded\n",
      "shard_8044 loaded\n",
      "shard_43189 loaded\n",
      "shard_2607 loaded\n",
      "shard_33727 loaded\n",
      "shard_25193 loaded\n",
      "shard_33222 loaded\n",
      "shard_44873 loaded\n",
      "shard_1086 loaded\n",
      "shard_20189 loaded\n",
      "shard_29418 loaded\n",
      "shard_43713 loaded\n",
      "shard_20842 loaded\n",
      "shard_41193 loaded\n",
      "shard_42658 loaded\n",
      "shard_21010 loaded\n",
      "shard_31863 loaded\n",
      "shard_13159 loaded\n",
      "shard_4897 loaded\n",
      "shard_29601 loaded\n",
      "shard_2197 loaded\n",
      "shard_13197 loaded\n",
      "shard_30045 loaded\n",
      "shard_42971 loaded\n",
      "shard_47003 loaded\n",
      "shard_33188 loaded\n",
      "shard_49523 loaded\n",
      "shard_43816 loaded\n",
      "shard_19032 loaded\n",
      "shard_13536 loaded\n",
      "shard_26937 loaded\n",
      "shard_26814 loaded\n",
      "shard_42392 loaded\n",
      "shard_23491 loaded\n",
      "shard_5091 loaded\n",
      "shard_27335 loaded\n",
      "shard_47648 loaded\n",
      "shard_15471 loaded\n",
      "shard_38770 loaded\n",
      "shard_25128 loaded\n",
      "shard_11039 loaded\n",
      "shard_9510 loaded\n",
      "shard_40324 loaded\n",
      "shard_27963 loaded\n",
      "shard_17224 loaded\n",
      "shard_44863 loaded\n",
      "shard_16512 loaded\n",
      "shard_35242 loaded\n",
      "shard_34516 loaded\n",
      "shard_26129 loaded\n",
      "shard_16152 loaded\n",
      "shard_33766 loaded\n",
      "shard_23273 loaded\n",
      "shard_35951 loaded\n",
      "shard_38461 loaded\n",
      "shard_31699 loaded\n",
      "shard_21739 loaded\n",
      "shard_10464 loaded\n",
      "shard_14088 loaded\n",
      "shard_35653 loaded\n",
      "shard_11880 loaded\n",
      "shard_32897 loaded\n",
      "shard_25969 loaded\n",
      "shard_36468 loaded\n",
      "shard_49975 loaded\n",
      "shard_31270 loaded\n",
      "shard_41362 loaded\n",
      "shard_48060 loaded\n",
      "shard_37251 loaded\n",
      "shard_24003 loaded\n",
      "shard_23570 loaded\n",
      "shard_19671 loaded\n",
      "shard_43987 loaded\n",
      "shard_11122 loaded\n",
      "shard_30120 loaded\n",
      "shard_26586 loaded\n",
      "shard_7070 loaded\n",
      "shard_44123 loaded\n",
      "shard_41296 loaded\n",
      "shard_25556 loaded\n",
      "shard_16904 loaded\n",
      "shard_22477 loaded\n",
      "shard_18182 loaded\n",
      "shard_24238 loaded\n",
      "shard_37000 loaded\n",
      "shard_40935 loaded\n",
      "shard_24876 loaded\n",
      "shard_12573 loaded\n",
      "shard_42335 loaded\n",
      "shard_20791 loaded\n",
      "shard_25344 loaded\n",
      "shard_48499 loaded\n",
      "shard_9297 loaded\n",
      "shard_34959 loaded\n",
      "shard_11315 loaded\n",
      "shard_28420 loaded\n",
      "shard_48614 loaded\n",
      "shard_17292 loaded\n",
      "shard_45690 loaded\n",
      "shard_7722 loaded\n",
      "shard_49224 loaded\n",
      "shard_33798 loaded\n",
      "shard_47975 loaded\n",
      "shard_31212 loaded\n",
      "shard_41422 loaded\n",
      "shard_21132 loaded\n",
      "shard_47313 loaded\n",
      "shard_2119 loaded\n",
      "shard_1375 loaded\n",
      "shard_34383 loaded\n",
      "shard_38761 loaded\n",
      "shard_5265 loaded\n",
      "shard_34399 loaded\n",
      "shard_3867 loaded\n",
      "shard_1203 loaded\n",
      "shard_15345 loaded\n",
      "shard_11433 loaded\n",
      "shard_18159 loaded\n",
      "shard_26666 loaded\n",
      "shard_9159 loaded\n",
      "shard_39372 loaded\n",
      "shard_15454 loaded\n",
      "shard_31753 loaded\n",
      "shard_6739 loaded\n",
      "shard_23053 loaded\n",
      "shard_32884 loaded\n",
      "shard_30125 loaded\n",
      "shard_11367 loaded\n",
      "shard_5059 loaded\n",
      "shard_9799 loaded\n",
      "shard_43766 loaded\n",
      "shard_37788 loaded\n",
      "shard_46771 loaded\n",
      "shard_32848 loaded\n",
      "shard_26925 loaded\n",
      "shard_3273 loaded\n",
      "shard_7622 loaded\n",
      "shard_27820 loaded\n",
      "shard_17223 loaded\n",
      "shard_40252 loaded\n",
      "shard_44408 loaded\n",
      "shard_35341 loaded\n",
      "shard_17715 loaded\n",
      "shard_20780 loaded\n",
      "shard_10337 loaded\n",
      "shard_2943 loaded\n",
      "shard_26487 loaded\n",
      "shard_640 loaded\n",
      "shard_32325 loaded\n",
      "shard_3583 loaded\n",
      "shard_23684 loaded\n",
      "shard_39975 loaded\n",
      "shard_291 loaded\n",
      "shard_10334 loaded\n",
      "shard_24218 loaded\n",
      "shard_15232 loaded\n",
      "shard_44322 loaded\n",
      "shard_29275 loaded\n",
      "shard_45558 loaded\n",
      "shard_43685 loaded\n",
      "shard_33384 loaded\n",
      "shard_43771 loaded\n",
      "shard_4733 loaded\n",
      "shard_40228 loaded\n",
      "shard_9225 loaded\n",
      "shard_20309 loaded\n",
      "shard_20702 loaded\n",
      "shard_30962 loaded\n",
      "shard_12792 loaded\n",
      "shard_25141 loaded\n",
      "shard_812 loaded\n",
      "shard_43791 loaded\n",
      "shard_33137 loaded\n",
      "shard_46826 loaded\n",
      "shard_47899 loaded\n",
      "shard_28143 loaded\n",
      "shard_16949 loaded\n",
      "shard_27505 loaded\n",
      "shard_40714 loaded\n",
      "shard_39373 loaded\n",
      "shard_24658 loaded\n",
      "shard_7332 loaded\n",
      "shard_4709 loaded\n",
      "shard_22058 loaded\n",
      "shard_32930 loaded\n",
      "shard_23908 loaded\n",
      "shard_38982 loaded\n",
      "shard_7902 loaded\n",
      "shard_24653 loaded\n",
      "shard_4441 loaded\n",
      "shard_17361 loaded\n",
      "shard_13633 loaded\n",
      "shard_2031 loaded\n",
      "shard_31430 loaded\n",
      "shard_24017 loaded\n",
      "shard_35665 loaded\n",
      "shard_17822 loaded\n",
      "shard_12654 loaded\n",
      "shard_4333 loaded\n",
      "shard_28173 loaded\n",
      "shard_4499 loaded\n",
      "shard_26209 loaded\n",
      "shard_42323 loaded\n",
      "shard_23094 loaded\n",
      "shard_13406 loaded\n",
      "shard_44998 loaded\n",
      "shard_2724 loaded\n",
      "shard_36224 loaded\n",
      "shard_49644 loaded\n",
      "shard_40902 loaded\n",
      "shard_23975 loaded\n",
      "shard_13687 loaded\n",
      "shard_47298 loaded\n",
      "shard_27174 loaded\n",
      "shard_32966 loaded\n",
      "shard_18532 loaded\n",
      "shard_29516 loaded\n",
      "shard_23907 loaded\n",
      "shard_37106 loaded\n",
      "shard_39463 loaded\n",
      "shard_4584 loaded\n",
      "shard_11943 loaded\n",
      "shard_44569 loaded\n",
      "shard_7235 loaded\n",
      "shard_49669 loaded\n",
      "shard_35586 loaded\n",
      "shard_14160 loaded\n",
      "shard_18773 loaded\n",
      "shard_27563 loaded\n",
      "shard_13735 loaded\n",
      "shard_21447 loaded\n",
      "shard_10445 loaded\n",
      "shard_4069 loaded\n",
      "shard_24466 loaded\n",
      "shard_15289 loaded\n",
      "shard_23720 loaded\n",
      "shard_38594 loaded\n",
      "shard_9376 loaded\n",
      "shard_3204 loaded\n",
      "shard_7162 loaded\n",
      "shard_34293 loaded\n",
      "shard_26792 loaded\n",
      "shard_3174 loaded\n",
      "shard_47979 loaded\n",
      "shard_40097 loaded\n",
      "shard_43024 loaded\n",
      "shard_16762 loaded\n",
      "shard_4308 loaded\n",
      "shard_9027 loaded\n",
      "shard_43465 loaded\n",
      "shard_15259 loaded\n",
      "shard_17195 loaded\n",
      "shard_2737 loaded\n",
      "shard_26068 loaded\n",
      "shard_22099 loaded\n",
      "shard_8180 loaded\n",
      "shard_10225 loaded\n",
      "shard_22382 loaded\n",
      "shard_37855 loaded\n",
      "shard_28802 loaded\n",
      "shard_20328 loaded\n",
      "shard_3522 loaded\n",
      "shard_27081 loaded\n",
      "shard_23703 loaded\n",
      "shard_47517 loaded\n",
      "shard_41316 loaded\n",
      "shard_12376 loaded\n",
      "shard_34812 loaded\n",
      "shard_26162 loaded\n",
      "shard_44623 loaded\n",
      "shard_22574 loaded\n",
      "shard_6103 loaded\n",
      "shard_11615 loaded\n",
      "shard_20503 loaded\n",
      "shard_17115 loaded\n",
      "shard_25125 loaded\n",
      "shard_1668 loaded\n",
      "shard_18068 loaded\n",
      "shard_24114 loaded\n",
      "shard_25318 loaded\n",
      "shard_15292 loaded\n",
      "shard_27161 loaded\n",
      "shard_33021 loaded\n",
      "shard_31984 loaded\n",
      "shard_37083 loaded\n",
      "shard_4904 loaded\n",
      "shard_6148 loaded\n",
      "shard_12451 loaded\n",
      "shard_43427 loaded\n",
      "shard_36502 loaded\n",
      "shard_13188 loaded\n",
      "shard_1976 loaded\n",
      "shard_30688 loaded\n",
      "shard_43373 loaded\n",
      "shard_17720 loaded\n",
      "shard_8078 loaded\n",
      "shard_8380 loaded\n",
      "shard_12761 loaded\n",
      "shard_1643 loaded\n",
      "shard_47413 loaded\n",
      "shard_31991 loaded\n",
      "shard_40724 loaded\n",
      "shard_5276 loaded\n",
      "shard_13693 loaded\n",
      "shard_42342 loaded\n",
      "shard_2451 loaded\n",
      "shard_1691 loaded\n",
      "shard_48170 loaded\n",
      "shard_40691 loaded\n",
      "shard_37117 loaded\n",
      "shard_44211 loaded\n",
      "shard_12438 loaded\n",
      "shard_32018 loaded\n",
      "shard_20099 loaded\n",
      "shard_34891 loaded\n",
      "shard_48506 loaded\n",
      "shard_28040 loaded\n",
      "shard_41921 loaded\n",
      "shard_3064 loaded\n",
      "shard_8983 loaded\n",
      "shard_27599 loaded\n",
      "shard_46038 loaded\n",
      "shard_20920 loaded\n",
      "shard_41519 loaded\n",
      "shard_33771 loaded\n",
      "shard_24619 loaded\n",
      "shard_34747 loaded\n",
      "shard_31491 loaded\n",
      "shard_29709 loaded\n",
      "shard_37690 loaded\n",
      "shard_18424 loaded\n",
      "shard_31063 loaded\n",
      "shard_37295 loaded\n",
      "shard_39956 loaded\n",
      "shard_39917 loaded\n",
      "shard_43081 loaded\n",
      "shard_44765 loaded\n",
      "shard_38524 loaded\n",
      "shard_9590 loaded\n",
      "shard_8787 loaded\n",
      "shard_21804 loaded\n",
      "shard_25531 loaded\n",
      "shard_6064 loaded\n",
      "shard_44639 loaded\n",
      "shard_43712 loaded\n",
      "shard_39955 loaded\n",
      "shard_42831 loaded\n",
      "shard_20133 loaded\n",
      "shard_17757 loaded\n",
      "shard_35834 loaded\n",
      "shard_44254 loaded\n",
      "shard_23404 loaded\n",
      "shard_2288 loaded\n",
      "shard_10043 loaded\n",
      "shard_46689 loaded\n",
      "shard_29010 loaded\n",
      "shard_43536 loaded\n",
      "shard_30872 loaded\n",
      "shard_32982 loaded\n",
      "shard_43560 loaded\n",
      "shard_36009 loaded\n",
      "shard_49196 loaded\n",
      "shard_25776 loaded\n",
      "shard_29493 loaded\n",
      "shard_33256 loaded\n",
      "shard_22255 loaded\n",
      "shard_8252 loaded\n",
      "shard_968 loaded\n",
      "shard_41528 loaded\n",
      "shard_38268 loaded\n",
      "shard_1693 loaded\n",
      "shard_11914 loaded\n",
      "shard_42343 loaded\n",
      "shard_14468 loaded\n",
      "shard_752 loaded\n",
      "shard_21404 loaded\n",
      "shard_29008 loaded\n",
      "shard_36917 loaded\n",
      "shard_23863 loaded\n",
      "shard_47798 loaded\n",
      "shard_28726 loaded\n",
      "shard_17762 loaded\n",
      "shard_13782 loaded\n",
      "shard_39758 loaded\n",
      "shard_22456 loaded\n",
      "shard_6033 loaded\n",
      "shard_28215 loaded\n",
      "shard_10154 loaded\n",
      "shard_26575 loaded\n",
      "shard_27845 loaded\n",
      "shard_15884 loaded\n",
      "shard_16032 loaded\n",
      "shard_8226 loaded\n",
      "shard_23782 loaded\n",
      "shard_28531 loaded\n",
      "shard_31634 loaded\n",
      "shard_25820 loaded\n",
      "shard_29638 loaded\n",
      "shard_28386 loaded\n",
      "shard_33906 loaded\n",
      "shard_16503 loaded\n",
      "shard_5898 loaded\n",
      "shard_45760 loaded\n",
      "shard_31790 loaded\n",
      "shard_47708 loaded\n",
      "shard_13054 loaded\n",
      "shard_32963 loaded\n",
      "shard_40163 loaded\n",
      "shard_8993 loaded\n",
      "shard_4310 loaded\n",
      "shard_28966 loaded\n",
      "shard_19844 loaded\n",
      "shard_4490 loaded\n",
      "shard_7134 loaded\n",
      "shard_37564 loaded\n",
      "shard_37915 loaded\n",
      "shard_48605 loaded\n",
      "shard_1553 loaded\n",
      "shard_1614 loaded\n",
      "shard_967 loaded\n",
      "shard_47694 loaded\n",
      "shard_808 loaded\n",
      "shard_37497 loaded\n",
      "shard_43039 loaded\n",
      "shard_43812 loaded\n",
      "shard_8051 loaded\n",
      "shard_30289 loaded\n",
      "shard_28730 loaded\n",
      "shard_39001 loaded\n",
      "shard_4937 loaded\n",
      "shard_15361 loaded\n",
      "shard_27109 loaded\n",
      "shard_15103 loaded\n",
      "shard_30812 loaded\n",
      "shard_48228 loaded\n",
      "shard_16897 loaded\n",
      "shard_35008 loaded\n",
      "shard_30260 loaded\n",
      "shard_41141 loaded\n",
      "shard_46639 loaded\n",
      "shard_36888 loaded\n",
      "shard_45203 loaded\n",
      "shard_34836 loaded\n",
      "shard_13832 loaded\n",
      "shard_4961 loaded\n",
      "shard_21816 loaded\n",
      "shard_409 loaded\n",
      "shard_27474 loaded\n",
      "shard_23098 loaded\n",
      "shard_1777 loaded\n",
      "shard_35514 loaded\n",
      "shard_44527 loaded\n",
      "shard_11098 loaded\n",
      "shard_8632 loaded\n",
      "shard_35605 loaded\n",
      "shard_2322 loaded\n",
      "shard_49272 loaded\n",
      "shard_39945 loaded\n",
      "shard_39509 loaded\n",
      "shard_29626 loaded\n",
      "shard_2825 loaded\n",
      "shard_1439 loaded\n",
      "shard_5466 loaded\n",
      "shard_17276 loaded\n",
      "shard_23670 loaded\n",
      "shard_17503 loaded\n",
      "shard_37913 loaded\n",
      "shard_33011 loaded\n",
      "shard_44165 loaded\n",
      "shard_1300 loaded\n",
      "shard_500 loaded\n",
      "shard_39691 loaded\n",
      "shard_41326 loaded\n",
      "shard_14347 loaded\n",
      "shard_3011 loaded\n",
      "shard_49045 loaded\n",
      "shard_33860 loaded\n",
      "shard_47888 loaded\n",
      "shard_24868 loaded\n",
      "shard_35641 loaded\n",
      "shard_36358 loaded\n",
      "shard_43501 loaded\n",
      "shard_24558 loaded\n",
      "shard_3890 loaded\n",
      "shard_40930 loaded\n",
      "shard_43278 loaded\n",
      "shard_12971 loaded\n",
      "shard_31565 loaded\n",
      "shard_46076 loaded\n",
      "shard_3347 loaded\n",
      "shard_49622 loaded\n",
      "shard_12855 loaded\n",
      "shard_3456 loaded\n",
      "shard_26876 loaded\n",
      "shard_4956 loaded\n",
      "shard_28285 loaded\n",
      "shard_28274 loaded\n",
      "shard_40904 loaded\n",
      "shard_33608 loaded\n",
      "shard_27595 loaded\n",
      "shard_31627 loaded\n",
      "shard_14761 loaded\n",
      "shard_29070 loaded\n",
      "shard_19769 loaded\n",
      "shard_10950 loaded\n",
      "shard_10791 loaded\n",
      "shard_11636 loaded\n",
      "shard_25680 loaded\n",
      "shard_29497 loaded\n",
      "shard_43201 loaded\n",
      "shard_17118 loaded\n",
      "shard_10819 loaded\n",
      "shard_22713 loaded\n",
      "shard_4685 loaded\n",
      "shard_37984 loaded\n",
      "shard_49923 loaded\n",
      "shard_6412 loaded\n",
      "shard_49500 loaded\n",
      "shard_333 loaded\n",
      "shard_45027 loaded\n",
      "shard_22027 loaded\n",
      "shard_16742 loaded\n",
      "shard_13075 loaded\n",
      "shard_43619 loaded\n",
      "shard_29812 loaded\n",
      "shard_25923 loaded\n",
      "shard_23414 loaded\n",
      "shard_18546 loaded\n",
      "shard_18979 loaded\n",
      "shard_27631 loaded\n",
      "shard_25383 loaded\n",
      "shard_26119 loaded\n",
      "shard_30595 loaded\n",
      "shard_20648 loaded\n",
      "shard_31536 loaded\n",
      "shard_33671 loaded\n",
      "shard_17150 loaded\n",
      "shard_17250 loaded\n",
      "shard_31301 loaded\n",
      "shard_26795 loaded\n",
      "shard_28588 loaded\n",
      "shard_8693 loaded\n",
      "shard_42227 loaded\n",
      "shard_7106 loaded\n",
      "shard_23121 loaded\n",
      "shard_8792 loaded\n",
      "shard_6299 loaded\n",
      "shard_32396 loaded\n",
      "shard_21602 loaded\n",
      "shard_39981 loaded\n",
      "shard_3685 loaded\n",
      "shard_22663 loaded\n",
      "shard_13930 loaded\n",
      "shard_31053 loaded\n",
      "shard_11088 loaded\n",
      "shard_35570 loaded\n",
      "shard_37070 loaded\n",
      "shard_37541 loaded\n",
      "shard_43294 loaded\n",
      "shard_22760 loaded\n",
      "shard_19854 loaded\n",
      "shard_41595 loaded\n",
      "shard_32739 loaded\n",
      "shard_42915 loaded\n",
      "shard_33652 loaded\n",
      "shard_1250 loaded\n",
      "shard_21764 loaded\n",
      "shard_48538 loaded\n",
      "shard_29629 loaded\n",
      "shard_2687 loaded\n",
      "shard_26885 loaded\n",
      "shard_29461 loaded\n",
      "shard_6885 loaded\n",
      "shard_17724 loaded\n",
      "shard_28345 loaded\n",
      "shard_45445 loaded\n",
      "shard_26679 loaded\n",
      "shard_43101 loaded\n",
      "shard_36555 loaded\n",
      "shard_26079 loaded\n",
      "shard_30279 loaded\n",
      "shard_47239 loaded\n",
      "shard_9127 loaded\n",
      "shard_21123 loaded\n",
      "shard_19009 loaded\n",
      "shard_14702 loaded\n",
      "shard_8378 loaded\n",
      "shard_24419 loaded\n",
      "shard_38975 loaded\n",
      "shard_15750 loaded\n",
      "shard_49185 loaded\n",
      "shard_28716 loaded\n",
      "shard_18919 loaded\n",
      "shard_38794 loaded\n",
      "shard_13734 loaded\n",
      "shard_11561 loaded\n",
      "shard_27352 loaded\n",
      "shard_7271 loaded\n",
      "shard_23154 loaded\n",
      "shard_47690 loaded\n",
      "shard_42607 loaded\n",
      "shard_18964 loaded\n",
      "shard_48672 loaded\n",
      "shard_41666 loaded\n",
      "shard_28280 loaded\n",
      "shard_13488 loaded\n",
      "shard_49354 loaded\n",
      "shard_20468 loaded\n",
      "shard_1593 loaded\n",
      "shard_45109 loaded\n",
      "shard_7283 loaded\n",
      "shard_46832 loaded\n",
      "shard_32417 loaded\n",
      "shard_4187 loaded\n",
      "shard_7272 loaded\n",
      "shard_44533 loaded\n",
      "shard_21579 loaded\n",
      "shard_48328 loaded\n",
      "shard_11054 loaded\n",
      "shard_49241 loaded\n",
      "shard_24040 loaded\n",
      "shard_13321 loaded\n",
      "shard_24625 loaded\n",
      "shard_34433 loaded\n",
      "shard_48096 loaded\n",
      "shard_20274 loaded\n",
      "shard_40283 loaded\n",
      "shard_49779 loaded\n",
      "shard_28330 loaded\n",
      "shard_24054 loaded\n",
      "shard_36463 loaded\n",
      "shard_15329 loaded\n",
      "shard_14100 loaded\n",
      "shard_9359 loaded\n",
      "shard_36260 loaded\n",
      "shard_30344 loaded\n",
      "shard_4882 loaded\n",
      "shard_14948 loaded\n",
      "shard_21194 loaded\n",
      "shard_19303 loaded\n",
      "shard_25070 loaded\n",
      "shard_36240 loaded\n",
      "shard_29782 loaded\n",
      "shard_38466 loaded\n",
      "shard_35469 loaded\n",
      "shard_26252 loaded\n",
      "shard_7627 loaded\n",
      "shard_34987 loaded\n",
      "shard_41412 loaded\n",
      "shard_4619 loaded\n",
      "shard_35470 loaded\n",
      "shard_1862 loaded\n",
      "shard_107 loaded\n",
      "shard_23618 loaded\n",
      "shard_41076 loaded\n",
      "shard_6303 loaded\n",
      "shard_49357 loaded\n",
      "shard_19308 loaded\n",
      "shard_31292 loaded\n",
      "shard_49023 loaded\n",
      "shard_34880 loaded\n",
      "shard_28994 loaded\n",
      "shard_38041 loaded\n",
      "shard_6561 loaded\n",
      "shard_48845 loaded\n",
      "shard_43044 loaded\n",
      "shard_8807 loaded\n",
      "shard_26445 loaded\n",
      "shard_13558 loaded\n",
      "shard_18800 loaded\n",
      "shard_49894 loaded\n",
      "shard_38690 loaded\n",
      "shard_34473 loaded\n",
      "shard_39768 loaded\n",
      "shard_32164 loaded\n",
      "shard_41836 loaded\n",
      "shard_37761 loaded\n",
      "shard_12735 loaded\n",
      "shard_35195 loaded\n",
      "shard_37625 loaded\n",
      "shard_8715 loaded\n",
      "shard_33776 loaded\n",
      "shard_34460 loaded\n",
      "shard_28550 loaded\n",
      "shard_37216 loaded\n",
      "shard_34235 loaded\n",
      "shard_8765 loaded\n",
      "shard_14593 loaded\n",
      "shard_47537 loaded\n",
      "shard_1272 loaded\n",
      "shard_31031 loaded\n",
      "shard_18379 loaded\n",
      "shard_7681 loaded\n",
      "shard_45425 loaded\n",
      "shard_14687 loaded\n",
      "shard_17388 loaded\n",
      "shard_10068 loaded\n",
      "shard_20012 loaded\n",
      "shard_43834 loaded\n",
      "shard_30569 loaded\n",
      "shard_41468 loaded\n",
      "shard_23360 loaded\n",
      "shard_8190 loaded\n",
      "shard_44916 loaded\n",
      "shard_5474 loaded\n",
      "shard_12708 loaded\n",
      "shard_30717 loaded\n",
      "shard_31485 loaded\n",
      "shard_14966 loaded\n",
      "shard_19036 loaded\n",
      "shard_43047 loaded\n",
      "shard_39906 loaded\n",
      "shard_3459 loaded\n",
      "shard_3375 loaded\n",
      "shard_17357 loaded\n",
      "shard_46759 loaded\n",
      "shard_5173 loaded\n",
      "shard_42674 loaded\n",
      "shard_3901 loaded\n",
      "shard_26214 loaded\n",
      "shard_49510 loaded\n",
      "shard_22275 loaded\n",
      "shard_28718 loaded\n",
      "shard_6083 loaded\n",
      "shard_43083 loaded\n",
      "shard_45464 loaded\n",
      "shard_42793 loaded\n",
      "shard_24531 loaded\n",
      "shard_32095 loaded\n",
      "shard_14453 loaded\n",
      "shard_11046 loaded\n",
      "shard_18442 loaded\n",
      "shard_36527 loaded\n",
      "shard_4840 loaded\n",
      "shard_15903 loaded\n",
      "shard_13800 loaded\n",
      "shard_16196 loaded\n",
      "shard_9535 loaded\n",
      "shard_37331 loaded\n",
      "shard_3223 loaded\n",
      "shard_10454 loaded\n",
      "shard_48792 loaded\n",
      "shard_32773 loaded\n",
      "shard_2706 loaded\n",
      "shard_16346 loaded\n",
      "shard_1140 loaded\n",
      "shard_14198 loaded\n",
      "shard_44315 loaded\n",
      "shard_5848 loaded\n",
      "shard_16042 loaded\n",
      "shard_39859 loaded\n",
      "shard_8334 loaded\n",
      "shard_28511 loaded\n",
      "shard_14406 loaded\n",
      "shard_39662 loaded\n",
      "shard_31229 loaded\n",
      "shard_47742 loaded\n",
      "shard_41702 loaded\n",
      "shard_15762 loaded\n",
      "shard_13498 loaded\n",
      "shard_16930 loaded\n",
      "shard_43688 loaded\n",
      "shard_34313 loaded\n",
      "shard_39833 loaded\n",
      "shard_44036 loaded\n",
      "shard_45036 loaded\n",
      "shard_4605 loaded\n",
      "shard_212 loaded\n",
      "shard_28092 loaded\n",
      "shard_45280 loaded\n",
      "shard_47188 loaded\n",
      "shard_44953 loaded\n",
      "shard_32859 loaded\n",
      "shard_19888 loaded\n",
      "shard_13249 loaded\n",
      "shard_33218 loaded\n",
      "shard_222 loaded\n",
      "shard_13722 loaded\n",
      "shard_9631 loaded\n",
      "shard_48016 loaded\n",
      "shard_45543 loaded\n",
      "shard_34529 loaded\n",
      "shard_13142 loaded\n",
      "shard_19734 loaded\n",
      "shard_13395 loaded\n",
      "shard_25365 loaded\n",
      "shard_3127 loaded\n",
      "shard_33822 loaded\n",
      "shard_34377 loaded\n",
      "shard_217 loaded\n",
      "shard_14754 loaded\n",
      "shard_11879 loaded\n",
      "shard_4973 loaded\n",
      "shard_18029 loaded\n",
      "shard_30382 loaded\n",
      "shard_26404 loaded\n",
      "shard_41829 loaded\n",
      "shard_21057 loaded\n",
      "shard_11083 loaded\n",
      "shard_23162 loaded\n",
      "shard_27344 loaded\n",
      "shard_14640 loaded\n",
      "shard_20858 loaded\n",
      "shard_15799 loaded\n",
      "shard_4731 loaded\n",
      "shard_6714 loaded\n",
      "shard_24925 loaded\n",
      "shard_16837 loaded\n",
      "shard_23722 loaded\n",
      "shard_16984 loaded\n",
      "shard_46379 loaded\n",
      "shard_35574 loaded\n",
      "shard_30476 loaded\n",
      "shard_37782 loaded\n",
      "shard_23717 loaded\n",
      "shard_14699 loaded\n",
      "shard_37854 loaded\n",
      "shard_8527 loaded\n",
      "shard_18585 loaded\n",
      "shard_42223 loaded\n",
      "shard_16382 loaded\n",
      "shard_13991 loaded\n",
      "shard_22205 loaded\n",
      "shard_47145 loaded\n",
      "shard_235 loaded\n",
      "shard_35559 loaded\n",
      "shard_40554 loaded\n",
      "shard_40924 loaded\n",
      "shard_43359 loaded\n",
      "shard_27955 loaded\n",
      "shard_26048 loaded\n",
      "shard_46394 loaded\n",
      "shard_46900 loaded\n",
      "shard_40122 loaded\n",
      "shard_30846 loaded\n",
      "shard_23810 loaded\n",
      "shard_22116 loaded\n",
      "shard_43663 loaded\n",
      "shard_49954 loaded\n",
      "shard_38285 loaded\n",
      "shard_40031 loaded\n",
      "shard_9382 loaded\n",
      "shard_45716 loaded\n",
      "shard_34878 loaded\n",
      "shard_46267 loaded\n",
      "shard_22854 loaded\n",
      "shard_21532 loaded\n",
      "shard_10771 loaded\n",
      "shard_6366 loaded\n",
      "shard_11681 loaded\n",
      "shard_30509 loaded\n",
      "shard_33552 loaded\n",
      "shard_12610 loaded\n",
      "shard_46482 loaded\n",
      "shard_38789 loaded\n",
      "shard_16593 loaded\n",
      "shard_17913 loaded\n",
      "shard_10107 loaded\n",
      "shard_38983 loaded\n",
      "shard_7803 loaded\n",
      "shard_43789 loaded\n",
      "shard_30246 loaded\n",
      "shard_47510 loaded\n",
      "shard_46779 loaded\n",
      "shard_6224 loaded\n",
      "shard_21815 loaded\n",
      "shard_17862 loaded\n",
      "shard_48419 loaded\n",
      "shard_12575 loaded\n",
      "shard_46115 loaded\n",
      "shard_44677 loaded\n",
      "shard_18222 loaded\n",
      "shard_41476 loaded\n",
      "shard_4871 loaded\n",
      "shard_39204 loaded\n",
      "shard_41225 loaded\n",
      "shard_15692 loaded\n",
      "shard_8039 loaded\n",
      "shard_9556 loaded\n",
      "shard_28563 loaded\n",
      "shard_13461 loaded\n",
      "shard_33967 loaded\n",
      "shard_11553 loaded\n",
      "shard_38797 loaded\n",
      "shard_18356 loaded\n",
      "shard_9416 loaded\n",
      "shard_40694 loaded\n",
      "shard_3684 loaded\n",
      "shard_38446 loaded\n",
      "shard_14514 loaded\n",
      "shard_30417 loaded\n",
      "shard_20936 loaded\n",
      "shard_29823 loaded\n",
      "shard_1554 loaded\n",
      "shard_47673 loaded\n",
      "shard_25151 loaded\n",
      "shard_31604 loaded\n",
      "shard_29898 loaded\n",
      "shard_13382 loaded\n",
      "shard_34432 loaded\n",
      "shard_35937 loaded\n",
      "shard_697 loaded\n",
      "shard_35552 loaded\n",
      "shard_15135 loaded\n",
      "shard_34618 loaded\n",
      "shard_23502 loaded\n",
      "shard_20376 loaded\n",
      "shard_36049 loaded\n",
      "shard_34125 loaded\n",
      "shard_25492 loaded\n",
      "shard_48931 loaded\n",
      "shard_17005 loaded\n",
      "shard_6397 loaded\n",
      "shard_43518 loaded\n",
      "shard_41090 loaded\n",
      "shard_11187 loaded\n",
      "shard_44425 loaded\n",
      "shard_21152 loaded\n",
      "shard_13129 loaded\n",
      "shard_23538 loaded\n",
      "shard_8576 loaded\n",
      "shard_23105 loaded\n",
      "shard_9060 loaded\n",
      "shard_18360 loaded\n",
      "shard_22247 loaded\n",
      "shard_21758 loaded\n",
      "shard_27679 loaded\n",
      "shard_4561 loaded\n",
      "shard_4737 loaded\n",
      "shard_3482 loaded\n",
      "shard_9827 loaded\n",
      "shard_26017 loaded\n",
      "shard_23818 loaded\n",
      "shard_3692 loaded\n",
      "shard_9638 loaded\n",
      "shard_10287 loaded\n",
      "shard_44098 loaded\n",
      "shard_32868 loaded\n",
      "shard_562 loaded\n",
      "shard_27051 loaded\n",
      "shard_13865 loaded\n",
      "shard_9760 loaded\n",
      "shard_10297 loaded\n",
      "shard_32061 loaded\n",
      "shard_37232 loaded\n",
      "shard_42896 loaded\n",
      "shard_29660 loaded\n",
      "shard_47089 loaded\n",
      "shard_13528 loaded\n",
      "shard_49991 loaded\n",
      "shard_17227 loaded\n",
      "shard_778 loaded\n",
      "shard_46013 loaded\n",
      "shard_1001 loaded\n",
      "shard_23475 loaded\n",
      "shard_13270 loaded\n",
      "shard_11641 loaded\n",
      "shard_44926 loaded\n",
      "shard_40335 loaded\n",
      "shard_5211 loaded\n",
      "shard_25305 loaded\n",
      "shard_4350 loaded\n",
      "shard_917 loaded\n",
      "shard_18700 loaded\n",
      "shard_5529 loaded\n",
      "shard_37466 loaded\n",
      "shard_27449 loaded\n",
      "shard_19595 loaded\n",
      "shard_236 loaded\n",
      "shard_7856 loaded\n",
      "shard_20691 loaded\n",
      "shard_42542 loaded\n",
      "shard_11300 loaded\n",
      "shard_11915 loaded\n",
      "shard_27408 loaded\n",
      "shard_12197 loaded\n",
      "shard_10142 loaded\n",
      "shard_49863 loaded\n",
      "shard_5545 loaded\n",
      "shard_26800 loaded\n",
      "shard_9361 loaded\n",
      "shard_49427 loaded\n",
      "shard_4574 loaded\n",
      "shard_16245 loaded\n",
      "shard_38356 loaded\n",
      "shard_12639 loaded\n",
      "shard_3465 loaded\n",
      "shard_32857 loaded\n",
      "shard_28282 loaded\n",
      "shard_49734 loaded\n",
      "shard_37097 loaded\n",
      "shard_4268 loaded\n",
      "shard_45019 loaded\n",
      "shard_8739 loaded\n",
      "shard_38778 loaded\n",
      "shard_4944 loaded\n",
      "shard_25592 loaded\n",
      "shard_23431 loaded\n",
      "shard_25269 loaded\n",
      "shard_44028 loaded\n",
      "shard_33468 loaded\n",
      "shard_30454 loaded\n",
      "shard_39249 loaded\n",
      "shard_9974 loaded\n",
      "shard_14876 loaded\n",
      "shard_46460 loaded\n",
      "shard_42775 loaded\n",
      "shard_14057 loaded\n",
      "shard_528 loaded\n",
      "shard_32357 loaded\n",
      "shard_2323 loaded\n",
      "shard_14568 loaded\n",
      "shard_26101 loaded\n",
      "shard_39727 loaded\n",
      "shard_32113 loaded\n",
      "shard_48352 loaded\n",
      "shard_25729 loaded\n",
      "shard_43564 loaded\n",
      "shard_557 loaded\n",
      "shard_21488 loaded\n",
      "shard_5247 loaded\n",
      "shard_39861 loaded\n",
      "shard_29929 loaded\n",
      "shard_4063 loaded\n",
      "shard_7598 loaded\n",
      "shard_27091 loaded\n",
      "shard_27782 loaded\n",
      "shard_35837 loaded\n",
      "shard_49545 loaded\n",
      "shard_12775 loaded\n",
      "shard_19914 loaded\n",
      "shard_26992 loaded\n",
      "shard_39268 loaded\n",
      "shard_34150 loaded\n",
      "shard_49076 loaded\n",
      "shard_30332 loaded\n",
      "shard_47297 loaded\n",
      "shard_24408 loaded\n",
      "shard_8700 loaded\n",
      "shard_5289 loaded\n",
      "shard_9957 loaded\n",
      "shard_28009 loaded\n",
      "shard_28291 loaded\n",
      "shard_44329 loaded\n",
      "shard_19157 loaded\n",
      "shard_8371 loaded\n",
      "shard_1028 loaded\n",
      "shard_48178 loaded\n",
      "shard_10622 loaded\n",
      "shard_47074 loaded\n",
      "shard_27877 loaded\n",
      "shard_50 loaded\n",
      "shard_38214 loaded\n",
      "shard_36859 loaded\n",
      "shard_22478 loaded\n",
      "shard_31057 loaded\n",
      "shard_35724 loaded\n",
      "shard_13820 loaded\n",
      "shard_40382 loaded\n",
      "shard_45896 loaded\n",
      "shard_22826 loaded\n",
      "shard_13752 loaded\n",
      "shard_13652 loaded\n",
      "shard_26898 loaded\n",
      "shard_29119 loaded\n",
      "shard_22554 loaded\n",
      "shard_36003 loaded\n",
      "shard_30430 loaded\n",
      "shard_44628 loaded\n",
      "shard_10390 loaded\n",
      "shard_46497 loaded\n",
      "shard_33932 loaded\n",
      "shard_28557 loaded\n",
      "shard_34615 loaded\n",
      "shard_12505 loaded\n",
      "shard_7872 loaded\n",
      "shard_37126 loaded\n",
      "shard_8810 loaded\n",
      "shard_36305 loaded\n",
      "shard_4416 loaded\n",
      "shard_16830 loaded\n",
      "shard_5963 loaded\n",
      "shard_40343 loaded\n",
      "shard_47002 loaded\n",
      "shard_23760 loaded\n",
      "shard_5588 loaded\n",
      "shard_43628 loaded\n",
      "shard_20509 loaded\n",
      "shard_39752 loaded\n",
      "shard_5862 loaded\n",
      "shard_40681 loaded\n",
      "shard_44299 loaded\n",
      "shard_8177 loaded\n",
      "shard_30206 loaded\n",
      "shard_2963 loaded\n",
      "shard_44978 loaded\n",
      "shard_46806 loaded\n",
      "shard_39352 loaded\n",
      "shard_8127 loaded\n",
      "shard_29618 loaded\n",
      "shard_32780 loaded\n",
      "shard_11063 loaded\n",
      "shard_9828 loaded\n",
      "shard_15954 loaded\n",
      "shard_37395 loaded\n",
      "shard_29923 loaded\n",
      "shard_20948 loaded\n",
      "shard_5549 loaded\n",
      "shard_33712 loaded\n",
      "shard_29941 loaded\n",
      "shard_44150 loaded\n",
      "shard_20461 loaded\n",
      "shard_7667 loaded\n",
      "shard_44367 loaded\n",
      "shard_22013 loaded\n",
      "shard_987 loaded\n",
      "shard_362 loaded\n",
      "shard_26816 loaded\n",
      "shard_17190 loaded\n",
      "shard_27107 loaded\n",
      "shard_30652 loaded\n",
      "shard_13417 loaded\n",
      "shard_36093 loaded\n",
      "shard_37513 loaded\n",
      "shard_38753 loaded\n",
      "shard_14484 loaded\n",
      "shard_20380 loaded\n",
      "shard_40373 loaded\n",
      "shard_7496 loaded\n",
      "shard_39805 loaded\n",
      "shard_8627 loaded\n",
      "shard_42998 loaded\n",
      "shard_29079 loaded\n",
      "shard_37365 loaded\n",
      "shard_20382 loaded\n",
      "shard_4700 loaded\n",
      "shard_49778 loaded\n",
      "shard_7709 loaded\n",
      "shard_21505 loaded\n",
      "shard_25626 loaded\n",
      "shard_35339 loaded\n",
      "shard_4403 loaded\n",
      "shard_2092 loaded\n",
      "shard_12601 loaded\n",
      "shard_27306 loaded\n",
      "shard_28439 loaded\n",
      "shard_33488 loaded\n",
      "shard_404 loaded\n",
      "shard_32747 loaded\n",
      "shard_42614 loaded\n",
      "shard_27982 loaded\n",
      "shard_6101 loaded\n",
      "shard_16111 loaded\n",
      "shard_29903 loaded\n",
      "shard_31773 loaded\n",
      "shard_1129 loaded\n",
      "shard_43429 loaded\n",
      "shard_46670 loaded\n",
      "shard_28752 loaded\n",
      "shard_37190 loaded\n",
      "shard_43325 loaded\n",
      "shard_32540 loaded\n",
      "shard_5103 loaded\n",
      "shard_34672 loaded\n",
      "shard_7219 loaded\n",
      "shard_26348 loaded\n",
      "shard_7288 loaded\n",
      "shard_15295 loaded\n",
      "shard_28972 loaded\n",
      "shard_45200 loaded\n",
      "shard_5795 loaded\n",
      "shard_3446 loaded\n",
      "shard_14718 loaded\n",
      "shard_23532 loaded\n",
      "shard_11341 loaded\n",
      "shard_35247 loaded\n",
      "shard_20152 loaded\n",
      "shard_42186 loaded\n",
      "shard_3781 loaded\n",
      "shard_31841 loaded\n",
      "shard_384 loaded\n",
      "shard_11086 loaded\n",
      "shard_44667 loaded\n",
      "shard_48080 loaded\n",
      "shard_31808 loaded\n",
      "shard_40425 loaded\n",
      "shard_7953 loaded\n",
      "shard_44644 loaded\n",
      "shard_29208 loaded\n",
      "shard_16255 loaded\n",
      "shard_4562 loaded\n",
      "shard_38001 loaded\n",
      "shard_44093 loaded\n",
      "shard_4294 loaded\n",
      "shard_19712 loaded\n",
      "shard_9731 loaded\n",
      "shard_13265 loaded\n",
      "shard_34912 loaded\n",
      "shard_47861 loaded\n",
      "shard_15382 loaded\n",
      "shard_8071 loaded\n",
      "shard_19550 loaded\n",
      "shard_29242 loaded\n",
      "shard_29732 loaded\n",
      "shard_42951 loaded\n",
      "shard_22493 loaded\n",
      "shard_1577 loaded\n",
      "shard_17455 loaded\n",
      "shard_43472 loaded\n",
      "shard_23375 loaded\n",
      "shard_2503 loaded\n",
      "shard_3586 loaded\n",
      "shard_16868 loaded\n",
      "shard_42694 loaded\n",
      "shard_38093 loaded\n",
      "shard_34138 loaded\n",
      "shard_32812 loaded\n",
      "shard_31003 loaded\n",
      "shard_48691 loaded\n",
      "shard_43734 loaded\n",
      "shard_19295 loaded\n",
      "shard_26422 loaded\n",
      "shard_27500 loaded\n",
      "shard_12543 loaded\n",
      "shard_42881 loaded\n",
      "shard_46249 loaded\n",
      "shard_46001 loaded\n",
      "shard_24668 loaded\n",
      "shard_43104 loaded\n",
      "shard_9170 loaded\n",
      "shard_3805 loaded\n",
      "shard_41162 loaded\n",
      "shard_6288 loaded\n",
      "shard_8328 loaded\n",
      "shard_26576 loaded\n",
      "shard_40865 loaded\n",
      "shard_24590 loaded\n",
      "shard_11105 loaded\n",
      "shard_1269 loaded\n",
      "shard_2839 loaded\n",
      "shard_25324 loaded\n",
      "shard_9091 loaded\n",
      "shard_38317 loaded\n",
      "shard_43396 loaded\n",
      "shard_5084 loaded\n",
      "shard_5362 loaded\n",
      "shard_28611 loaded\n",
      "shard_36968 loaded\n",
      "shard_6230 loaded\n",
      "shard_18913 loaded\n",
      "shard_33267 loaded\n",
      "shard_1934 loaded\n",
      "shard_27569 loaded\n",
      "shard_5476 loaded\n",
      "shard_43188 loaded\n",
      "shard_21656 loaded\n",
      "shard_38802 loaded\n",
      "shard_20588 loaded\n",
      "shard_42685 loaded\n",
      "shard_28078 loaded\n",
      "shard_6665 loaded\n",
      "shard_43327 loaded\n",
      "shard_25277 loaded\n",
      "shard_12357 loaded\n",
      "shard_10476 loaded\n",
      "shard_36377 loaded\n",
      "shard_21668 loaded\n",
      "shard_6648 loaded\n",
      "shard_32975 loaded\n",
      "shard_23351 loaded\n",
      "shard_31313 loaded\n",
      "shard_27911 loaded\n",
      "shard_9142 loaded\n",
      "shard_36719 loaded\n",
      "shard_41185 loaded\n",
      "shard_11402 loaded\n",
      "shard_15407 loaded\n",
      "shard_26234 loaded\n",
      "shard_28058 loaded\n",
      "shard_28549 loaded\n",
      "shard_13927 loaded\n",
      "shard_20674 loaded\n",
      "shard_44508 loaded\n",
      "shard_8589 loaded\n",
      "shard_42480 loaded\n",
      "shard_16011 loaded\n",
      "shard_2702 loaded\n",
      "shard_4265 loaded\n",
      "shard_15497 loaded\n",
      "shard_26052 loaded\n",
      "shard_42089 loaded\n",
      "shard_26192 loaded\n",
      "shard_6816 loaded\n",
      "shard_5482 loaded\n",
      "shard_23770 loaded\n",
      "shard_11573 loaded\n",
      "shard_4151 loaded\n",
      "shard_48236 loaded\n",
      "shard_34034 loaded\n",
      "shard_23208 loaded\n",
      "shard_29019 loaded\n",
      "shard_46405 loaded\n",
      "shard_3944 loaded\n",
      "shard_44202 loaded\n",
      "shard_48075 loaded\n",
      "shard_11368 loaded\n",
      "shard_46231 loaded\n",
      "shard_30608 loaded\n",
      "shard_30915 loaded\n",
      "shard_18540 loaded\n",
      "shard_49209 loaded\n",
      "shard_47392 loaded\n",
      "shard_37001 loaded\n",
      "shard_18431 loaded\n",
      "shard_12382 loaded\n",
      "shard_18992 loaded\n",
      "shard_44915 loaded\n",
      "shard_12157 loaded\n",
      "shard_13780 loaded\n",
      "shard_27822 loaded\n",
      "shard_47530 loaded\n",
      "shard_22868 loaded\n",
      "shard_11397 loaded\n",
      "shard_32478 loaded\n",
      "shard_24994 loaded\n",
      "shard_38123 loaded\n",
      "shard_42980 loaded\n",
      "shard_34561 loaded\n",
      "shard_40677 loaded\n",
      "shard_39187 loaded\n",
      "shard_34177 loaded\n",
      "shard_42557 loaded\n",
      "shard_46375 loaded\n",
      "shard_29379 loaded\n",
      "shard_48505 loaded\n",
      "shard_15460 loaded\n",
      "shard_41212 loaded\n",
      "shard_29893 loaded\n",
      "shard_31123 loaded\n",
      "shard_6196 loaded\n",
      "shard_13370 loaded\n",
      "shard_7973 loaded\n",
      "shard_28658 loaded\n",
      "shard_48689 loaded\n",
      "shard_30783 loaded\n",
      "shard_6942 loaded\n",
      "shard_3003 loaded\n",
      "shard_28168 loaded\n",
      "shard_44253 loaded\n",
      "shard_35830 loaded\n",
      "shard_13493 loaded\n",
      "shard_27672 loaded\n",
      "shard_34995 loaded\n",
      "shard_28639 loaded\n",
      "shard_4915 loaded\n",
      "shard_37075 loaded\n",
      "shard_39966 loaded\n",
      "shard_28302 loaded\n",
      "shard_39514 loaded\n",
      "shard_33999 loaded\n",
      "shard_48808 loaded\n",
      "shard_21350 loaded\n",
      "shard_33265 loaded\n",
      "shard_40290 loaded\n",
      "shard_13647 loaded\n",
      "shard_11966 loaded\n",
      "shard_45479 loaded\n",
      "shard_29234 loaded\n",
      "shard_19174 loaded\n",
      "shard_19365 loaded\n",
      "shard_25915 loaded\n",
      "shard_6720 loaded\n",
      "shard_19152 loaded\n",
      "shard_12515 loaded\n",
      "shard_43654 loaded\n",
      "shard_13444 loaded\n",
      "shard_49465 loaded\n",
      "shard_31095 loaded\n",
      "shard_12657 loaded\n",
      "shard_22290 loaded\n",
      "shard_15287 loaded\n",
      "shard_29238 loaded\n",
      "shard_15357 loaded\n",
      "shard_7327 loaded\n",
      "shard_610 loaded\n",
      "shard_41075 loaded\n",
      "shard_14358 loaded\n",
      "shard_27142 loaded\n",
      "shard_24453 loaded\n",
      "shard_165 loaded\n",
      "shard_48443 loaded\n",
      "shard_31204 loaded\n",
      "shard_45307 loaded\n",
      "shard_39346 loaded\n",
      "shard_15633 loaded\n",
      "shard_44553 loaded\n",
      "shard_42514 loaded\n",
      "shard_10489 loaded\n",
      "shard_5673 loaded\n",
      "shard_24267 loaded\n",
      "shard_31049 loaded\n",
      "shard_42327 loaded\n",
      "shard_48836 loaded\n",
      "shard_41830 loaded\n",
      "shard_32672 loaded\n",
      "shard_8000 loaded\n",
      "shard_23856 loaded\n",
      "shard_30402 loaded\n",
      "shard_31521 loaded\n",
      "shard_8076 loaded\n",
      "shard_19306 loaded\n",
      "shard_5427 loaded\n",
      "shard_11536 loaded\n",
      "shard_22096 loaded\n",
      "shard_36577 loaded\n",
      "shard_47289 loaded\n",
      "shard_1198 loaded\n",
      "shard_7353 loaded\n",
      "shard_2598 loaded\n",
      "shard_44717 loaded\n",
      "shard_10525 loaded\n",
      "shard_25233 loaded\n",
      "shard_32312 loaded\n",
      "shard_48207 loaded\n",
      "shard_294 loaded\n",
      "shard_11832 loaded\n",
      "shard_17002 loaded\n",
      "shard_6419 loaded\n",
      "shard_42886 loaded\n",
      "shard_24770 loaded\n",
      "shard_15226 loaded\n",
      "shard_35678 loaded\n",
      "shard_37856 loaded\n",
      "shard_49484 loaded\n",
      "shard_14023 loaded\n",
      "shard_24272 loaded\n",
      "shard_6702 loaded\n",
      "shard_19222 loaded\n",
      "shard_34366 loaded\n",
      "shard_34704 loaded\n",
      "shard_7472 loaded\n",
      "shard_41918 loaded\n",
      "shard_47482 loaded\n",
      "shard_30153 loaded\n",
      "shard_37221 loaded\n",
      "shard_3492 loaded\n",
      "shard_48670 loaded\n",
      "shard_38843 loaded\n",
      "shard_27667 loaded\n",
      "shard_12480 loaded\n",
      "shard_37660 loaded\n",
      "shard_30624 loaded\n",
      "shard_13689 loaded\n",
      "shard_24135 loaded\n",
      "shard_24427 loaded\n",
      "shard_37882 loaded\n",
      "shard_33410 loaded\n",
      "shard_10130 loaded\n",
      "shard_42254 loaded\n",
      "shard_8159 loaded\n",
      "shard_5649 loaded\n",
      "shard_33101 loaded\n",
      "shard_11988 loaded\n",
      "shard_27711 loaded\n",
      "shard_46608 loaded\n",
      "shard_23180 loaded\n",
      "shard_33243 loaded\n",
      "shard_74 loaded\n",
      "shard_47455 loaded\n",
      "shard_40732 loaded\n",
      "shard_39340 loaded\n",
      "shard_36025 loaded\n",
      "shard_19019 loaded\n",
      "shard_16475 loaded\n",
      "shard_34953 loaded\n",
      "shard_31616 loaded\n",
      "shard_12079 loaded\n",
      "shard_13523 loaded\n",
      "shard_19041 loaded\n",
      "shard_35854 loaded\n",
      "shard_5696 loaded\n",
      "shard_28360 loaded\n",
      "shard_39980 loaded\n",
      "shard_44498 loaded\n",
      "shard_38474 loaded\n",
      "shard_27927 loaded\n",
      "shard_30440 loaded\n",
      "shard_18711 loaded\n",
      "shard_38338 loaded\n",
      "shard_39196 loaded\n",
      "shard_41746 loaded\n",
      "shard_20217 loaded\n",
      "shard_22511 loaded\n",
      "shard_16727 loaded\n",
      "shard_45428 loaded\n",
      "shard_3738 loaded\n",
      "shard_32820 loaded\n",
      "shard_23711 loaded\n",
      "shard_26614 loaded\n",
      "shard_40170 loaded\n",
      "shard_22753 loaded\n",
      "shard_43342 loaded\n",
      "shard_14624 loaded\n",
      "shard_29408 loaded\n",
      "shard_39198 loaded\n",
      "shard_21209 loaded\n",
      "shard_34308 loaded\n",
      "shard_37840 loaded\n",
      "shard_17761 loaded\n",
      "shard_8031 loaded\n",
      "shard_1736 loaded\n",
      "shard_9707 loaded\n",
      "shard_37317 loaded\n",
      "shard_46880 loaded\n",
      "shard_4870 loaded\n",
      "shard_14309 loaded\n",
      "shard_5443 loaded\n",
      "shard_20763 loaded\n",
      "shard_45148 loaded\n",
      "shard_29226 loaded\n",
      "shard_27594 loaded\n",
      "shard_21297 loaded\n",
      "shard_45790 loaded\n",
      "shard_43584 loaded\n",
      "shard_16447 loaded\n",
      "shard_7361 loaded\n",
      "shard_12404 loaded\n",
      "shard_45911 loaded\n",
      "shard_187 loaded\n",
      "shard_17321 loaded\n",
      "shard_5302 loaded\n",
      "shard_43132 loaded\n",
      "shard_13957 loaded\n",
      "shard_6269 loaded\n",
      "shard_14280 loaded\n",
      "shard_42401 loaded\n",
      "shard_26406 loaded\n",
      "shard_40757 loaded\n",
      "shard_48349 loaded\n",
      "shard_23503 loaded\n",
      "shard_30296 loaded\n",
      "shard_17685 loaded\n",
      "shard_9360 loaded\n",
      "shard_23597 loaded\n",
      "shard_18798 loaded\n",
      "shard_15827 loaded\n",
      "shard_2822 loaded\n",
      "shard_36765 loaded\n",
      "shard_7388 loaded\n",
      "shard_6495 loaded\n",
      "shard_15872 loaded\n",
      "shard_7699 loaded\n",
      "shard_27714 loaded\n",
      "shard_33258 loaded\n",
      "shard_7948 loaded\n",
      "shard_38329 loaded\n",
      "shard_42848 loaded\n",
      "shard_19937 loaded\n",
      "shard_28216 loaded\n",
      "shard_27919 loaded\n",
      "shard_7443 loaded\n",
      "shard_9137 loaded\n",
      "shard_6619 loaded\n",
      "shard_40546 loaded\n",
      "shard_26331 loaded\n",
      "shard_3057 loaded\n",
      "shard_245 loaded\n",
      "shard_8602 loaded\n",
      "shard_47906 loaded\n",
      "shard_21483 loaded\n",
      "shard_28046 loaded\n",
      "shard_25855 loaded\n",
      "shard_5521 loaded\n",
      "shard_11668 loaded\n",
      "shard_26340 loaded\n",
      "shard_23964 loaded\n",
      "shard_3336 loaded\n",
      "shard_8831 loaded\n",
      "shard_48123 loaded\n",
      "shard_38348 loaded\n",
      "shard_37205 loaded\n",
      "shard_21493 loaded\n",
      "shard_46955 loaded\n",
      "shard_8020 loaded\n",
      "shard_45910 loaded\n",
      "shard_33846 loaded\n",
      "shard_26793 loaded\n",
      "shard_40703 loaded\n",
      "shard_23867 loaded\n",
      "shard_9868 loaded\n",
      "shard_18693 loaded\n",
      "shard_39382 loaded\n",
      "shard_7322 loaded\n",
      "shard_1831 loaded\n",
      "shard_15556 loaded\n",
      "shard_18661 loaded\n",
      "shard_8375 loaded\n",
      "shard_2689 loaded\n",
      "shard_45410 loaded\n",
      "shard_29548 loaded\n",
      "shard_11339 loaded\n",
      "shard_48613 loaded\n",
      "shard_23222 loaded\n",
      "shard_1495 loaded\n",
      "shard_48861 loaded\n",
      "shard_15575 loaded\n",
      "shard_8961 loaded\n",
      "shard_29916 loaded\n",
      "shard_47736 loaded\n",
      "shard_9331 loaded\n",
      "shard_36440 loaded\n",
      "shard_18728 loaded\n",
      "shard_37417 loaded\n",
      "shard_36755 loaded\n",
      "shard_26464 loaded\n",
      "shard_2159 loaded\n",
      "shard_16758 loaded\n",
      "shard_31524 loaded\n",
      "shard_26476 loaded\n",
      "shard_7487 loaded\n",
      "shard_41470 loaded\n",
      "shard_33669 loaded\n",
      "shard_17114 loaded\n",
      "shard_16072 loaded\n",
      "shard_41660 loaded\n",
      "shard_39615 loaded\n",
      "shard_47459 loaded\n",
      "shard_1489 loaded\n",
      "shard_14535 loaded\n",
      "shard_872 loaded\n",
      "shard_37860 loaded\n",
      "shard_34059 loaded\n",
      "shard_39894 loaded\n",
      "shard_39253 loaded\n",
      "shard_32731 loaded\n",
      "shard_46272 loaded\n",
      "shard_24945 loaded\n",
      "shard_32297 loaded\n",
      "shard_587 loaded\n",
      "shard_28428 loaded\n",
      "shard_33095 loaded\n",
      "shard_19923 loaded\n",
      "shard_8769 loaded\n",
      "shard_20943 loaded\n",
      "shard_17368 loaded\n",
      "shard_25028 loaded\n",
      "shard_30016 loaded\n",
      "shard_49631 loaded\n",
      "shard_1993 loaded\n",
      "shard_11581 loaded\n",
      "shard_23860 loaded\n",
      "shard_8268 loaded\n",
      "shard_47262 loaded\n",
      "shard_2992 loaded\n",
      "shard_20798 loaded\n",
      "shard_46910 loaded\n",
      "shard_32800 loaded\n",
      "shard_5494 loaded\n",
      "shard_40933 loaded\n",
      "shard_18527 loaded\n",
      "shard_5137 loaded\n",
      "shard_10376 loaded\n",
      "shard_14315 loaded\n",
      "shard_22370 loaded\n",
      "shard_15270 loaded\n",
      "shard_34883 loaded\n",
      "shard_21970 loaded\n",
      "shard_38306 loaded\n",
      "shard_40294 loaded\n",
      "shard_29535 loaded\n",
      "shard_20202 loaded\n",
      "shard_17546 loaded\n",
      "shard_8341 loaded\n",
      "shard_16017 loaded\n",
      "shard_30366 loaded\n",
      "shard_9058 loaded\n",
      "shard_7191 loaded\n",
      "shard_11408 loaded\n",
      "shard_7475 loaded\n",
      "shard_10 loaded\n",
      "shard_42361 loaded\n",
      "shard_41380 loaded\n",
      "shard_37703 loaded\n",
      "shard_34237 loaded\n",
      "shard_48486 loaded\n",
      "shard_43751 loaded\n",
      "shard_26755 loaded\n",
      "shard_32971 loaded\n",
      "shard_5011 loaded\n",
      "shard_14659 loaded\n",
      "shard_41938 loaded\n",
      "shard_4879 loaded\n",
      "shard_19775 loaded\n",
      "shard_47175 loaded\n",
      "shard_28810 loaded\n",
      "shard_7650 loaded\n",
      "shard_4925 loaded\n",
      "shard_25527 loaded\n",
      "shard_35844 loaded\n",
      "shard_43345 loaded\n",
      "shard_20338 loaded\n",
      "shard_17125 loaded\n",
      "shard_37567 loaded\n",
      "shard_19527 loaded\n",
      "shard_25254 loaded\n",
      "shard_15129 loaded\n",
      "shard_45470 loaded\n",
      "shard_351 loaded\n",
      "shard_46167 loaded\n",
      "shard_41080 loaded\n",
      "shard_42097 loaded\n",
      "shard_26492 loaded\n",
      "shard_7575 loaded\n",
      "shard_41568 loaded\n",
      "shard_47515 loaded\n",
      "shard_4 loaded\n",
      "shard_19116 loaded\n",
      "shard_16666 loaded\n",
      "shard_20523 loaded\n",
      "shard_15522 loaded\n",
      "shard_2970 loaded\n",
      "shard_31734 loaded\n",
      "shard_23198 loaded\n",
      "shard_47780 loaded\n",
      "shard_22508 loaded\n",
      "shard_30664 loaded\n",
      "shard_49919 loaded\n",
      "shard_32689 loaded\n",
      "shard_25859 loaded\n",
      "shard_6442 loaded\n",
      "shard_45434 loaded\n",
      "shard_20668 loaded\n",
      "shard_24998 loaded\n",
      "shard_11338 loaded\n",
      "shard_29452 loaded\n",
      "shard_32246 loaded\n",
      "shard_45349 loaded\n",
      "shard_40684 loaded\n",
      "shard_39611 loaded\n",
      "shard_47350 loaded\n",
      "shard_37734 loaded\n",
      "shard_40519 loaded\n",
      "shard_13230 loaded\n",
      "shard_9885 loaded\n",
      "shard_2134 loaded\n",
      "shard_43341 loaded\n",
      "shard_16902 loaded\n",
      "shard_14991 loaded\n",
      "shard_24883 loaded\n",
      "shard_44815 loaded\n",
      "shard_28580 loaded\n",
      "shard_47522 loaded\n",
      "shard_48407 loaded\n",
      "shard_11156 loaded\n",
      "shard_517 loaded\n",
      "shard_2858 loaded\n",
      "shard_23127 loaded\n",
      "shard_32510 loaded\n",
      "shard_5838 loaded\n",
      "shard_37821 loaded\n",
      "shard_28269 loaded\n",
      "shard_12047 loaded\n",
      "shard_42396 loaded\n",
      "shard_1237 loaded\n",
      "shard_20631 loaded\n",
      "shard_12370 loaded\n",
      "shard_16507 loaded\n",
      "shard_6867 loaded\n",
      "shard_16785 loaded\n",
      "shard_32701 loaded\n",
      "shard_11758 loaded\n",
      "shard_43838 loaded\n",
      "shard_32227 loaded\n",
      "shard_26499 loaded\n",
      "shard_13420 loaded\n",
      "shard_16549 loaded\n",
      "shard_269 loaded\n",
      "shard_851 loaded\n",
      "shard_23099 loaded\n",
      "shard_48118 loaded\n",
      "shard_16723 loaded\n",
      "shard_29361 loaded\n",
      "shard_11795 loaded\n",
      "shard_27041 loaded\n",
      "shard_7935 loaded\n",
      "shard_7085 loaded\n",
      "shard_47128 loaded\n",
      "shard_26822 loaded\n",
      "shard_45266 loaded\n",
      "shard_9587 loaded\n",
      "shard_6533 loaded\n",
      "shard_3106 loaded\n",
      "shard_18028 loaded\n",
      "shard_28351 loaded\n",
      "shard_39291 loaded\n",
      "shard_6388 loaded\n",
      "shard_31408 loaded\n",
      "shard_22018 loaded\n",
      "shard_48695 loaded\n",
      "shard_36016 loaded\n",
      "shard_21321 loaded\n",
      "shard_25703 loaded\n",
      "shard_6239 loaded\n",
      "shard_15978 loaded\n",
      "shard_6962 loaded\n",
      "shard_41114 loaded\n",
      "shard_36954 loaded\n",
      "shard_49889 loaded\n",
      "shard_30927 loaded\n",
      "shard_44532 loaded\n",
      "shard_31620 loaded\n",
      "shard_12287 loaded\n",
      "shard_46066 loaded\n",
      "shard_3950 loaded\n",
      "shard_32189 loaded\n",
      "shard_45370 loaded\n",
      "shard_8089 loaded\n",
      "shard_9192 loaded\n",
      "shard_8789 loaded\n",
      "shard_22257 loaded\n",
      "shard_10378 loaded\n",
      "shard_270 loaded\n",
      "shard_13340 loaded\n",
      "shard_39974 loaded\n",
      "shard_19314 loaded\n",
      "shard_42539 loaded\n",
      "shard_18566 loaded\n",
      "shard_39637 loaded\n",
      "shard_24847 loaded\n",
      "shard_15897 loaded\n",
      "shard_32698 loaded\n",
      "shard_16573 loaded\n",
      "shard_1240 loaded\n",
      "shard_14684 loaded\n",
      "shard_18144 loaded\n",
      "shard_32127 loaded\n",
      "shard_27863 loaded\n",
      "shard_48947 loaded\n",
      "shard_8778 loaded\n",
      "shard_4608 loaded\n",
      "shard_38563 loaded\n",
      "shard_35049 loaded\n",
      "shard_2295 loaded\n",
      "shard_13555 loaded\n",
      "shard_20629 loaded\n",
      "shard_12191 loaded\n",
      "shard_39309 loaded\n",
      "shard_29644 loaded\n",
      "shard_13948 loaded\n",
      "shard_20303 loaded\n",
      "shard_13490 loaded\n",
      "shard_34951 loaded\n",
      "shard_34429 loaded\n",
      "shard_18997 loaded\n",
      "shard_7774 loaded\n",
      "shard_43403 loaded\n",
      "shard_29694 loaded\n",
      "shard_46492 loaded\n",
      "shard_38674 loaded\n",
      "shard_40037 loaded\n",
      "shard_7878 loaded\n",
      "shard_48647 loaded\n",
      "shard_21999 loaded\n",
      "shard_43159 loaded\n",
      "shard_197 loaded\n",
      "shard_45016 loaded\n",
      "shard_17051 loaded\n",
      "shard_39761 loaded\n",
      "shard_15828 loaded\n",
      "shard_14042 loaded\n",
      "shard_49340 loaded\n",
      "shard_28042 loaded\n",
      "shard_41105 loaded\n",
      "shard_26532 loaded\n",
      "shard_331 loaded\n",
      "shard_1008 loaded\n",
      "shard_8342 loaded\n",
      "shard_22946 loaded\n",
      "shard_17386 loaded\n",
      "shard_30946 loaded\n",
      "shard_35185 loaded\n",
      "shard_46978 loaded\n",
      "shard_29582 loaded\n",
      "shard_504 loaded\n",
      "shard_1623 loaded\n",
      "shard_871 loaded\n",
      "shard_26994 loaded\n",
      "shard_44281 loaded\n",
      "shard_12052 loaded\n",
      "shard_24581 loaded\n",
      "shard_18231 loaded\n",
      "shard_5937 loaded\n",
      "shard_16749 loaded\n",
      "shard_37716 loaded\n",
      "shard_555 loaded\n",
      "shard_45723 loaded\n",
      "shard_10590 loaded\n",
      "shard_47689 loaded\n",
      "shard_17834 loaded\n",
      "shard_35887 loaded\n",
      "shard_7507 loaded\n",
      "shard_45741 loaded\n",
      "shard_12211 loaded\n",
      "shard_35521 loaded\n",
      "shard_3759 loaded\n",
      "shard_16427 loaded\n",
      "shard_45393 loaded\n",
      "shard_38457 loaded\n",
      "shard_22490 loaded\n",
      "shard_7308 loaded\n",
      "shard_38437 loaded\n",
      "shard_23045 loaded\n",
      "shard_25757 loaded\n",
      "shard_7175 loaded\n",
      "shard_5206 loaded\n",
      "shard_37381 loaded\n",
      "shard_16966 loaded\n",
      "shard_26782 loaded\n",
      "shard_26500 loaded\n",
      "shard_47024 loaded\n",
      "shard_42645 loaded\n",
      "shard_48471 loaded\n",
      "shard_31948 loaded\n",
      "shard_30375 loaded\n",
      "shard_25245 loaded\n",
      "shard_30711 loaded\n",
      "shard_16227 loaded\n",
      "shard_46407 loaded\n",
      "shard_7342 loaded\n",
      "shard_27992 loaded\n",
      "shard_6994 loaded\n",
      "shard_29103 loaded\n",
      "shard_48374 loaded\n",
      "shard_9595 loaded\n",
      "shard_32054 loaded\n",
      "shard_21354 loaded\n",
      "shard_36713 loaded\n",
      "shard_42477 loaded\n",
      "shard_34430 loaded\n",
      "shard_7781 loaded\n",
      "shard_1628 loaded\n",
      "shard_41206 loaded\n",
      "shard_24097 loaded\n",
      "shard_25548 loaded\n",
      "shard_1735 loaded\n",
      "shard_44501 loaded\n",
      "shard_39950 loaded\n",
      "shard_13377 loaded\n",
      "shard_27303 loaded\n",
      "shard_31015 loaded\n",
      "shard_12163 loaded\n",
      "shard_12009 loaded\n",
      "shard_25861 loaded\n",
      "shard_45501 loaded\n",
      "shard_11740 loaded\n",
      "shard_19571 loaded\n",
      "shard_15516 loaded\n",
      "shard_21325 loaded\n",
      "shard_7901 loaded\n",
      "shard_14199 loaded\n",
      "shard_15533 loaded\n",
      "shard_33126 loaded\n",
      "shard_13640 loaded\n",
      "shard_40627 loaded\n",
      "shard_16881 loaded\n",
      "shard_8026 loaded\n",
      "shard_9516 loaded\n",
      "shard_24888 loaded\n",
      "shard_7320 loaded\n",
      "shard_43753 loaded\n",
      "shard_28800 loaded\n",
      "shard_29879 loaded\n",
      "shard_47037 loaded\n",
      "shard_36752 loaded\n",
      "shard_7759 loaded\n",
      "shard_10556 loaded\n",
      "shard_21925 loaded\n",
      "shard_32105 loaded\n",
      "shard_29849 loaded\n",
      "shard_29272 loaded\n",
      "shard_5433 loaded\n",
      "shard_10002 loaded\n",
      "shard_19743 loaded\n",
      "shard_3709 loaded\n",
      "shard_46010 loaded\n",
      "shard_29725 loaded\n",
      "shard_11018 loaded\n",
      "shard_6229 loaded\n",
      "shard_14344 loaded\n",
      "shard_32709 loaded\n",
      "shard_21481 loaded\n",
      "shard_21947 loaded\n",
      "shard_18040 loaded\n",
      "shard_23376 loaded\n",
      "shard_20874 loaded\n",
      "shard_367 loaded\n",
      "shard_11269 loaded\n",
      "shard_32440 loaded\n",
      "shard_17686 loaded\n",
      "shard_44657 loaded\n",
      "shard_30169 loaded\n",
      "shard_731 loaded\n",
      "shard_23293 loaded\n",
      "shard_40310 loaded\n",
      "shard_7068 loaded\n",
      "shard_39928 loaded\n",
      "shard_45065 loaded\n",
      "shard_16588 loaded\n",
      "shard_4481 loaded\n",
      "shard_9252 loaded\n",
      "shard_35213 loaded\n",
      "shard_16170 loaded\n",
      "shard_5706 loaded\n",
      "shard_36959 loaded\n",
      "shard_36907 loaded\n",
      "shard_17704 loaded\n",
      "shard_24779 loaded\n",
      "shard_41834 loaded\n",
      "shard_36689 loaded\n",
      "shard_15070 loaded\n",
      "shard_39954 loaded\n",
      "shard_24946 loaded\n",
      "shard_18813 loaded\n",
      "shard_45970 loaded\n",
      "shard_43911 loaded\n",
      "shard_29075 loaded\n",
      "shard_35736 loaded\n",
      "shard_47199 loaded\n",
      "shard_12279 loaded\n",
      "shard_10371 loaded\n",
      "shard_27584 loaded\n",
      "shard_231 loaded\n",
      "shard_5233 loaded\n",
      "shard_22234 loaded\n",
      "shard_41048 loaded\n",
      "shard_13845 loaded\n",
      "shard_44448 loaded\n",
      "shard_1273 loaded\n",
      "shard_44625 loaded\n",
      "shard_3364 loaded\n",
      "shard_25606 loaded\n",
      "shard_19544 loaded\n",
      "shard_5294 loaded\n",
      "shard_32096 loaded\n",
      "shard_35468 loaded\n",
      "shard_18745 loaded\n",
      "shard_46254 loaded\n",
      "shard_37762 loaded\n",
      "shard_13810 loaded\n",
      "shard_27463 loaded\n",
      "shard_25119 loaded\n",
      "shard_34090 loaded\n",
      "shard_32419 loaded\n",
      "shard_38560 loaded\n",
      "shard_35783 loaded\n",
      "shard_6057 loaded\n",
      "shard_49544 loaded\n",
      "shard_40983 loaded\n",
      "shard_34063 loaded\n",
      "shard_47769 loaded\n",
      "shard_24824 loaded\n",
      "shard_47006 loaded\n",
      "shard_37755 loaded\n",
      "shard_4837 loaded\n",
      "shard_36294 loaded\n",
      "shard_13408 loaded\n",
      "shard_6433 loaded\n",
      "shard_3882 loaded\n",
      "shard_35165 loaded\n",
      "shard_40227 loaded\n",
      "shard_29505 loaded\n",
      "shard_13121 loaded\n",
      "shard_48543 loaded\n",
      "shard_32305 loaded\n",
      "shard_21131 loaded\n",
      "shard_36222 loaded\n",
      "shard_6486 loaded\n",
      "shard_34260 loaded\n",
      "shard_16662 loaded\n",
      "shard_12559 loaded\n",
      "shard_41360 loaded\n",
      "shard_48100 loaded\n",
      "shard_43920 loaded\n",
      "shard_99 loaded\n",
      "shard_15483 loaded\n",
      "shard_14690 loaded\n",
      "shard_4319 loaded\n",
      "shard_35005 loaded\n",
      "shard_15534 loaded\n",
      "shard_26199 loaded\n",
      "shard_24181 loaded\n",
      "shard_1994 loaded\n",
      "shard_30393 loaded\n",
      "shard_16954 loaded\n",
      "shard_45549 loaded\n",
      "shard_39896 loaded\n",
      "shard_18940 loaded\n",
      "shard_44296 loaded\n",
      "shard_24952 loaded\n",
      "shard_3609 loaded\n",
      "shard_24144 loaded\n",
      "shard_11579 loaded\n",
      "shard_37078 loaded\n",
      "shard_24929 loaded\n",
      "shard_30400 loaded\n",
      "shard_34643 loaded\n",
      "shard_41816 loaded\n",
      "shard_42688 loaded\n",
      "shard_43544 loaded\n",
      "shard_27014 loaded\n",
      "shard_8795 loaded\n",
      "shard_43374 loaded\n",
      "shard_5370 loaded\n",
      "shard_6172 loaded\n",
      "shard_19837 loaded\n",
      "shard_2575 loaded\n",
      "shard_22983 loaded\n",
      "shard_11005 loaded\n",
      "shard_29145 loaded\n",
      "shard_15612 loaded\n",
      "shard_16082 loaded\n",
      "shard_33615 loaded\n",
      "shard_18391 loaded\n",
      "shard_32936 loaded\n",
      "shard_48798 loaded\n",
      "shard_47417 loaded\n",
      "shard_46268 loaded\n",
      "shard_22823 loaded\n",
      "shard_14361 loaded\n",
      "shard_49116 loaded\n",
      "shard_20904 loaded\n",
      "shard_22621 loaded\n",
      "shard_35512 loaded\n",
      "shard_48029 loaded\n",
      "shard_18327 loaded\n",
      "shard_23833 loaded\n",
      "shard_31812 loaded\n",
      "shard_27839 loaded\n",
      "shard_40618 loaded\n",
      "shard_36601 loaded\n",
      "shard_38634 loaded\n",
      "shard_41117 loaded\n",
      "shard_37951 loaded\n",
      "shard_15496 loaded\n",
      "shard_3631 loaded\n",
      "shard_21565 loaded\n",
      "shard_37253 loaded\n",
      "shard_19796 loaded\n",
      "shard_875 loaded\n",
      "shard_14282 loaded\n",
      "shard_6266 loaded\n",
      "shard_31811 loaded\n",
      "shard_23965 loaded\n",
      "shard_16739 loaded\n",
      "shard_28033 loaded\n",
      "shard_23203 loaded\n",
      "shard_34108 loaded\n",
      "shard_8902 loaded\n",
      "shard_10407 loaded\n",
      "shard_34621 loaded\n",
      "shard_22432 loaded\n",
      "shard_49140 loaded\n",
      "shard_14994 loaded\n",
      "shard_22080 loaded\n",
      "shard_10492 loaded\n",
      "shard_3725 loaded\n",
      "shard_24386 loaded\n",
      "shard_31025 loaded\n",
      "shard_34257 loaded\n",
      "shard_4987 loaded\n",
      "shard_28097 loaded\n",
      "shard_27688 loaded\n",
      "shard_42068 loaded\n",
      "shard_7859 loaded\n",
      "shard_45969 loaded\n",
      "shard_44171 loaded\n",
      "shard_1790 loaded\n",
      "shard_8050 loaded\n",
      "shard_32344 loaded\n",
      "shard_44458 loaded\n",
      "shard_24567 loaded\n",
      "shard_7100 loaded\n",
      "shard_13184 loaded\n",
      "shard_43746 loaded\n",
      "shard_30377 loaded\n",
      "shard_35934 loaded\n",
      "shard_13994 loaded\n",
      "shard_27795 loaded\n",
      "shard_18436 loaded\n",
      "shard_13856 loaded\n",
      "shard_47393 loaded\n",
      "shard_45661 loaded\n",
      "shard_36545 loaded\n",
      "shard_11240 loaded\n",
      "shard_33862 loaded\n",
      "shard_1711 loaded\n",
      "shard_3971 loaded\n",
      "shard_8706 loaded\n",
      "shard_9041 loaded\n",
      "shard_6349 loaded\n",
      "shard_1811 loaded\n",
      "shard_19034 loaded\n",
      "shard_39728 loaded\n",
      "shard_16643 loaded\n",
      "shard_38722 loaded\n",
      "shard_33939 loaded\n",
      "shard_26437 loaded\n",
      "shard_41903 loaded\n",
      "shard_36020 loaded\n",
      "shard_24981 loaded\n",
      "shard_24969 loaded\n",
      "shard_38062 loaded\n",
      "shard_34335 loaded\n",
      "shard_36646 loaded\n",
      "shard_45522 loaded\n",
      "shard_48817 loaded\n",
      "shard_16200 loaded\n",
      "shard_6334 loaded\n",
      "shard_33398 loaded\n",
      "shard_11345 loaded\n",
      "shard_37977 loaded\n",
      "shard_39506 loaded\n",
      "shard_13221 loaded\n",
      "shard_28198 loaded\n",
      "shard_34568 loaded\n",
      "shard_41988 loaded\n",
      "shard_40699 loaded\n",
      "shard_35228 loaded\n",
      "shard_33839 loaded\n",
      "shard_28878 loaded\n",
      "shard_24460 loaded\n",
      "shard_27557 loaded\n",
      "shard_32022 loaded\n",
      "shard_37450 loaded\n",
      "shard_5162 loaded\n",
      "shard_11501 loaded\n",
      "shard_27823 loaded\n",
      "shard_45751 loaded\n",
      "shard_33122 loaded\n",
      "shard_27126 loaded\n",
      "shard_34905 loaded\n",
      "shard_7006 loaded\n",
      "shard_7406 loaded\n",
      "shard_25841 loaded\n",
      "shard_15177 loaded\n",
      "shard_2866 loaded\n",
      "shard_42553 loaded\n",
      "shard_6396 loaded\n",
      "shard_11274 loaded\n",
      "shard_601 loaded\n",
      "shard_24538 loaded\n",
      "shard_25260 loaded\n",
      "shard_20916 loaded\n",
      "shard_14753 loaded\n",
      "shard_45205 loaded\n",
      "shard_24543 loaded\n",
      "shard_48646 loaded\n",
      "shard_5575 loaded\n",
      "shard_6957 loaded\n",
      "shard_940 loaded\n",
      "shard_17028 loaded\n",
      "shard_26674 loaded\n",
      "shard_10788 loaded\n",
      "shard_18224 loaded\n",
      "shard_2303 loaded\n",
      "shard_11139 loaded\n",
      "shard_28873 loaded\n",
      "shard_32321 loaded\n",
      "shard_47362 loaded\n",
      "shard_45435 loaded\n",
      "shard_15510 loaded\n",
      "shard_14888 loaded\n",
      "shard_46490 loaded\n",
      "shard_45118 loaded\n",
      "shard_3218 loaded\n",
      "shard_23123 loaded\n",
      "shard_28673 loaded\n",
      "shard_36085 loaded\n",
      "shard_8158 loaded\n",
      "shard_1692 loaded\n",
      "shard_17040 loaded\n",
      "shard_13459 loaded\n",
      "shard_530 loaded\n",
      "shard_17463 loaded\n",
      "shard_22876 loaded\n",
      "shard_20410 loaded\n",
      "shard_20118 loaded\n",
      "shard_37490 loaded\n",
      "shard_6838 loaded\n",
      "shard_29142 loaded\n",
      "shard_45606 loaded\n",
      "shard_5756 loaded\n",
      "shard_14459 loaded\n",
      "shard_15221 loaded\n",
      "shard_22510 loaded\n",
      "shard_7433 loaded\n",
      "shard_15340 loaded\n",
      "shard_46704 loaded\n",
      "shard_4405 loaded\n",
      "shard_49535 loaded\n",
      "shard_1034 loaded\n",
      "shard_628 loaded\n",
      "shard_27574 loaded\n",
      "shard_26797 loaded\n",
      "shard_39165 loaded\n",
      "shard_10609 loaded\n",
      "shard_12320 loaded\n",
      "shard_3688 loaded\n",
      "shard_33769 loaded\n",
      "shard_9744 loaded\n",
      "shard_12490 loaded\n",
      "shard_13135 loaded\n",
      "shard_45602 loaded\n",
      "shard_24942 loaded\n",
      "shard_40074 loaded\n",
      "shard_30056 loaded\n",
      "shard_31189 loaded\n",
      "shard_9005 loaded\n",
      "shard_2259 loaded\n",
      "shard_45856 loaded\n",
      "shard_9683 loaded\n",
      "shard_5640 loaded\n",
      "shard_3576 loaded\n",
      "shard_40832 loaded\n",
      "shard_28543 loaded\n",
      "shard_37943 loaded\n",
      "shard_22687 loaded\n",
      "shard_43430 loaded\n",
      "shard_18615 loaded\n",
      "shard_44779 loaded\n",
      "shard_4815 loaded\n",
      "shard_12796 loaded\n",
      "shard_40643 loaded\n",
      "shard_5793 loaded\n",
      "shard_43060 loaded\n",
      "shard_4636 loaded\n",
      "shard_11991 loaded\n",
      "shard_49711 loaded\n",
      "shard_26520 loaded\n",
      "shard_48799 loaded\n",
      "shard_47195 loaded\n",
      "shard_38071 loaded\n",
      "shard_15739 loaded\n",
      "shard_36490 loaded\n",
      "shard_16215 loaded\n",
      "shard_19395 loaded\n",
      "shard_7518 loaded\n",
      "shard_31347 loaded\n",
      "shard_5863 loaded\n",
      "shard_48445 loaded\n",
      "shard_31851 loaded\n",
      "shard_34524 loaded\n",
      "shard_48964 loaded\n",
      "shard_38047 loaded\n",
      "shard_42931 loaded\n",
      "shard_34314 loaded\n",
      "shard_47748 loaded\n",
      "shard_39675 loaded\n",
      "shard_3812 loaded\n",
      "shard_3251 loaded\n",
      "shard_29726 loaded\n",
      "shard_4668 loaded\n",
      "shard_46956 loaded\n",
      "shard_18065 loaded\n",
      "shard_43290 loaded\n",
      "shard_42927 loaded\n",
      "shard_9207 loaded\n",
      "shard_18367 loaded\n",
      "shard_6821 loaded\n",
      "shard_6689 loaded\n",
      "shard_28770 loaded\n",
      "shard_5616 loaded\n",
      "shard_7275 loaded\n",
      "shard_933 loaded\n",
      "shard_34360 loaded\n",
      "shard_11727 loaded\n",
      "shard_14249 loaded\n",
      "shard_46830 loaded\n",
      "shard_30914 loaded\n",
      "shard_25960 loaded\n",
      "shard_25312 loaded\n",
      "shard_21561 loaded\n",
      "shard_17344 loaded\n",
      "shard_14213 loaded\n",
      "shard_13989 loaded\n",
      "shard_3419 loaded\n",
      "shard_23901 loaded\n",
      "shard_4942 loaded\n",
      "shard_33887 loaded\n",
      "shard_34510 loaded\n",
      "shard_11969 loaded\n",
      "shard_35590 loaded\n",
      "shard_46378 loaded\n",
      "shard_25712 loaded\n",
      "shard_44589 loaded\n",
      "shard_8041 loaded\n",
      "shard_36241 loaded\n",
      "shard_23631 loaded\n",
      "shard_45120 loaded\n",
      "shard_15320 loaded\n",
      "shard_9893 loaded\n",
      "shard_32043 loaded\n",
      "shard_41356 loaded\n",
      "shard_48513 loaded\n",
      "shard_15167 loaded\n",
      "shard_6799 loaded\n",
      "shard_29606 loaded\n",
      "shard_34045 loaded\n",
      "shard_39070 loaded\n",
      "shard_45160 loaded\n",
      "shard_33280 loaded\n",
      "shard_10471 loaded\n",
      "shard_2659 loaded\n",
      "shard_2300 loaded\n",
      "shard_48620 loaded\n",
      "shard_24226 loaded\n",
      "shard_22557 loaded\n",
      "shard_24705 loaded\n",
      "shard_46443 loaded\n",
      "shard_23822 loaded\n",
      "shard_7980 loaded\n",
      "shard_39326 loaded\n",
      "shard_10960 loaded\n",
      "shard_36548 loaded\n",
      "shard_39336 loaded\n",
      "shard_43673 loaded\n",
      "shard_24129 loaded\n",
      "shard_14716 loaded\n",
      "shard_29773 loaded\n",
      "shard_14300 loaded\n",
      "shard_44069 loaded\n",
      "shard_16864 loaded\n",
      "shard_18212 loaded\n",
      "shard_24045 loaded\n",
      "shard_49898 loaded\n",
      "shard_42700 loaded\n",
      "shard_4601 loaded\n",
      "shard_49694 loaded\n",
      "shard_21246 loaded\n",
      "shard_5514 loaded\n",
      "shard_49184 loaded\n",
      "shard_11679 loaded\n",
      "shard_5548 loaded\n",
      "shard_39623 loaded\n",
      "shard_46415 loaded\n",
      "shard_15576 loaded\n",
      "shard_17149 loaded\n",
      "shard_42469 loaded\n",
      "shard_38686 loaded\n",
      "shard_38969 loaded\n",
      "shard_16690 loaded\n",
      "shard_41603 loaded\n",
      "shard_49243 loaded\n",
      "shard_47836 loaded\n",
      "shard_33302 loaded\n",
      "shard_44466 loaded\n",
      "shard_31122 loaded\n",
      "shard_12665 loaded\n",
      "shard_2968 loaded\n",
      "shard_22970 loaded\n",
      "shard_36618 loaded\n",
      "shard_29737 loaded\n",
      "shard_49618 loaded\n",
      "shard_41849 loaded\n",
      "shard_21585 loaded\n",
      "shard_38128 loaded\n",
      "shard_41112 loaded\n",
      "shard_24775 loaded\n",
      "shard_38661 loaded\n",
      "shard_19794 loaded\n",
      "shard_20514 loaded\n",
      "shard_17555 loaded\n",
      "shard_21597 loaded\n",
      "shard_8169 loaded\n",
      "shard_26280 loaded\n",
      "shard_21660 loaded\n",
      "shard_31924 loaded\n",
      "shard_28426 loaded\n",
      "shard_22507 loaded\n",
      "shard_7999 loaded\n",
      "shard_18852 loaded\n",
      "shard_47846 loaded\n",
      "shard_43803 loaded\n",
      "shard_12569 loaded\n",
      "shard_47872 loaded\n",
      "shard_12055 loaded\n",
      "shard_45121 loaded\n",
      "shard_22220 loaded\n",
      "shard_23543 loaded\n",
      "shard_47805 loaded\n",
      "shard_39829 loaded\n",
      "shard_43216 loaded\n",
      "shard_39079 loaded\n",
      "shard_16770 loaded\n",
      "shard_39412 loaded\n",
      "shard_31880 loaded\n",
      "shard_16659 loaded\n",
      "shard_10689 loaded\n",
      "shard_34535 loaded\n",
      "shard_3376 loaded\n",
      "shard_13035 loaded\n",
      "shard_5534 loaded\n",
      "shard_41880 loaded\n",
      "shard_14795 loaded\n",
      "shard_20093 loaded\n",
      "shard_20526 loaded\n",
      "shard_12991 loaded\n",
      "shard_26737 loaded\n",
      "shard_11519 loaded\n",
      "shard_34825 loaded\n",
      "shard_41652 loaded\n",
      "shard_5510 loaded\n",
      "shard_47023 loaded\n",
      "shard_19428 loaded\n",
      "shard_24395 loaded\n",
      "shard_13963 loaded\n",
      "shard_33412 loaded\n",
      "shard_9736 loaded\n",
      "shard_19526 loaded\n",
      "shard_21787 loaded\n",
      "shard_14122 loaded\n",
      "shard_12956 loaded\n",
      "shard_28258 loaded\n",
      "shard_17799 loaded\n",
      "shard_19870 loaded\n",
      "shard_16919 loaded\n",
      "shard_27891 loaded\n",
      "shard_41661 loaded\n",
      "shard_28647 loaded\n",
      "shard_10693 loaded\n",
      "shard_2581 loaded\n",
      "shard_12538 loaded\n",
      "shard_12599 loaded\n",
      "shard_2665 loaded\n",
      "shard_49163 loaded\n",
      "shard_47553 loaded\n",
      "shard_31837 loaded\n",
      "shard_49134 loaded\n",
      "shard_22481 loaded\n",
      "shard_33802 loaded\n",
      "shard_12995 loaded\n",
      "shard_46717 loaded\n",
      "shard_35428 loaded\n",
      "shard_8628 loaded\n",
      "shard_34039 loaded\n",
      "shard_38281 loaded\n",
      "shard_7612 loaded\n",
      "shard_20709 loaded\n",
      "shard_42491 loaded\n",
      "shard_20473 loaded\n",
      "shard_33213 loaded\n",
      "shard_369 loaded\n",
      "shard_48458 loaded\n",
      "shard_8665 loaded\n",
      "shard_6037 loaded\n",
      "shard_18326 loaded\n",
      "shard_8377 loaded\n",
      "shard_2685 loaded\n",
      "shard_19302 loaded\n",
      "shard_5770 loaded\n",
      "shard_112 loaded\n",
      "shard_12570 loaded\n",
      "shard_5064 loaded\n",
      "shard_28832 loaded\n",
      "shard_30091 loaded\n",
      "shard_29880 loaded\n",
      "shard_5050 loaded\n",
      "shard_4520 loaded\n",
      "shard_35811 loaded\n",
      "shard_33664 loaded\n",
      "shard_23790 loaded\n",
      "shard_38595 loaded\n",
      "shard_15543 loaded\n",
      "shard_13923 loaded\n",
      "shard_27443 loaded\n",
      "shard_27943 loaded\n",
      "shard_7544 loaded\n",
      "shard_30009 loaded\n",
      "shard_26519 loaded\n",
      "shard_38465 loaded\n",
      "shard_41727 loaded\n",
      "shard_49389 loaded\n",
      "shard_35403 loaded\n",
      "shard_2987 loaded\n",
      "shard_46553 loaded\n",
      "shard_20585 loaded\n",
      "shard_7309 loaded\n",
      "shard_4306 loaded\n",
      "shard_22420 loaded\n",
      "shard_22880 loaded\n",
      "shard_36455 loaded\n",
      "shard_44945 loaded\n",
      "shard_47091 loaded\n",
      "shard_37813 loaded\n",
      "shard_17105 loaded\n",
      "shard_45618 loaded\n",
      "shard_48130 loaded\n",
      "shard_30365 loaded\n",
      "shard_21334 loaded\n",
      "shard_27524 loaded\n",
      "shard_33957 loaded\n",
      "shard_17188 loaded\n",
      "shard_35812 loaded\n",
      "shard_44906 loaded\n",
      "shard_30162 loaded\n",
      "shard_22095 loaded\n",
      "shard_25688 loaded\n",
      "shard_44710 loaded\n",
      "shard_12958 loaded\n",
      "shard_37268 loaded\n",
      "shard_10776 loaded\n",
      "shard_35535 loaded\n",
      "shard_8418 loaded\n",
      "shard_19254 loaded\n",
      "shard_12307 loaded\n",
      "shard_12193 loaded\n",
      "shard_6439 loaded\n",
      "shard_38803 loaded\n",
      "shard_45527 loaded\n",
      "shard_37578 loaded\n",
      "shard_13058 loaded\n",
      "shard_27457 loaded\n",
      "shard_28416 loaded\n",
      "shard_30336 loaded\n",
      "shard_7168 loaded\n",
      "shard_47421 loaded\n",
      "shard_26088 loaded\n",
      "shard_49528 loaded\n",
      "shard_36226 loaded\n",
      "shard_30090 loaded\n",
      "shard_42300 loaded\n",
      "shard_36824 loaded\n",
      "shard_5358 loaded\n",
      "shard_33828 loaded\n",
      "shard_27178 loaded\n",
      "shard_9342 loaded\n",
      "shard_9544 loaded\n",
      "shard_16778 loaded\n",
      "shard_41240 loaded\n",
      "shard_9798 loaded\n",
      "shard_15601 loaded\n",
      "shard_38314 loaded\n",
      "shard_21757 loaded\n",
      "shard_47588 loaded\n",
      "shard_883 loaded\n",
      "shard_39925 loaded\n",
      "shard_46974 loaded\n",
      "shard_36352 loaded\n",
      "shard_17267 loaded\n",
      "shard_3130 loaded\n",
      "shard_6154 loaded\n",
      "shard_19756 loaded\n",
      "shard_21956 loaded\n",
      "shard_11652 loaded\n",
      "shard_5246 loaded\n",
      "shard_5817 loaded\n",
      "shard_49657 loaded\n",
      "shard_16595 loaded\n",
      "shard_45593 loaded\n",
      "shard_41165 loaded\n",
      "shard_16565 loaded\n",
      "shard_8419 loaded\n",
      "shard_7818 loaded\n",
      "shard_279 loaded\n",
      "shard_44830 loaded\n",
      "shard_28518 loaded\n",
      "shard_38746 loaded\n",
      "shard_39484 loaded\n",
      "shard_23621 loaded\n",
      "shard_24464 loaded\n",
      "shard_35369 loaded\n",
      "shard_23205 loaded\n",
      "shard_43410 loaded\n",
      "shard_47185 loaded\n",
      "shard_24545 loaded\n",
      "shard_39683 loaded\n",
      "shard_16555 loaded\n",
      "shard_25775 loaded\n",
      "shard_44461 loaded\n",
      "shard_49248 loaded\n",
      "shard_19811 loaded\n",
      "shard_5090 loaded\n",
      "shard_41687 loaded\n",
      "shard_9438 loaded\n",
      "shard_13328 loaded\n",
      "shard_34345 loaded\n",
      "shard_17301 loaded\n",
      "shard_8732 loaded\n",
      "shard_13301 loaded\n",
      "shard_32491 loaded\n",
      "shard_39711 loaded\n",
      "shard_44354 loaded\n",
      "shard_32481 loaded\n",
      "shard_20528 loaded\n",
      "shard_4345 loaded\n",
      "shard_23070 loaded\n",
      "shard_22885 loaded\n",
      "shard_44397 loaded\n",
      "shard_30870 loaded\n",
      "shard_14979 loaded\n",
      "shard_43629 loaded\n",
      "shard_46239 loaded\n",
      "shard_35801 loaded\n",
      "shard_28372 loaded\n",
      "shard_42283 loaded\n",
      "shard_29423 loaded\n",
      "shard_2325 loaded\n",
      "shard_12146 loaded\n",
      "shard_35384 loaded\n",
      "shard_35840 loaded\n",
      "shard_31179 loaded\n",
      "shard_37553 loaded\n",
      "shard_40159 loaded\n",
      "shard_47448 loaded\n",
      "shard_40574 loaded\n",
      "shard_39603 loaded\n",
      "shard_31653 loaded\n",
      "shard_10727 loaded\n",
      "shard_33565 loaded\n",
      "shard_31433 loaded\n",
      "shard_48135 loaded\n",
      "shard_19364 loaded\n",
      "shard_30223 loaded\n",
      "shard_11671 loaded\n",
      "shard_33799 loaded\n",
      "shard_21860 loaded\n",
      "shard_8901 loaded\n",
      "shard_6102 loaded\n",
      "shard_6825 loaded\n",
      "shard_38944 loaded\n",
      "shard_16178 loaded\n",
      "shard_12919 loaded\n",
      "shard_8 loaded\n",
      "shard_40707 loaded\n",
      "shard_18052 loaded\n",
      "shard_20887 loaded\n",
      "shard_10531 loaded\n",
      "shard_42708 loaded\n",
      "shard_25445 loaded\n",
      "shard_38258 loaded\n",
      "shard_39952 loaded\n",
      "shard_3670 loaded\n",
      "shard_44556 loaded\n",
      "shard_47097 loaded\n",
      "shard_27508 loaded\n",
      "shard_7379 loaded\n",
      "shard_31150 loaded\n",
      "shard_48438 loaded\n",
      "shard_48700 loaded\n",
      "shard_13482 loaded\n",
      "shard_1447 loaded\n",
      "shard_7444 loaded\n",
      "shard_19989 loaded\n",
      "shard_11410 loaded\n",
      "shard_48755 loaded\n",
      "shard_7348 loaded\n",
      "shard_5689 loaded\n",
      "shard_19162 loaded\n",
      "shard_24778 loaded\n",
      "shard_15149 loaded\n",
      "shard_41035 loaded\n",
      "shard_37978 loaded\n",
      "shard_7757 loaded\n",
      "shard_46675 loaded\n",
      "shard_3629 loaded\n",
      "shard_12390 loaded\n",
      "shard_9794 loaded\n",
      "shard_40376 loaded\n",
      "shard_39429 loaded\n",
      "shard_40937 loaded\n",
      "shard_27918 loaded\n",
      "shard_2710 loaded\n",
      "shard_24650 loaded\n",
      "shard_31719 loaded\n",
      "shard_13876 loaded\n",
      "shard_17856 loaded\n",
      "shard_37501 loaded\n",
      "shard_32703 loaded\n",
      "shard_25733 loaded\n",
      "shard_30517 loaded\n",
      "shard_44590 loaded\n",
      "shard_15942 loaded\n",
      "shard_4710 loaded\n",
      "shard_5701 loaded\n",
      "shard_48191 loaded\n",
      "shard_43537 loaded\n",
      "shard_17020 loaded\n",
      "shard_30822 loaded\n",
      "shard_34620 loaded\n",
      "shard_1793 loaded\n",
      "shard_31174 loaded\n",
      "shard_15159 loaded\n",
      "shard_10085 loaded\n",
      "shard_1796 loaded\n",
      "shard_39515 loaded\n",
      "shard_19880 loaded\n",
      "shard_33560 loaded\n",
      "shard_43160 loaded\n",
      "shard_37458 loaded\n",
      "shard_37110 loaded\n",
      "shard_21798 loaded\n",
      "shard_35919 loaded\n",
      "shard_30827 loaded\n",
      "shard_28595 loaded\n",
      "shard_33947 loaded\n",
      "shard_39895 loaded\n",
      "shard_8550 loaded\n",
      "shard_40655 loaded\n",
      "shard_6626 loaded\n",
      "shard_16488 loaded\n",
      "shard_48173 loaded\n",
      "shard_31233 loaded\n",
      "shard_48718 loaded\n",
      "shard_39865 loaded\n",
      "shard_23054 loaded\n",
      "shard_2278 loaded\n",
      "shard_18380 loaded\n",
      "shard_32976 loaded\n",
      "shard_40187 loaded\n",
      "shard_45313 loaded\n",
      "shard_46858 loaded\n",
      "shard_7735 loaded\n",
      "shard_15184 loaded\n",
      "shard_18206 loaded\n",
      "shard_6593 loaded\n",
      "shard_29140 loaded\n",
      "shard_26255 loaded\n",
      "shard_3041 loaded\n",
      "shard_37261 loaded\n",
      "shard_26138 loaded\n",
      "shard_33698 loaded\n",
      "shard_31126 loaded\n",
      "shard_47046 loaded\n",
      "shard_44145 loaded\n",
      "shard_18018 loaded\n",
      "shard_44163 loaded\n",
      "shard_4038 loaded\n",
      "shard_5558 loaded\n",
      "shard_1292 loaded\n",
      "shard_15120 loaded\n",
      "shard_14365 loaded\n",
      "shard_18843 loaded\n",
      "shard_48688 loaded\n",
      "shard_46728 loaded\n",
      "shard_41506 loaded\n",
      "shard_46068 loaded\n",
      "shard_25611 loaded\n",
      "shard_30347 loaded\n",
      "shard_8106 loaded\n",
      "shard_47293 loaded\n",
      "shard_44880 loaded\n",
      "shard_38765 loaded\n",
      "shard_26241 loaded\n",
      "shard_39959 loaded\n",
      "shard_49426 loaded\n",
      "shard_45498 loaded\n",
      "shard_12453 loaded\n",
      "shard_19185 loaded\n",
      "shard_31927 loaded\n",
      "shard_26286 loaded\n",
      "shard_35063 loaded\n",
      "shard_31336 loaded\n",
      "shard_46511 loaded\n",
      "shard_11775 loaded\n",
      "shard_26597 loaded\n",
      "shard_26538 loaded\n",
      "shard_41250 loaded\n",
      "shard_5692 loaded\n",
      "shard_31306 loaded\n",
      "shard_29281 loaded\n",
      "shard_6420 loaded\n",
      "shard_48732 loaded\n",
      "shard_3285 loaded\n",
      "shard_34588 loaded\n",
      "shard_35607 loaded\n",
      "shard_44619 loaded\n",
      "shard_32986 loaded\n",
      "shard_30325 loaded\n",
      "shard_45098 loaded\n",
      "shard_42636 loaded\n",
      "shard_31820 loaded\n",
      "shard_40199 loaded\n",
      "shard_29116 loaded\n",
      "shard_26939 loaded\n",
      "shard_898 loaded\n",
      "shard_42541 loaded\n",
      "shard_49849 loaded\n",
      "shard_7027 loaded\n",
      "shard_40862 loaded\n",
      "shard_42716 loaded\n",
      "shard_18333 loaded\n",
      "shard_14889 loaded\n",
      "shard_6263 loaded\n",
      "shard_45628 loaded\n",
      "shard_45204 loaded\n",
      "shard_38532 loaded\n",
      "shard_31478 loaded\n",
      "shard_17823 loaded\n",
      "shard_20348 loaded\n",
      "shard_18314 loaded\n",
      "shard_39879 loaded\n",
      "shard_23290 loaded\n",
      "shard_14860 loaded\n",
      "shard_39907 loaded\n",
      "shard_12292 loaded\n",
      "shard_27817 loaded\n",
      "shard_18191 loaded\n",
      "shard_47711 loaded\n",
      "shard_44843 loaded\n",
      "shard_44149 loaded\n",
      "shard_3917 loaded\n",
      "shard_3424 loaded\n",
      "shard_30767 loaded\n",
      "shard_19056 loaded\n",
      "shard_45077 loaded\n",
      "shard_17275 loaded\n",
      "shard_41733 loaded\n",
      "shard_31917 loaded\n",
      "shard_15959 loaded\n",
      "shard_49619 loaded\n",
      "shard_9870 loaded\n",
      "shard_21050 loaded\n",
      "shard_14263 loaded\n",
      "shard_35121 loaded\n",
      "shard_39063 loaded\n",
      "shard_25433 loaded\n",
      "shard_2381 loaded\n",
      "shard_10040 loaded\n",
      "shard_28156 loaded\n",
      "shard_15378 loaded\n",
      "shard_39749 loaded\n",
      "shard_7166 loaded\n",
      "shard_16706 loaded\n",
      "shard_37328 loaded\n",
      "shard_20601 loaded\n",
      "shard_42520 loaded\n",
      "shard_1473 loaded\n",
      "shard_37408 loaded\n",
      "shard_6778 loaded\n",
      "shard_44564 loaded\n",
      "shard_27494 loaded\n",
      "shard_35392 loaded\n",
      "shard_39556 loaded\n",
      "shard_9425 loaded\n",
      "shard_3289 loaded\n",
      "shard_25104 loaded\n",
      "shard_34663 loaded\n",
      "shard_513 loaded\n",
      "shard_12706 loaded\n",
      "shard_36362 loaded\n",
      "shard_6882 loaded\n",
      "shard_41863 loaded\n",
      "shard_32463 loaded\n",
      "shard_21786 loaded\n",
      "shard_29810 loaded\n",
      "shard_28514 loaded\n",
      "shard_45913 loaded\n",
      "shard_8671 loaded\n",
      "shard_39578 loaded\n",
      "shard_46841 loaded\n",
      "shard_20833 loaded\n",
      "shard_28314 loaded\n",
      "shard_2014 loaded\n",
      "shard_6872 loaded\n",
      "shard_36118 loaded\n",
      "shard_19073 loaded\n",
      "shard_36068 loaded\n",
      "shard_4661 loaded\n",
      "shard_3141 loaded\n",
      "shard_16998 loaded\n",
      "shard_45488 loaded\n",
      "shard_21563 loaded\n",
      "shard_35238 loaded\n",
      "shard_42125 loaded\n",
      "shard_28241 loaded\n",
      "shard_22305 loaded\n",
      "shard_45553 loaded\n",
      "shard_30729 loaded\n",
      "shard_21333 loaded\n",
      "shard_49885 loaded\n",
      "shard_31240 loaded\n",
      "shard_32115 loaded\n",
      "shard_24168 loaded\n",
      "shard_45650 loaded\n",
      "shard_17475 loaded\n",
      "shard_2760 loaded\n",
      "shard_14973 loaded\n",
      "shard_36433 loaded\n",
      "shard_33294 loaded\n",
      "shard_23745 loaded\n",
      "shard_38297 loaded\n",
      "shard_36886 loaded\n",
      "shard_3530 loaded\n",
      "shard_16189 loaded\n",
      "shard_30127 loaded\n",
      "shard_22343 loaded\n",
      "shard_20664 loaded\n",
      "shard_36104 loaded\n",
      "shard_14873 loaded\n",
      "shard_6540 loaded\n",
      "shard_14656 loaded\n",
      "shard_2446 loaded\n",
      "shard_6347 loaded\n",
      "shard_13964 loaded\n",
      "shard_41397 loaded\n",
      "shard_27600 loaded\n",
      "shard_32892 loaded\n",
      "shard_19549 loaded\n",
      "shard_41548 loaded\n",
      "shard_1995 loaded\n",
      "shard_28597 loaded\n",
      "shard_11464 loaded\n",
      "shard_25806 loaded\n",
      "shard_42026 loaded\n",
      "shard_45596 loaded\n",
      "shard_33621 loaded\n",
      "shard_43031 loaded\n",
      "shard_10156 loaded\n",
      "shard_11752 loaded\n",
      "shard_49884 loaded\n",
      "shard_18933 loaded\n",
      "shard_9353 loaded\n",
      "shard_46862 loaded\n",
      "shard_3667 loaded\n",
      "shard_10248 loaded\n",
      "shard_26118 loaded\n",
      "shard_25585 loaded\n",
      "shard_29521 loaded\n",
      "shard_5968 loaded\n",
      "shard_23364 loaded\n",
      "shard_396 loaded\n",
      "shard_9476 loaded\n",
      "shard_33053 loaded\n",
      "shard_30607 loaded\n",
      "shard_21576 loaded\n",
      "shard_45178 loaded\n",
      "shard_26829 loaded\n",
      "shard_8511 loaded\n",
      "shard_44087 loaded\n",
      "shard_15929 loaded\n",
      "shard_34808 loaded\n",
      "shard_49731 loaded\n",
      "shard_41388 loaded\n",
      "shard_42599 loaded\n",
      "shard_37332 loaded\n",
      "shard_40251 loaded\n",
      "shard_15442 loaded\n",
      "shard_9627 loaded\n",
      "shard_36805 loaded\n",
      "shard_45459 loaded\n",
      "shard_7442 loaded\n",
      "shard_6214 loaded\n",
      "shard_47336 loaded\n",
      "shard_45101 loaded\n",
      "shard_44349 loaded\n",
      "shard_49131 loaded\n",
      "shard_44771 loaded\n",
      "shard_12501 loaded\n",
      "shard_30698 loaded\n",
      "shard_33163 loaded\n",
      "shard_31873 loaded\n",
      "shard_13485 loaded\n",
      "shard_16252 loaded\n",
      "shard_24624 loaded\n",
      "shard_22772 loaded\n",
      "shard_13660 loaded\n",
      "shard_19983 loaded\n",
      "shard_17085 loaded\n",
      "shard_19243 loaded\n",
      "shard_17135 loaded\n",
      "shard_34954 loaded\n",
      "shard_45954 loaded\n",
      "shard_42059 loaded\n",
      "shard_37952 loaded\n",
      "shard_47474 loaded\n",
      "shard_42248 loaded\n",
      "shard_39404 loaded\n",
      "shard_48246 loaded\n",
      "shard_33898 loaded\n",
      "shard_11907 loaded\n",
      "shard_47909 loaded\n",
      "shard_12142 loaded\n",
      "shard_45474 loaded\n",
      "shard_48059 loaded\n",
      "shard_1011 loaded\n",
      "shard_14486 loaded\n",
      "shard_44227 loaded\n",
      "shard_47518 loaded\n",
      "shard_10244 loaded\n",
      "shard_44582 loaded\n",
      "shard_47416 loaded\n",
      "shard_17004 loaded\n",
      "shard_49471 loaded\n",
      "shard_32284 loaded\n",
      "shard_35365 loaded\n",
      "shard_27210 loaded\n",
      "shard_620 loaded\n",
      "shard_35325 loaded\n",
      "shard_12046 loaded\n",
      "shard_4604 loaded\n",
      "shard_34157 loaded\n",
      "shard_43043 loaded\n",
      "shard_20187 loaded\n",
      "shard_8895 loaded\n",
      "shard_20491 loaded\n",
      "shard_16816 loaded\n",
      "shard_43367 loaded\n",
      "shard_36041 loaded\n",
      "shard_40974 loaded\n",
      "shard_47041 loaded\n",
      "shard_21454 loaded\n",
      "shard_22049 loaded\n",
      "shard_36211 loaded\n",
      "shard_42047 loaded\n",
      "shard_41448 loaded\n",
      "shard_15915 loaded\n",
      "shard_17659 loaded\n",
      "shard_26444 loaded\n",
      "shard_12364 loaded\n",
      "shard_13257 loaded\n",
      "shard_46070 loaded\n",
      "shard_3327 loaded\n",
      "shard_31663 loaded\n",
      "shard_4008 loaded\n",
      "shard_172 loaded\n",
      "shard_1190 loaded\n",
      "shard_31716 loaded\n",
      "shard_5073 loaded\n",
      "shard_3500 loaded\n",
      "shard_34784 loaded\n",
      "shard_17045 loaded\n",
      "shard_39413 loaded\n",
      "shard_9024 loaded\n",
      "shard_9282 loaded\n",
      "shard_12164 loaded\n",
      "shard_46859 loaded\n",
      "shard_12611 loaded\n",
      "shard_14533 loaded\n",
      "shard_43861 loaded\n",
      "shard_759 loaded\n",
      "shard_43103 loaded\n",
      "shard_24170 loaded\n",
      "shard_16946 loaded\n",
      "shard_47231 loaded\n",
      "shard_7398 loaded\n",
      "shard_37885 loaded\n",
      "shard_22606 loaded\n",
      "shard_35745 loaded\n",
      "shard_42878 loaded\n",
      "shard_46531 loaded\n",
      "shard_6961 loaded\n",
      "shard_13563 loaded\n",
      "shard_41673 loaded\n",
      "shard_39642 loaded\n",
      "shard_40507 loaded\n",
      "shard_27647 loaded\n",
      "shard_43424 loaded\n",
      "shard_29628 loaded\n",
      "shard_43706 loaded\n",
      "shard_41224 loaded\n",
      "shard_30883 loaded\n",
      "shard_15815 loaded\n",
      "shard_13018 loaded\n",
      "shard_36877 loaded\n",
      "shard_35696 loaded\n",
      "shard_32850 loaded\n",
      "shard_198 loaded\n",
      "shard_2793 loaded\n",
      "shard_46041 loaded\n",
      "shard_42157 loaded\n",
      "shard_33313 loaded\n",
      "shard_29374 loaded\n",
      "shard_27824 loaded\n",
      "shard_22123 loaded\n",
      "shard_28401 loaded\n",
      "shard_17571 loaded\n",
      "shard_10922 loaded\n",
      "shard_36551 loaded\n",
      "shard_3320 loaded\n",
      "shard_32323 loaded\n",
      "shard_3715 loaded\n",
      "shard_45073 loaded\n",
      "shard_48595 loaded\n",
      "shard_36829 loaded\n",
      "shard_41361 loaded\n",
      "shard_38427 loaded\n",
      "shard_35517 loaded\n",
      "shard_8428 loaded\n",
      "shard_11495 loaded\n",
      "shard_20954 loaded\n",
      "shard_23011 loaded\n",
      "shard_39315 loaded\n",
      "shard_49145 loaded\n",
      "shard_35439 loaded\n",
      "shard_30464 loaded\n",
      "shard_18501 loaded\n",
      "shard_44331 loaded\n",
      "shard_37219 loaded\n",
      "shard_48008 loaded\n",
      "shard_12635 loaded\n",
      "shard_20645 loaded\n",
      "shard_8030 loaded\n",
      "shard_14996 loaded\n",
      "shard_38758 loaded\n",
      "shard_33039 loaded\n",
      "shard_7546 loaded\n",
      "shard_23912 loaded\n",
      "shard_35083 loaded\n",
      "shard_12007 loaded\n",
      "shard_46703 loaded\n",
      "shard_26804 loaded\n",
      "shard_49910 loaded\n",
      "shard_22796 loaded\n",
      "shard_39854 loaded\n",
      "shard_29061 loaded\n",
      "shard_47589 loaded\n",
      "shard_43469 loaded\n",
      "shard_44010 loaded\n",
      "shard_38742 loaded\n",
      "shard_8555 loaded\n",
      "shard_17831 loaded\n",
      "shard_40911 loaded\n",
      "shard_5930 loaded\n",
      "shard_8211 loaded\n",
      "shard_13279 loaded\n",
      "shard_16526 loaded\n",
      "shard_49741 loaded\n",
      "shard_47758 loaded\n",
      "shard_3829 loaded\n",
      "shard_1964 loaded\n",
      "shard_26212 loaded\n",
      "shard_49365 loaded\n",
      "shard_40289 loaded\n",
      "shard_35096 loaded\n",
      "shard_25963 loaded\n",
      "shard_12566 loaded\n",
      "shard_8543 loaded\n",
      "shard_26652 loaded\n",
      "shard_6457 loaded\n",
      "shard_15263 loaded\n",
      "shard_41435 loaded\n",
      "shard_16363 loaded\n",
      "shard_12527 loaded\n",
      "shard_13139 loaded\n",
      "shard_21937 loaded\n",
      "shard_48508 loaded\n",
      "shard_18529 loaded\n",
      "shard_4927 loaded\n",
      "shard_5503 loaded\n",
      "shard_20297 loaded\n",
      "shard_37845 loaded\n",
      "shard_32679 loaded\n",
      "shard_10511 loaded\n",
      "shard_20210 loaded\n",
      "shard_47122 loaded\n",
      "shard_26131 loaded\n",
      "shard_32122 loaded\n",
      "shard_48265 loaded\n",
      "shard_21740 loaded\n",
      "shard_5840 loaded\n",
      "shard_2554 loaded\n",
      "shard_10663 loaded\n",
      "shard_28418 loaded\n",
      "shard_48473 loaded\n",
      "shard_48925 loaded\n",
      "shard_4178 loaded\n",
      "shard_44401 loaded\n",
      "shard_41703 loaded\n",
      "shard_5013 loaded\n",
      "shard_9780 loaded\n",
      "shard_10880 loaded\n",
      "shard_44524 loaded\n",
      "shard_13859 loaded\n",
      "shard_25253 loaded\n",
      "shard_43219 loaded\n",
      "shard_1405 loaded\n",
      "shard_23093 loaded\n",
      "shard_19612 loaded\n",
      "shard_23622 loaded\n",
      "shard_41594 loaded\n",
      "shard_25355 loaded\n",
      "shard_5448 loaded\n",
      "shard_49817 loaded\n",
      "shard_4302 loaded\n",
      "shard_1975 loaded\n",
      "shard_29808 loaded\n",
      "shard_10053 loaded\n",
      "shard_40633 loaded\n",
      "shard_49403 loaded\n",
      "shard_3408 loaded\n",
      "shard_24441 loaded\n",
      "shard_13006 loaded\n",
      "shard_24232 loaded\n",
      "shard_33721 loaded\n",
      "shard_33362 loaded\n",
      "shard_11594 loaded\n",
      "shard_8475 loaded\n",
      "shard_23272 loaded\n",
      "shard_49546 loaded\n",
      "shard_27670 loaded\n",
      "shard_17950 loaded\n",
      "shard_49617 loaded\n",
      "shard_14862 loaded\n",
      "shard_36919 loaded\n",
      "shard_5478 loaded\n",
      "shard_25177 loaded\n",
      "shard_23014 loaded\n",
      "shard_38219 loaded\n",
      "shard_32499 loaded\n",
      "shard_6609 loaded\n",
      "shard_14239 loaded\n",
      "shard_48015 loaded\n",
      "shard_1745 loaded\n",
      "shard_41653 loaded\n",
      "shard_43681 loaded\n",
      "shard_31470 loaded\n",
      "shard_26344 loaded\n",
      "shard_49924 loaded\n",
      "shard_42952 loaded\n",
      "shard_14788 loaded\n",
      "shard_37753 loaded\n",
      "shard_43004 loaded\n",
      "shard_36505 loaded\n",
      "shard_29595 loaded\n",
      "shard_1299 loaded\n",
      "shard_17722 loaded\n",
      "shard_47351 loaded\n",
      "shard_24240 loaded\n",
      "shard_16449 loaded\n",
      "shard_22990 loaded\n",
      "shard_11204 loaded\n",
      "shard_10584 loaded\n",
      "shard_21958 loaded\n",
      "shard_8981 loaded\n",
      "shard_20944 loaded\n",
      "shard_45026 loaded\n",
      "shard_41186 loaded\n",
      "shard_31858 loaded\n",
      "shard_40534 loaded\n",
      "shard_37668 loaded\n",
      "shard_22764 loaded\n",
      "shard_6659 loaded\n",
      "shard_4611 loaded\n",
      "shard_25287 loaded\n",
      "shard_35579 loaded\n",
      "shard_13346 loaded\n",
      "shard_8075 loaded\n",
      "shard_14329 loaded\n",
      "shard_48597 loaded\n",
      "shard_25220 loaded\n",
      "shard_47697 loaded\n",
      "shard_644 loaded\n",
      "shard_1111 loaded\n",
      "shard_3238 loaded\n",
      "shard_14330 loaded\n",
      "shard_10878 loaded\n",
      "shard_22424 loaded\n",
      "shard_35677 loaded\n",
      "shard_40141 loaded\n",
      "shard_32258 loaded\n",
      "shard_16496 loaded\n",
      "shard_18785 loaded\n",
      "shard_43382 loaded\n",
      "shard_20034 loaded\n",
      "shard_8213 loaded\n",
      "shard_33083 loaded\n",
      "shard_35584 loaded\n",
      "shard_43171 loaded\n",
      "shard_2570 loaded\n",
      "shard_38328 loaded\n",
      "shard_39176 loaded\n",
      "shard_33181 loaded\n",
      "shard_32647 loaded\n",
      "shard_12235 loaded\n",
      "shard_37258 loaded\n",
      "shard_17350 loaded\n",
      "shard_12063 loaded\n",
      "shard_23102 loaded\n",
      "shard_6693 loaded\n",
      "shard_17979 loaded\n",
      "shard_31665 loaded\n",
      "shard_31955 loaded\n",
      "shard_38772 loaded\n",
      "shard_35519 loaded\n",
      "shard_22592 loaded\n",
      "shard_41012 loaded\n",
      "shard_11627 loaded\n",
      "shard_11646 loaded\n",
      "shard_36653 loaded\n",
      "shard_29068 loaded\n",
      "shard_4292 loaded\n",
      "shard_29217 loaded\n",
      "shard_36216 loaded\n",
      "shard_28506 loaded\n",
      "shard_5129 loaded\n",
      "shard_38615 loaded\n",
      "shard_33411 loaded\n",
      "shard_11593 loaded\n",
      "shard_7617 loaded\n",
      "shard_27543 loaded\n",
      "shard_32011 loaded\n",
      "shard_25266 loaded\n",
      "shard_15729 loaded\n",
      "shard_42772 loaded\n",
      "shard_35873 loaded\n",
      "shard_36086 loaded\n",
      "shard_27785 loaded\n",
      "shard_869 loaded\n",
      "shard_7092 loaded\n",
      "shard_9241 loaded\n",
      "shard_12853 loaded\n",
      "shard_10987 loaded\n",
      "shard_33685 loaded\n",
      "shard_49020 loaded\n",
      "shard_31822 loaded\n",
      "shard_35880 loaded\n",
      "shard_40781 loaded\n",
      "shard_11942 loaded\n",
      "shard_4419 loaded\n",
      "shard_3027 loaded\n",
      "shard_24234 loaded\n",
      "shard_28987 loaded\n",
      "shard_33409 loaded\n",
      "shard_21043 loaded\n",
      "shard_24924 loaded\n",
      "shard_19641 loaded\n",
      "shard_31144 loaded\n",
      "shard_31983 loaded\n",
      "shard_34947 loaded\n",
      "shard_7727 loaded\n",
      "shard_49109 loaded\n",
      "shard_16992 loaded\n",
      "shard_49980 loaded\n",
      "shard_35643 loaded\n",
      "shard_45632 loaded\n",
      "shard_13298 loaded\n",
      "shard_27359 loaded\n",
      "shard_39873 loaded\n",
      "shard_5653 loaded\n",
      "shard_14430 loaded\n",
      "shard_5834 loaded\n",
      "shard_33263 loaded\n",
      "shard_4715 loaded\n",
      "shard_7654 loaded\n",
      "shard_17175 loaded\n",
      "shard_18362 loaded\n",
      "shard_22093 loaded\n",
      "shard_33391 loaded\n",
      "shard_14026 loaded\n",
      "shard_46960 loaded\n",
      "shard_8232 loaded\n",
      "shard_14130 loaded\n",
      "shard_20823 loaded\n",
      "shard_10324 loaded\n",
      "shard_49890 loaded\n",
      "shard_16413 loaded\n",
      "shard_48990 loaded\n",
      "shard_49250 loaded\n",
      "shard_33571 loaded\n",
      "shard_13021 loaded\n",
      "shard_5564 loaded\n",
      "shard_44985 loaded\n",
      "shard_13349 loaded\n",
      "shard_43581 loaded\n",
      "shard_40381 loaded\n",
      "shard_22994 loaded\n",
      "shard_11120 loaded\n",
      "shard_17201 loaded\n",
      "shard_31341 loaded\n",
      "shard_44928 loaded\n",
      "shard_11666 loaded\n",
      "shard_6138 loaded\n",
      "shard_21104 loaded\n",
      "shard_30263 loaded\n",
      "shard_30194 loaded\n",
      "shard_3382 loaded\n",
      "shard_47841 loaded\n",
      "shard_41330 loaded\n",
      "shard_12875 loaded\n",
      "shard_1784 loaded\n",
      "shard_5322 loaded\n",
      "shard_15507 loaded\n",
      "shard_30070 loaded\n",
      "shard_20177 loaded\n",
      "shard_10701 loaded\n",
      "shard_48217 loaded\n",
      "shard_24830 loaded\n",
      "shard_44957 loaded\n",
      "shard_13275 loaded\n",
      "shard_17017 loaded\n",
      "shard_45020 loaded\n",
      "shard_5599 loaded\n",
      "shard_30436 loaded\n",
      "shard_23874 loaded\n",
      "shard_45372 loaded\n",
      "shard_3993 loaded\n",
      "shard_11892 loaded\n",
      "shard_24463 loaded\n",
      "shard_30229 loaded\n",
      "shard_17958 loaded\n",
      "shard_20838 loaded\n",
      "shard_22397 loaded\n",
      "shard_11538 loaded\n",
      "shard_20569 loaded\n",
      "shard_47566 loaded\n",
      "shard_1997 loaded\n",
      "shard_32112 loaded\n",
      "shard_16799 loaded\n",
      "shard_44801 loaded\n",
      "shard_27042 loaded\n",
      "shard_25488 loaded\n",
      "shard_23617 loaded\n",
      "shard_46078 loaded\n",
      "shard_36074 loaded\n",
      "shard_44645 loaded\n",
      "shard_14274 loaded\n",
      "shard_34051 loaded\n",
      "shard_25025 loaded\n",
      "shard_48535 loaded\n",
      "shard_11263 loaded\n",
      "shard_23893 loaded\n",
      "shard_28473 loaded\n",
      "shard_25622 loaded\n",
      "shard_16695 loaded\n",
      "shard_28036 loaded\n",
      "shard_23215 loaded\n",
      "shard_42507 loaded\n",
      "shard_46230 loaded\n",
      "shard_28422 loaded\n",
      "shard_46948 loaded\n",
      "shard_48398 loaded\n",
      "shard_34896 loaded\n",
      "shard_18905 loaded\n",
      "shard_47201 loaded\n",
      "shard_4924 loaded\n",
      "shard_20917 loaded\n",
      "shard_31550 loaded\n",
      "shard_44237 loaded\n",
      "shard_44773 loaded\n",
      "shard_11312 loaded\n",
      "shard_6652 loaded\n",
      "shard_7184 loaded\n",
      "shard_14297 loaded\n",
      "shard_17151 loaded\n",
      "shard_39998 loaded\n",
      "shard_5820 loaded\n",
      "shard_1053 loaded\n",
      "shard_8256 loaded\n",
      "shard_2860 loaded\n",
      "shard_1570 loaded\n",
      "shard_49835 loaded\n",
      "shard_35482 loaded\n",
      "shard_12335 loaded\n",
      "shard_832 loaded\n",
      "shard_34701 loaded\n",
      "shard_17723 loaded\n",
      "shard_1925 loaded\n",
      "shard_20329 loaded\n",
      "shard_5364 loaded\n",
      "shard_23372 loaded\n",
      "shard_38817 loaded\n",
      "shard_14971 loaded\n",
      "shard_8262 loaded\n",
      "shard_9538 loaded\n",
      "shard_8482 loaded\n",
      "shard_24654 loaded\n",
      "shard_37319 loaded\n",
      "shard_16377 loaded\n",
      "shard_36008 loaded\n",
      "shard_8854 loaded\n",
      "shard_29533 loaded\n",
      "shard_4510 loaded\n",
      "shard_32083 loaded\n",
      "shard_10465 loaded\n",
      "shard_7152 loaded\n",
      "shard_49964 loaded\n",
      "shard_49096 loaded\n",
      "shard_34642 loaded\n",
      "shard_43511 loaded\n",
      "shard_339 loaded\n",
      "shard_1699 loaded\n",
      "shard_23187 loaded\n",
      "shard_16777 loaded\n",
      "shard_40365 loaded\n",
      "shard_48333 loaded\n",
      "shard_16523 loaded\n",
      "shard_46207 loaded\n",
      "shard_20437 loaded\n",
      "shard_48031 loaded\n",
      "shard_30334 loaded\n",
      "shard_3987 loaded\n",
      "shard_7340 loaded\n",
      "shard_26204 loaded\n",
      "shard_41033 loaded\n",
      "shard_11295 loaded\n",
      "shard_39997 loaded\n",
      "shard_25588 loaded\n",
      "shard_30945 loaded\n",
      "shard_17318 loaded\n",
      "shard_11206 loaded\n",
      "shard_5705 loaded\n",
      "shard_35299 loaded\n",
      "shard_43514 loaded\n",
      "shard_4753 loaded\n",
      "shard_16936 loaded\n",
      "shard_29257 loaded\n",
      "shard_43286 loaded\n",
      "shard_4900 loaded\n",
      "shard_26555 loaded\n",
      "shard_7579 loaded\n",
      "shard_27814 loaded\n",
      "shard_23381 loaded\n",
      "shard_46630 loaded\n",
      "shard_22714 loaded\n",
      "shard_23943 loaded\n",
      "shard_42421 loaded\n",
      "shard_33013 loaded\n",
      "shard_28482 loaded\n",
      "shard_23278 loaded\n",
      "shard_28077 loaded\n",
      "shard_32372 loaded\n",
      "shard_12499 loaded\n",
      "shard_5453 loaded\n",
      "shard_32601 loaded\n",
      "shard_32465 loaded\n",
      "shard_47940 loaded\n",
      "shard_21335 loaded\n",
      "shard_34870 loaded\n",
      "shard_33214 loaded\n",
      "shard_10480 loaded\n",
      "shard_19552 loaded\n",
      "shard_35076 loaded\n",
      "shard_17675 loaded\n",
      "shard_34722 loaded\n",
      "shard_543 loaded\n",
      "shard_6436 loaded\n",
      "shard_11631 loaded\n",
      "shard_18163 loaded\n",
      "shard_30572 loaded\n",
      "shard_21380 loaded\n",
      "shard_20852 loaded\n",
      "shard_14686 loaded\n",
      "shard_11602 loaded\n",
      "shard_18509 loaded\n",
      "shard_44051 loaded\n",
      "shard_45745 loaded\n",
      "shard_16045 loaded\n",
      "shard_33885 loaded\n",
      "shard_40882 loaded\n",
      "shard_41381 loaded\n",
      "shard_11725 loaded\n",
      "shard_46646 loaded\n",
      "shard_20559 loaded\n",
      "shard_46136 loaded\n",
      "shard_46014 loaded\n",
      "shard_39393 loaded\n",
      "shard_29277 loaded\n",
      "shard_26458 loaded\n",
      "shard_43772 loaded\n",
      "shard_21368 loaded\n",
      "shard_4679 loaded\n",
      "shard_21229 loaded\n",
      "shard_31462 loaded\n",
      "shard_31330 loaded\n",
      "shard_37946 loaded\n",
      "shard_17746 loaded\n",
      "shard_41681 loaded\n",
      "shard_2383 loaded\n",
      "shard_7959 loaded\n",
      "shard_6918 loaded\n",
      "shard_36685 loaded\n",
      "shard_38424 loaded\n",
      "shard_11174 loaded\n",
      "shard_17702 loaded\n",
      "shard_17885 loaded\n",
      "shard_23556 loaded\n",
      "shard_24896 loaded\n",
      "shard_32803 loaded\n",
      "shard_44048 loaded\n",
      "shard_22972 loaded\n",
      "shard_16258 loaded\n",
      "shard_18772 loaded\n",
      "shard_3508 loaded\n",
      "shard_12051 loaded\n",
      "shard_39537 loaded\n",
      "shard_1827 loaded\n",
      "shard_21105 loaded\n",
      "shard_13581 loaded\n",
      "shard_27800 loaded\n",
      "shard_6391 loaded\n",
      "shard_49959 loaded\n",
      "shard_24469 loaded\n",
      "shard_8437 loaded\n",
      "shard_24316 loaded\n",
      "shard_16324 loaded\n",
      "shard_2882 loaded\n",
      "shard_2151 loaded\n",
      "shard_46702 loaded\n",
      "shard_43438 loaded\n",
      "shard_44973 loaded\n",
      "shard_17103 loaded\n",
      "shard_5335 loaded\n",
      "shard_35400 loaded\n",
      "shard_6356 loaded\n",
      "shard_15881 loaded\n",
      "shard_48909 loaded\n",
      "shard_16203 loaded\n",
      "shard_20728 loaded\n",
      "shard_19886 loaded\n",
      "shard_37792 loaded\n",
      "shard_11239 loaded\n",
      "shard_8298 loaded\n",
      "shard_43691 loaded\n",
      "shard_4097 loaded\n",
      "shard_21094 loaded\n",
      "shard_41633 loaded\n",
      "shard_37062 loaded\n",
      "shard_8314 loaded\n",
      "shard_21529 loaded\n",
      "shard_18287 loaded\n",
      "shard_40587 loaded\n",
      "shard_21261 loaded\n",
      "shard_11788 loaded\n",
      "shard_36756 loaded\n",
      "shard_23857 loaded\n",
      "shard_6671 loaded\n",
      "shard_42162 loaded\n",
      "shard_33176 loaded\n",
      "shard_20106 loaded\n",
      "shard_9904 loaded\n",
      "shard_221 loaded\n",
      "shard_41909 loaded\n",
      "shard_16055 loaded\n",
      "shard_24901 loaded\n",
      "shard_43197 loaded\n",
      "shard_46961 loaded\n",
      "shard_45438 loaded\n",
      "shard_24140 loaded\n",
      "shard_30390 loaded\n",
      "shard_41550 loaded\n",
      "shard_36281 loaded\n",
      "shard_19213 loaded\n",
      "shard_48221 loaded\n",
      "shard_25698 loaded\n",
      "shard_45601 loaded\n",
      "shard_25686 loaded\n",
      "shard_10905 loaded\n",
      "shard_4832 loaded\n",
      "shard_7244 loaded\n",
      "shard_31573 loaded\n",
      "shard_23051 loaded\n",
      "shard_36228 loaded\n",
      "shard_34986 loaded\n",
      "shard_30065 loaded\n",
      "shard_3345 loaded\n",
      "shard_21013 loaded\n",
      "shard_43416 loaded\n",
      "shard_44068 loaded\n",
      "shard_43350 loaded\n",
      "shard_16590 loaded\n",
      "shard_26980 loaded\n",
      "shard_29723 loaded\n",
      "shard_26812 loaded\n",
      "shard_23284 loaded\n",
      "shard_7968 loaded\n",
      "shard_7150 loaded\n",
      "shard_2975 loaded\n",
      "shard_35343 loaded\n",
      "shard_28194 loaded\n",
      "shard_1457 loaded\n",
      "shard_8174 loaded\n",
      "shard_38735 loaded\n",
      "shard_38319 loaded\n",
      "shard_23514 loaded\n",
      "shard_38198 loaded\n",
      "shard_43941 loaded\n",
      "shard_23754 loaded\n",
      "shard_35764 loaded\n",
      "shard_45753 loaded\n",
      "shard_38115 loaded\n",
      "shard_38291 loaded\n",
      "shard_21637 loaded\n",
      "shard_46897 loaded\n",
      "shard_30544 loaded\n",
      "shard_24145 loaded\n",
      "shard_20893 loaded\n",
      "shard_7176 loaded\n",
      "shard_33603 loaded\n",
      "shard_12520 loaded\n",
      "shard_28839 loaded\n",
      "shard_6248 loaded\n",
      "shard_4243 loaded\n",
      "shard_23723 loaded\n",
      "shard_4549 loaded\n",
      "shard_21381 loaded\n",
      "shard_41392 loaded\n",
      "shard_13922 loaded\n",
      "shard_10137 loaded\n",
      "shard_32420 loaded\n",
      "shard_28453 loaded\n",
      "shard_33319 loaded\n",
      "shard_13469 loaded\n",
      "shard_21031 loaded\n",
      "shard_28286 loaded\n",
      "shard_34375 loaded\n",
      "shard_33786 loaded\n",
      "shard_39341 loaded\n",
      "shard_46367 loaded\n",
      "shard_7105 loaded\n",
      "shard_5866 loaded\n",
      "shard_37865 loaded\n",
      "shard_32100 loaded\n",
      "shard_49641 loaded\n",
      "shard_565 loaded\n",
      "shard_30488 loaded\n",
      "shard_10710 loaded\n",
      "shard_2158 loaded\n",
      "shard_1080 loaded\n",
      "shard_17971 loaded\n",
      "shard_43195 loaded\n",
      "shard_158 loaded\n",
      "shard_23808 loaded\n",
      "shard_4859 loaded\n",
      "shard_5670 loaded\n",
      "shard_35646 loaded\n",
      "shard_3518 loaded\n",
      "shard_34199 loaded\n",
      "shard_14283 loaded\n",
      "shard_48068 loaded\n",
      "shard_42968 loaded\n",
      "shard_30503 loaded\n",
      "shard_23104 loaded\n",
      "shard_24007 loaded\n",
      "shard_35790 loaded\n",
      "shard_31613 loaded\n",
      "shard_9477 loaded\n",
      "shard_27079 loaded\n",
      "shard_39145 loaded\n",
      "shard_30742 loaded\n",
      "shard_32220 loaded\n",
      "shard_13421 loaded\n",
      "shard_606 loaded\n",
      "shard_40811 loaded\n",
      "shard_10258 loaded\n",
      "shard_8294 loaded\n",
      "shard_21452 loaded\n",
      "shard_16369 loaded\n",
      "shard_1000 loaded\n",
      "shard_22651 loaded\n",
      "shard_47754 loaded\n",
      "shard_17170 loaded\n",
      "shard_1958 loaded\n",
      "shard_9540 loaded\n",
      "shard_39199 loaded\n",
      "shard_16135 loaded\n",
      "shard_18415 loaded\n",
      "shard_5895 loaded\n",
      "shard_35270 loaded\n",
      "shard_34961 loaded\n",
      "shard_19489 loaded\n",
      "shard_43168 loaded\n",
      "shard_17601 loaded\n",
      "shard_43434 loaded\n",
      "shard_47562 loaded\n",
      "shard_29523 loaded\n",
      "shard_15495 loaded\n",
      "shard_11490 loaded\n",
      "shard_20299 loaded\n",
      "shard_30570 loaded\n",
      "shard_4409 loaded\n",
      "shard_31379 loaded\n",
      "shard_45762 loaded\n",
      "shard_49336 loaded\n",
      "shard_37201 loaded\n",
      "shard_30424 loaded\n",
      "shard_35070 loaded\n",
      "shard_40744 loaded\n",
      "shard_2324 loaded\n",
      "shard_34527 loaded\n",
      "shard_10764 loaded\n",
      "shard_2281 loaded\n",
      "shard_12645 loaded\n",
      "shard_43506 loaded\n",
      "shard_13451 loaded\n",
      "shard_45221 loaded\n",
      "shard_19706 loaded\n",
      "shard_7576 loaded\n",
      "shard_21256 loaded\n",
      "shard_27799 loaded\n",
      "shard_26351 loaded\n",
      "shard_22313 loaded\n",
      "shard_26641 loaded\n",
      "shard_4690 loaded\n",
      "shard_19631 loaded\n",
      "shard_14323 loaded\n",
      "shard_47540 loaded\n",
      "shard_17865 loaded\n",
      "shard_42029 loaded\n",
      "shard_16013 loaded\n",
      "shard_47418 loaded\n",
      "shard_9839 loaded\n",
      "shard_10814 loaded\n",
      "shard_26786 loaded\n",
      "shard_33714 loaded\n",
      "shard_37664 loaded\n",
      "shard_4886 loaded\n",
      "shard_18792 loaded\n",
      "shard_18230 loaded\n",
      "shard_38987 loaded\n",
      "shard_14485 loaded\n",
      "shard_43590 loaded\n",
      "shard_40746 loaded\n",
      "shard_5539 loaded\n",
      "shard_29166 loaded\n",
      "shard_38520 loaded\n",
      "shard_43440 loaded\n",
      "shard_36776 loaded\n",
      "shard_30655 loaded\n",
      "shard_44390 loaded\n",
      "shard_24074 loaded\n",
      "shard_13150 loaded\n",
      "shard_43110 loaded\n",
      "shard_5285 loaded\n",
      "shard_24939 loaded\n",
      "shard_9096 loaded\n",
      "shard_21854 loaded\n",
      "shard_38901 loaded\n",
      "shard_41912 loaded\n",
      "shard_46698 loaded\n",
      "shard_22603 loaded\n",
      "shard_29318 loaded\n",
      "shard_26736 loaded\n",
      "shard_46580 loaded\n",
      "shard_26531 loaded\n",
      "shard_26287 loaded\n",
      "shard_17213 loaded\n",
      "shard_10176 loaded\n",
      "shard_49014 loaded\n",
      "shard_25567 loaded\n",
      "shard_33953 loaded\n",
      "shard_7336 loaded\n",
      "shard_48731 loaded\n",
      "shard_27740 loaded\n",
      "shard_13657 loaded\n",
      "shard_19047 loaded\n",
      "shard_31886 loaded\n",
      "shard_33602 loaded\n",
      "shard_10189 loaded\n",
      "shard_49125 loaded\n",
      "shard_44245 loaded\n",
      "shard_9037 loaded\n",
      "shard_35407 loaded\n",
      "shard_17259 loaded\n",
      "shard_48058 loaded\n",
      "shard_20422 loaded\n",
      "shard_18256 loaded\n",
      "shard_34273 loaded\n",
      "shard_2349 loaded\n",
      "shard_12620 loaded\n",
      "shard_33453 loaded\n",
      "shard_35476 loaded\n",
      "shard_15261 loaded\n",
      "shard_44552 loaded\n",
      "shard_20978 loaded\n",
      "shard_41920 loaded\n",
      "shard_15887 loaded\n",
      "shard_48095 loaded\n",
      "shard_12057 loaded\n",
      "shard_20492 loaded\n",
      "shard_48504 loaded\n",
      "shard_6204 loaded\n",
      "shard_45592 loaded\n",
      "shard_16142 loaded\n",
      "shard_46151 loaded\n",
      "shard_3313 loaded\n",
      "shard_28931 loaded\n",
      "shard_7886 loaded\n",
      "shard_25632 loaded\n",
      "shard_30990 loaded\n",
      "shard_33672 loaded\n",
      "shard_34630 loaded\n",
      "shard_21516 loaded\n",
      "shard_39188 loaded\n",
      "shard_15638 loaded\n",
      "shard_9442 loaded\n",
      "shard_32512 loaded\n",
      "shard_39681 loaded\n",
      "shard_33449 loaded\n",
      "shard_14664 loaded\n",
      "shard_34521 loaded\n",
      "shard_12069 loaded\n",
      "shard_40730 loaded\n",
      "shard_45740 loaded\n",
      "shard_38741 loaded\n",
      "shard_16875 loaded\n",
      "shard_24047 loaded\n",
      "shard_5147 loaded\n",
      "shard_19194 loaded\n",
      "shard_36728 loaded\n",
      "shard_7257 loaded\n",
      "shard_44560 loaded\n",
      "shard_20913 loaded\n",
      "shard_10552 loaded\n",
      "shard_22259 loaded\n",
      "shard_23036 loaded\n",
      "shard_12590 loaded\n",
      "shard_4344 loaded\n",
      "shard_14618 loaded\n",
      "shard_43126 loaded\n",
      "shard_43153 loaded\n",
      "shard_39516 loaded\n",
      "shard_13619 loaded\n",
      "shard_15814 loaded\n",
      "shard_42527 loaded\n",
      "shard_46122 loaded\n",
      "shard_37658 loaded\n",
      "shard_41723 loaded\n",
      "shard_40274 loaded\n",
      "shard_8938 loaded\n",
      "shard_20725 loaded\n",
      "shard_42714 loaded\n",
      "shard_32578 loaded\n",
      "shard_27058 loaded\n",
      "shard_19273 loaded\n",
      "shard_18462 loaded\n",
      "shard_15011 loaded\n",
      "shard_2888 loaded\n",
      "shard_46024 loaded\n",
      "shard_14195 loaded\n",
      "shard_14265 loaded\n",
      "shard_10368 loaded\n",
      "shard_13242 loaded\n",
      "shard_5785 loaded\n",
      "shard_20841 loaded\n",
      "shard_15162 loaded\n",
      "shard_711 loaded\n",
      "shard_36758 loaded\n",
      "shard_9506 loaded\n",
      "shard_47688 loaded\n",
      "shard_11768 loaded\n",
      "shard_1881 loaded\n",
      "shard_34390 loaded\n",
      "shard_37330 loaded\n",
      "shard_1584 loaded\n",
      "shard_28935 loaded\n",
      "shard_20755 loaded\n",
      "shard_7526 loaded\n",
      "shard_11587 loaded\n",
      "shard_47321 loaded\n",
      "shard_28001 loaded\n",
      "shard_26380 loaded\n",
      "shard_48890 loaded\n",
      "shard_4293 loaded\n",
      "shard_38165 loaded\n",
      "shard_25800 loaded\n",
      "shard_29758 loaded\n",
      "shard_49639 loaded\n",
      "shard_32548 loaded\n",
      "shard_13787 loaded\n",
      "shard_45858 loaded\n",
      "shard_33486 loaded\n",
      "shard_44249 loaded\n",
      "shard_40266 loaded\n",
      "shard_18334 loaded\n",
      "shard_43726 loaded\n",
      "shard_20490 loaded\n",
      "shard_26385 loaded\n",
      "shard_36412 loaded\n",
      "shard_9853 loaded\n",
      "shard_12224 loaded\n",
      "shard_15109 loaded\n",
      "shard_26178 loaded\n",
      "shard_31831 loaded\n",
      "shard_45821 loaded\n",
      "shard_42080 loaded\n",
      "shard_34392 loaded\n",
      "shard_14501 loaded\n",
      "shard_40280 loaded\n",
      "shard_21395 loaded\n",
      "shard_49701 loaded\n",
      "shard_40411 loaded\n",
      "shard_47662 loaded\n",
      "shard_39726 loaded\n",
      "shard_29121 loaded\n",
      "shard_34289 loaded\n",
      "shard_38986 loaded\n",
      "shard_49264 loaded\n",
      "shard_6053 loaded\n",
      "shard_30539 loaded\n",
      "shard_32265 loaded\n",
      "shard_44821 loaded\n",
      "shard_41060 loaded\n",
      "shard_46356 loaded\n",
      "shard_18897 loaded\n",
      "shard_45947 loaded\n",
      "shard_16026 loaded\n",
      "shard_16681 loaded\n",
      "shard_10275 loaded\n",
      "shard_29837 loaded\n",
      "shard_28564 loaded\n",
      "shard_23839 loaded\n",
      "shard_21165 loaded\n",
      "shard_6926 loaded\n",
      "shard_47869 loaded\n",
      "shard_31798 loaded\n",
      "shard_9444 loaded\n",
      "shard_9554 loaded\n",
      "shard_24613 loaded\n",
      "shard_39871 loaded\n",
      "shard_7266 loaded\n",
      "shard_21747 loaded\n",
      "shard_20811 loaded\n",
      "shard_7630 loaded\n",
      "shard_45744 loaded\n",
      "shard_35404 loaded\n",
      "shard_29840 loaded\n",
      "shard_16575 loaded\n",
      "shard_44584 loaded\n",
      "shard_19857 loaded\n",
      "shard_11971 loaded\n",
      "shard_39594 loaded\n",
      "shard_3421 loaded\n",
      "shard_2683 loaded\n",
      "shard_18941 loaded\n",
      "shard_16804 loaded\n",
      "shard_34149 loaded\n",
      "shard_37125 loaded\n",
      "shard_27184 loaded\n",
      "shard_7278 loaded\n",
      "shard_27442 loaded\n",
      "shard_12217 loaded\n",
      "shard_40195 loaded\n",
      "shard_1767 loaded\n",
      "shard_16806 loaded\n",
      "shard_44409 loaded\n",
      "shard_31957 loaded\n",
      "shard_29341 loaded\n",
      "shard_23564 loaded\n",
      "shard_24392 loaded\n",
      "shard_43402 loaded\n",
      "shard_27300 loaded\n",
      "shard_26566 loaded\n",
      "shard_6917 loaded\n",
      "shard_17038 loaded\n",
      "shard_39173 loaded\n",
      "shard_9938 loaded\n",
      "shard_15687 loaded\n",
      "shard_15671 loaded\n",
      "shard_11251 loaded\n",
      "shard_22971 loaded\n",
      "shard_40560 loaded\n",
      "shard_15034 loaded\n",
      "shard_48233 loaded\n",
      "shard_12452 loaded\n",
      "shard_17839 loaded\n",
      "shard_7039 loaded\n",
      "shard_13361 loaded\n",
      "shard_25978 loaded\n",
      "shard_37612 loaded\n",
      "shard_48824 loaded\n",
      "shard_38875 loaded\n",
      "shard_11246 loaded\n",
      "shard_39437 loaded\n",
      "shard_16819 loaded\n",
      "shard_43391 loaded\n",
      "shard_34926 loaded\n",
      "shard_43068 loaded\n",
      "shard_24484 loaded\n",
      "shard_8688 loaded\n",
      "shard_26083 loaded\n",
      "shard_39989 loaded\n",
      "shard_4223 loaded\n",
      "shard_24618 loaded\n",
      "shard_20195 loaded\n",
      "shard_12372 loaded\n",
      "shard_37930 loaded\n",
      "shard_25096 loaded\n",
      "shard_16435 loaded\n",
      "shard_36630 loaded\n",
      "shard_12622 loaded\n",
      "shard_35575 loaded\n",
      "shard_7455 loaded\n",
      "shard_28225 loaded\n",
      "shard_29634 loaded\n",
      "shard_27566 loaded\n",
      "shard_35207 loaded\n",
      "shard_3881 loaded\n",
      "shard_46886 loaded\n",
      "shard_1271 loaded\n",
      "shard_3931 loaded\n",
      "shard_11065 loaded\n",
      "shard_47142 loaded\n",
      "shard_6462 loaded\n",
      "shard_43378 loaded\n",
      "shard_43339 loaded\n",
      "shard_33093 loaded\n",
      "shard_11804 loaded\n",
      "shard_38094 loaded\n",
      "shard_30673 loaded\n",
      "shard_10972 loaded\n",
      "shard_30438 loaded\n",
      "shard_42017 loaded\n",
      "shard_12168 loaded\n",
      "shard_15344 loaded\n",
      "shard_41024 loaded\n",
      "shard_19503 loaded\n",
      "shard_6292 loaded\n",
      "shard_40763 loaded\n",
      "shard_34160 loaded\n",
      "shard_11958 loaded\n",
      "shard_36875 loaded\n",
      "shard_38784 loaded\n",
      "shard_31111 loaded\n",
      "shard_42768 loaded\n",
      "shard_33601 loaded\n",
      "shard_25398 loaded\n",
      "shard_22141 loaded\n",
      "shard_43604 loaded\n",
      "shard_11276 loaded\n",
      "shard_20769 loaded\n",
      "shard_9548 loaded\n",
      "shard_26028 loaded\n",
      "shard_35520 loaded\n",
      "shard_47503 loaded\n",
      "shard_45605 loaded\n",
      "shard_45168 loaded\n",
      "shard_11427 loaded\n",
      "shard_24173 loaded\n",
      "shard_12814 loaded\n",
      "shard_11606 loaded\n",
      "shard_24275 loaded\n",
      "shard_27497 loaded\n",
      "shard_15283 loaded\n",
      "shard_12310 loaded\n",
      "shard_38629 loaded\n",
      "shard_37982 loaded\n",
      "shard_29431 loaded\n",
      "shard_11956 loaded\n",
      "shard_36852 loaded\n",
      "shard_30749 loaded\n",
      "shard_36557 loaded\n",
      "shard_19694 loaded\n",
      "shard_16248 loaded\n",
      "shard_9785 loaded\n",
      "shard_29005 loaded\n",
      "shard_47819 loaded\n",
      "shard_8585 loaded\n",
      "shard_26421 loaded\n",
      "shard_6038 loaded\n",
      "shard_15336 loaded\n",
      "shard_10946 loaded\n",
      "shard_24101 loaded\n",
      "shard_18508 loaded\n",
      "shard_27802 loaded\n",
      "shard_43677 loaded\n",
      "shard_20475 loaded\n",
      "shard_22344 loaded\n",
      "shard_36454 loaded\n",
      "shard_10466 loaded\n",
      "shard_48745 loaded\n",
      "shard_24458 loaded\n",
      "shard_46344 loaded\n",
      "shard_1661 loaded\n",
      "shard_46977 loaded\n",
      "shard_48179 loaded\n",
      "shard_27507 loaded\n",
      "shard_13527 loaded\n",
      "shard_45444 loaded\n",
      "shard_2193 loaded\n",
      "shard_31681 loaded\n",
      "shard_18086 loaded\n",
      "shard_26080 loaded\n",
      "shard_20378 loaded\n",
      "shard_36853 loaded\n",
      "shard_24938 loaded\n",
      "shard_27299 loaded\n",
      "shard_26991 loaded\n",
      "shard_6114 loaded\n",
      "shard_48818 loaded\n",
      "shard_7862 loaded\n",
      "shard_36253 loaded\n",
      "shard_23359 loaded\n",
      "shard_24055 loaded\n",
      "shard_28347 loaded\n",
      "shard_16699 loaded\n",
      "shard_36632 loaded\n",
      "shard_13486 loaded\n",
      "shard_2173 loaded\n",
      "shard_32340 loaded\n",
      "shard_10943 loaded\n",
      "shard_14850 loaded\n",
      "shard_40586 loaded\n",
      "shard_29719 loaded\n",
      "shard_34769 loaded\n",
      "shard_43933 loaded\n",
      "shard_4340 loaded\n",
      "shard_26015 loaded\n",
      "shard_18220 loaded\n",
      "shard_26179 loaded\n",
      "shard_42630 loaded\n",
      "shard_12118 loaded\n",
      "shard_44568 loaded\n",
      "shard_38883 loaded\n",
      "shard_11406 loaded\n",
      "shard_10237 loaded\n",
      "shard_15690 loaded\n",
      "shard_43140 loaded\n",
      "shard_49790 loaded\n",
      "shard_43458 loaded\n",
      "shard_28141 loaded\n",
      "shard_6323 loaded\n",
      "shard_31552 loaded\n",
      "shard_30959 loaded\n",
      "shard_27534 loaded\n",
      "shard_14675 loaded\n",
      "shard_5384 loaded\n",
      "shard_9306 loaded\n",
      "shard_40664 loaded\n",
      "shard_20976 loaded\n",
      "shard_35028 loaded\n",
      "shard_2972 loaded\n",
      "shard_43316 loaded\n",
      "shard_49878 loaded\n",
      "shard_46056 loaded\n",
      "shard_44942 loaded\n",
      "shard_25932 loaded\n",
      "shard_48351 loaded\n",
      "shard_45124 loaded\n",
      "shard_37916 loaded\n",
      "shard_34266 loaded\n",
      "shard_19445 loaded\n",
      "shard_18628 loaded\n",
      "shard_26730 loaded\n",
      "shard_2213 loaded\n",
      "shard_37592 loaded\n",
      "shard_5112 loaded\n",
      "shard_17976 loaded\n",
      "shard_36473 loaded\n",
      "shard_15586 loaded\n",
      "shard_5954 loaded\n",
      "shard_3757 loaded\n",
      "shard_18047 loaded\n",
      "shard_30639 loaded\n",
      "shard_24447 loaded\n",
      "shard_41588 loaded\n",
      "shard_27053 loaded\n",
      "shard_9408 loaded\n",
      "shard_7356 loaded\n",
      "shard_32944 loaded\n",
      "shard_39521 loaded\n",
      "shard_20521 loaded\n",
      "shard_32346 loaded\n",
      "shard_48474 loaded\n",
      "shard_9699 loaded\n",
      "shard_3390 loaded\n",
      "shard_10190 loaded\n",
      "shard_33198 loaded\n",
      "shard_13512 loaded\n",
      "shard_37661 loaded\n",
      "shard_1906 loaded\n",
      "shard_19915 loaded\n",
      "shard_41713 loaded\n",
      "shard_32805 loaded\n",
      "shard_19674 loaded\n",
      "shard_301 loaded\n",
      "shard_34268 loaded\n",
      "shard_7422 loaded\n",
      "shard_16463 loaded\n",
      "shard_45159 loaded\n",
      "shard_30040 loaded\n",
      "shard_48915 loaded\n",
      "shard_32464 loaded\n",
      "shard_16389 loaded\n",
      "shard_1399 loaded\n",
      "shard_17247 loaded\n",
      "shard_953 loaded\n",
      "shard_3991 loaded\n",
      "shard_18497 loaded\n",
      "shard_33438 loaded\n",
      "shard_29028 loaded\n",
      "shard_8002 loaded\n",
      "shard_31838 loaded\n",
      "shard_11282 loaded\n",
      "shard_143 loaded\n",
      "shard_45576 loaded\n",
      "shard_27910 loaded\n",
      "shard_36317 loaded\n",
      "shard_25605 loaded\n",
      "shard_28590 loaded\n",
      "shard_8935 loaded\n",
      "shard_35281 loaded\n",
      "shard_35809 loaded\n",
      "shard_32087 loaded\n",
      "shard_34035 loaded\n",
      "shard_17527 loaded\n",
      "shard_17270 loaded\n",
      "shard_8373 loaded\n",
      "shard_2694 loaded\n",
      "shard_34408 loaded\n",
      "shard_28758 loaded\n",
      "shard_32873 loaded\n",
      "shard_14039 loaded\n",
      "shard_399 loaded\n",
      "shard_37452 loaded\n",
      "shard_34218 loaded\n",
      "shard_25842 loaded\n",
      "shard_16537 loaded\n",
      "shard_9790 loaded\n",
      "shard_48425 loaded\n",
      "shard_5591 loaded\n",
      "shard_42913 loaded\n",
      "shard_7677 loaded\n",
      "shard_43058 loaded\n",
      "shard_30084 loaded\n",
      "shard_36638 loaded\n",
      "shard_13289 loaded\n",
      "shard_11731 loaded\n",
      "shard_29168 loaded\n",
      "shard_28251 loaded\n",
      "shard_622 loaded\n",
      "shard_15459 loaded\n",
      "shard_6629 loaded\n",
      "shard_34933 loaded\n",
      "shard_35533 loaded\n",
      "shard_23412 loaded\n",
      "shard_49771 loaded\n",
      "shard_7225 loaded\n",
      "shard_24415 loaded\n",
      "shard_43660 loaded\n",
      "shard_10410 loaded\n",
      "shard_15085 loaded\n",
      "shard_40042 loaded\n",
      "shard_12664 loaded\n",
      "shard_14808 loaded\n",
      "shard_40168 loaded\n",
      "shard_28646 loaded\n",
      "shard_49039 loaded\n",
      "shard_21711 loaded\n",
      "shard_46130 loaded\n",
      "shard_14074 loaded\n",
      "shard_10508 loaded\n",
      "shard_19575 loaded\n",
      "shard_49504 loaded\n",
      "shard_29865 loaded\n",
      "shard_46730 loaded\n",
      "shard_33314 loaded\n",
      "shard_20236 loaded\n",
      "shard_23110 loaded\n",
      "shard_2080 loaded\n",
      "shard_19451 loaded\n",
      "shard_18281 loaded\n",
      "shard_40190 loaded\n",
      "shard_35633 loaded\n",
      "shard_42176 loaded\n",
      "shard_33609 loaded\n",
      "shard_24289 loaded\n",
      "shard_12383 loaded\n",
      "shard_28090 loaded\n",
      "shard_25579 loaded\n",
      "shard_23370 loaded\n",
      "shard_28153 loaded\n",
      "shard_23167 loaded\n",
      "shard_27070 loaded\n",
      "shard_28761 loaded\n",
      "shard_42226 loaded\n",
      "shard_32423 loaded\n",
      "shard_30534 loaded\n",
      "shard_23413 loaded\n",
      "shard_27033 loaded\n",
      "shard_40455 loaded\n",
      "shard_1801 loaded\n",
      "shard_15613 loaded\n",
      "shard_38445 loaded\n",
      "shard_30979 loaded\n",
      "shard_31044 loaded\n",
      "shard_17997 loaded\n",
      "shard_7855 loaded\n",
      "shard_40296 loaded\n",
      "shard_12012 loaded\n",
      "shard_18478 loaded\n",
      "shard_31383 loaded\n",
      "shard_42756 loaded\n",
      "shard_2808 loaded\n",
      "shard_45769 loaded\n",
      "shard_37904 loaded\n",
      "shard_45727 loaded\n",
      "shard_30342 loaded\n",
      "shard_45243 loaded\n",
      "shard_48728 loaded\n",
      "shard_11660 loaded\n",
      "shard_41759 loaded\n",
      "shard_23326 loaded\n",
      "shard_6017 loaded\n",
      "shard_34082 loaded\n",
      "shard_40457 loaded\n",
      "shard_4570 loaded\n",
      "shard_43124 loaded\n",
      "shard_1016 loaded\n",
      "shard_21029 loaded\n",
      "shard_3913 loaded\n",
      "shard_14093 loaded\n",
      "shard_16494 loaded\n",
      "shard_21450 loaded\n",
      "shard_25221 loaded\n",
      "shard_3478 loaded\n",
      "shard_29554 loaded\n",
      "shard_33336 loaded\n",
      "shard_10381 loaded\n",
      "shard_22146 loaded\n",
      "shard_48814 loaded\n",
      "shard_6607 loaded\n",
      "shard_7828 loaded\n",
      "shard_32459 loaded\n",
      "shard_37676 loaded\n",
      "shard_28057 loaded\n",
      "shard_18094 loaded\n",
      "shard_4908 loaded\n",
      "shard_21669 loaded\n",
      "shard_37068 loaded\n",
      "shard_32606 loaded\n",
      "shard_32378 loaded\n",
      "shard_33247 loaded\n",
      "shard_20999 loaded\n",
      "shard_48923 loaded\n",
      "shard_42562 loaded\n",
      "shard_14151 loaded\n",
      "shard_14294 loaded\n",
      "shard_13860 loaded\n",
      "shard_16598 loaded\n",
      "shard_32609 loaded\n",
      "shard_42759 loaded\n",
      "shard_40818 loaded\n",
      "shard_38628 loaded\n",
      "shard_12415 loaded\n",
      "shard_31755 loaded\n",
      "shard_4830 loaded\n",
      "shard_38343 loaded\n",
      "shard_27373 loaded\n",
      "shard_5502 loaded\n",
      "shard_35727 loaded\n",
      "shard_44586 loaded\n",
      "shard_48710 loaded\n",
      "shard_19341 loaded\n",
      "shard_17092 loaded\n",
      "shard_38113 loaded\n",
      "shard_14553 loaded\n",
      "shard_27061 loaded\n",
      "shard_33768 loaded\n",
      "shard_12361 loaded\n",
      "shard_42066 loaded\n",
      "shard_34657 loaded\n",
      "shard_33149 loaded\n",
      "shard_19906 loaded\n",
      "shard_13851 loaded\n",
      "shard_28651 loaded\n",
      "shard_3589 loaded\n",
      "shard_2116 loaded\n",
      "shard_45433 loaded\n",
      "shard_22221 loaded\n",
      "shard_16043 loaded\n",
      "shard_8635 loaded\n",
      "shard_1276 loaded\n",
      "shard_432 loaded\n",
      "shard_29193 loaded\n",
      "shard_4233 loaded\n",
      "shard_18522 loaded\n",
      "shard_35996 loaded\n",
      "shard_8503 loaded\n",
      "shard_3161 loaded\n",
      "shard_17599 loaded\n",
      "shard_37481 loaded\n",
      "shard_15508 loaded\n",
      "shard_44445 loaded\n",
      "shard_6283 loaded\n",
      "shard_44457 loaded\n",
      "shard_28075 loaded\n",
      "shard_34863 loaded\n",
      "shard_10567 loaded\n",
      "shard_18577 loaded\n",
      "shard_27603 loaded\n",
      "shard_14509 loaded\n",
      "shard_49331 loaded\n",
      "shard_48877 loaded\n",
      "shard_46625 loaded\n",
      "shard_8426 loaded\n",
      "shard_35332 loaded\n",
      "shard_26740 loaded\n",
      "shard_45293 loaded\n",
      "shard_28586 loaded\n",
      "shard_6817 loaded\n",
      "shard_7592 loaded\n",
      "shard_12627 loaded\n",
      "shard_5470 loaded\n",
      "shard_34461 loaded\n",
      "shard_45991 loaded\n",
      "shard_13256 loaded\n",
      "shard_32302 loaded\n",
      "shard_29338 loaded\n",
      "shard_16139 loaded\n",
      "shard_33631 loaded\n",
      "shard_45934 loaded\n",
      "shard_9213 loaded\n",
      "shard_7321 loaded\n",
      "shard_4578 loaded\n",
      "shard_8167 loaded\n",
      "shard_5106 loaded\n",
      "shard_22434 loaded\n",
      "shard_17876 loaded\n",
      "shard_20578 loaded\n",
      "shard_35442 loaded\n",
      "shard_30588 loaded\n",
      "shard_14414 loaded\n",
      "shard_27404 loaded\n",
      "shard_34512 loaded\n",
      "shard_20289 loaded\n",
      "shard_36978 loaded\n",
      "shard_28984 loaded\n",
      "shard_34216 loaded\n",
      "shard_4502 loaded\n",
      "shard_41094 loaded\n",
      "shard_31932 loaded\n",
      "shard_48339 loaded\n",
      "shard_37639 loaded\n",
      "shard_13120 loaded\n",
      "shard_27724 loaded\n",
      "shard_34441 loaded\n",
      "shard_18253 loaded\n",
      "shard_28100 loaded\n",
      "shard_540 loaded\n",
      "shard_17884 loaded\n",
      "shard_41755 loaded\n",
      "shard_46802 loaded\n",
      "shard_21857 loaded\n",
      "shard_28497 loaded\n",
      "shard_4645 loaded\n",
      "shard_42389 loaded\n",
      "shard_37838 loaded\n",
      "shard_2893 loaded\n",
      "shard_21909 loaded\n",
      "shard_6245 loaded\n",
      "shard_1636 loaded\n",
      "shard_18373 loaded\n",
      "shard_19548 loaded\n",
      "shard_12628 loaded\n",
      "shard_40653 loaded\n",
      "shard_43323 loaded\n",
      "shard_34978 loaded\n",
      "shard_24459 loaded\n",
      "shard_13894 loaded\n",
      "shard_31131 loaded\n",
      "shard_24809 loaded\n",
      "shard_32906 loaded\n",
      "shard_9498 loaded\n",
      "shard_4589 loaded\n",
      "shard_36312 loaded\n",
      "shard_6636 loaded\n",
      "shard_27320 loaded\n",
      "shard_47249 loaded\n",
      "shard_3132 loaded\n",
      "shard_12662 loaded\n",
      "shard_36296 loaded\n",
      "shard_7739 loaded\n",
      "shard_7050 loaded\n",
      "shard_42022 loaded\n",
      "shard_47811 loaded\n",
      "shard_27363 loaded\n",
      "shard_46976 loaded\n",
      "shard_47534 loaded\n",
      "shard_46204 loaded\n",
      "shard_20512 loaded\n",
      "shard_26216 loaded\n",
      "shard_1483 loaded\n",
      "shard_41956 loaded\n",
      "shard_32070 loaded\n",
      "shard_13656 loaded\n",
      "shard_20699 loaded\n",
      "shard_15387 loaded\n",
      "shard_23010 loaded\n",
      "shard_27994 loaded\n",
      "shard_48108 loaded\n",
      "shard_33271 loaded\n",
      "shard_10836 loaded\n",
      "shard_35044 loaded\n",
      "shard_1254 loaded\n",
      "shard_43856 loaded\n",
      "shard_15843 loaded\n",
      "shard_14255 loaded\n",
      "shard_33821 loaded\n",
      "shard_12691 loaded\n",
      "shard_20726 loaded\n",
      "shard_2333 loaded\n",
      "shard_2261 loaded\n",
      "shard_36380 loaded\n",
      "shard_12609 loaded\n",
      "shard_19789 loaded\n",
      "shard_46269 loaded\n",
      "shard_34683 loaded\n",
      "shard_37240 loaded\n",
      "shard_26689 loaded\n",
      "shard_43220 loaded\n",
      "shard_45897 loaded\n",
      "shard_10958 loaded\n",
      "shard_42142 loaded\n",
      "shard_38109 loaded\n",
      "shard_49798 loaded\n",
      "shard_5897 loaded\n",
      "shard_11572 loaded\n",
      "shard_35615 loaded\n",
      "shard_1026 loaded\n",
      "shard_25292 loaded\n",
      "shard_15595 loaded\n",
      "shard_43773 loaded\n",
      "shard_44459 loaded\n",
      "shard_14722 loaded\n",
      "shard_32485 loaded\n",
      "shard_5009 loaded\n",
      "shard_15909 loaded\n",
      "shard_12393 loaded\n",
      "shard_18602 loaded\n",
      "shard_24265 loaded\n",
      "shard_9015 loaded\n",
      "shard_25010 loaded\n",
      "shard_15144 loaded\n",
      "shard_40211 loaded\n",
      "shard_3494 loaded\n",
      "shard_41007 loaded\n",
      "shard_43269 loaded\n",
      "shard_3929 loaded\n",
      "shard_6036 loaded\n",
      "shard_3486 loaded\n",
      "shard_17314 loaded\n",
      "shard_37012 loaded\n",
      "shard_15432 loaded\n",
      "shard_7234 loaded\n",
      "shard_43507 loaded\n",
      "shard_2418 loaded\n",
      "shard_18406 loaded\n",
      "shard_28395 loaded\n",
      "shard_46229 loaded\n",
      "shard_21240 loaded\n",
      "shard_5076 loaded\n",
      "shard_23137 loaded\n",
      "shard_19829 loaded\n",
      "shard_17087 loaded\n",
      "shard_15676 loaded\n",
      "shard_18332 loaded\n",
      "shard_25830 loaded\n",
      "shard_20906 loaded\n",
      "shard_49304 loaded\n",
      "shard_10772 loaded\n",
      "shard_29409 loaded\n",
      "shard_38545 loaded\n",
      "shard_22918 loaded\n",
      "shard_4891 loaded\n",
      "shard_7551 loaded\n",
      "shard_35534 loaded\n",
      "shard_23449 loaded\n",
      "shard_12725 loaded\n",
      "shard_2701 loaded\n",
      "shard_38176 loaded\n",
      "shard_17342 loaded\n",
      "shard_6164 loaded\n",
      "shard_5452 loaded\n",
      "shard_7380 loaded\n",
      "shard_20657 loaded\n",
      "shard_32691 loaded\n",
      "shard_39274 loaded\n",
      "shard_25948 loaded\n",
      "shard_43241 loaded\n",
      "shard_40629 loaded\n",
      "shard_36823 loaded\n",
      "shard_28927 loaded\n",
      "shard_41683 loaded\n",
      "shard_13272 loaded\n",
      "shard_20101 loaded\n",
      "shard_36071 loaded\n",
      "shard_16219 loaded\n",
      "shard_13337 loaded\n",
      "shard_13550 loaded\n",
      "shard_37895 loaded\n",
      "shard_39265 loaded\n",
      "shard_13887 loaded\n",
      "shard_13114 loaded\n",
      "shard_31226 loaded\n",
      "shard_23027 loaded\n",
      "shard_26706 loaded\n",
      "shard_14884 loaded\n",
      "shard_39605 loaded\n",
      "shard_9622 loaded\n",
      "shard_18432 loaded\n",
      "shard_47278 loaded\n",
      "shard_39106 loaded\n",
      "shard_26886 loaded\n",
      "shard_4455 loaded\n",
      "shard_47259 loaded\n",
      "shard_20757 loaded\n",
      "shard_14112 loaded\n",
      "shard_25449 loaded\n",
      "shard_49748 loaded\n",
      "shard_12021 loaded\n",
      "shard_3694 loaded\n",
      "shard_31207 loaded\n",
      "shard_29525 loaded\n",
      "shard_5046 loaded\n",
      "shard_14168 loaded\n",
      "shard_42740 loaded\n",
      "shard_27338 loaded\n",
      "shard_33192 loaded\n",
      "shard_29574 loaded\n",
      "shard_3318 loaded\n",
      "shard_4285 loaded\n",
      "shard_26367 loaded\n",
      "shard_44547 loaded\n",
      "shard_35483 loaded\n",
      "shard_44626 loaded\n",
      "shard_1251 loaded\n",
      "shard_5409 loaded\n",
      "shard_21435 loaded\n",
      "shard_12679 loaded\n",
      "shard_47610 loaded\n",
      "shard_21293 loaded\n",
      "shard_21376 loaded\n",
      "shard_46979 loaded\n",
      "shard_42950 loaded\n",
      "shard_14547 loaded\n",
      "shard_7687 loaded\n",
      "shard_29546 loaded\n",
      "shard_25909 loaded\n",
      "shard_19267 loaded\n",
      "shard_46720 loaded\n",
      "shard_44258 loaded\n",
      "shard_20675 loaded\n",
      "shard_5620 loaded\n",
      "shard_43516 loaded\n",
      "shard_7345 loaded\n",
      "shard_27937 loaded\n",
      "shard_13181 loaded\n",
      "shard_32154 loaded\n",
      "shard_34996 loaded\n",
      "shard_46264 loaded\n",
      "shard_17772 loaded\n",
      "shard_44263 loaded\n",
      "shard_46044 loaded\n",
      "shard_15661 loaded\n",
      "shard_23213 loaded\n",
      "shard_2941 loaded\n",
      "shard_46371 loaded\n",
      "shard_17290 loaded\n",
      "shard_6106 loaded\n",
      "shard_43361 loaded\n",
      "shard_7107 loaded\n",
      "shard_22644 loaded\n",
      "shard_5615 loaded\n",
      "shard_28866 loaded\n",
      "shard_26362 loaded\n",
      "shard_37961 loaded\n",
      "shard_10353 loaded\n",
      "shard_39376 loaded\n",
      "shard_22083 loaded\n",
      "shard_34700 loaded\n",
      "shard_29852 loaded\n",
      "shard_47804 loaded\n",
      "shard_47686 loaded\n",
      "shard_10827 loaded\n",
      "shard_5890 loaded\n",
      "shard_44065 loaded\n",
      "shard_41091 loaded\n",
      "shard_8966 loaded\n",
      "shard_9557 loaded\n",
      "shard_14308 loaded\n",
      "shard_21041 loaded\n",
      "shard_15854 loaded\n",
      "shard_42486 loaded\n",
      "shard_22608 loaded\n",
      "shard_308 loaded\n",
      "shard_36125 loaded\n",
      "shard_48324 loaded\n",
      "shard_37038 loaded\n",
      "shard_10942 loaded\n",
      "shard_21016 loaded\n",
      "shard_10341 loaded\n",
      "shard_48982 loaded\n",
      "shard_206 loaded\n",
      "shard_19782 loaded\n",
      "shard_37726 loaded\n",
      "shard_12646 loaded\n",
      "shard_42996 loaded\n",
      "shard_19921 loaded\n",
      "shard_37386 loaded\n",
      "shard_138 loaded\n",
      "shard_46593 loaded\n",
      "shard_48938 loaded\n",
      "shard_19223 loaded\n",
      "shard_46496 loaded\n",
      "shard_31225 loaded\n",
      "shard_1497 loaded\n",
      "shard_13543 loaded\n",
      "shard_7230 loaded\n",
      "shard_29775 loaded\n",
      "shard_49273 loaded\n",
      "shard_26124 loaded\n",
      "shard_44636 loaded\n",
      "shard_45472 loaded\n",
      "shard_13578 loaded\n",
      "shard_37304 loaded\n",
      "shard_38294 loaded\n",
      "shard_43393 loaded\n",
      "shard_10575 loaded\n",
      "shard_17364 loaded\n",
      "shard_24971 loaded\n",
      "shard_12859 loaded\n",
      "shard_37316 loaded\n",
      "shard_24878 loaded\n",
      "shard_17576 loaded\n",
      "shard_11042 loaded\n",
      "shard_31268 loaded\n",
      "shard_13110 loaded\n",
      "shard_33579 loaded\n",
      "shard_34537 loaded\n",
      "shard_31549 loaded\n",
      "shard_12839 loaded\n",
      "shard_41766 loaded\n",
      "shard_29900 loaded\n",
      "shard_21886 loaded\n",
      "shard_17880 loaded\n",
      "shard_46046 loaded\n",
      "shard_15684 loaded\n",
      "shard_44467 loaded\n",
      "shard_36139 loaded\n",
      "shard_28135 loaded\n",
      "shard_9937 loaded\n",
      "shard_48770 loaded\n",
      "shard_23022 loaded\n",
      "shard_23989 loaded\n",
      "shard_31632 loaded\n",
      "shard_43187 loaded\n",
      "shard_4024 loaded\n",
      "shard_1321 loaded\n",
      "shard_553 loaded\n",
      "shard_34374 loaded\n",
      "shard_41968 loaded\n",
      "shard_38740 loaded\n",
      "shard_22848 loaded\n",
      "shard_45246 loaded\n",
      "shard_47383 loaded\n",
      "shard_35691 loaded\n",
      "shard_46114 loaded\n",
      "shard_16733 loaded\n",
      "shard_41940 loaded\n",
      "shard_22428 loaded\n",
      "shard_25481 loaded\n",
      "shard_13952 loaded\n",
      "shard_25399 loaded\n",
      "shard_46090 loaded\n",
      "shard_36696 loaded\n",
      "shard_25499 loaded\n",
      "shard_40378 loaded\n",
      "shard_48050 loaded\n",
      "shard_15267 loaded\n",
      "shard_15181 loaded\n",
      "shard_33123 loaded\n",
      "shard_38367 loaded\n",
      "shard_3780 loaded\n",
      "shard_9615 loaded\n",
      "shard_24115 loaded\n",
      "shard_43408 loaded\n",
      "shard_15356 loaded\n",
      "shard_17743 loaded\n",
      "shard_47252 loaded\n",
      "shard_36012 loaded\n",
      "shard_44282 loaded\n",
      "shard_36699 loaded\n",
      "shard_40527 loaded\n",
      "shard_9929 loaded\n",
      "shard_2433 loaded\n",
      "shard_38333 loaded\n",
      "shard_16613 loaded\n",
      "shard_9154 loaded\n",
      "shard_10051 loaded\n",
      "shard_35777 loaded\n",
      "shard_12239 loaded\n",
      "shard_2070 loaded\n",
      "shard_14960 loaded\n",
      "shard_45126 loaded\n",
      "shard_23829 loaded\n",
      "shard_10976 loaded\n",
      "shard_26719 loaded\n",
      "shard_16005 loaded\n",
      "shard_34779 loaded\n",
      "shard_19873 loaded\n",
      "shard_12322 loaded\n",
      "shard_36052 loaded\n",
      "shard_13834 loaded\n",
      "shard_16597 loaded\n",
      "shard_40319 loaded\n",
      "shard_45869 loaded\n",
      "shard_26644 loaded\n",
      "shard_5532 loaded\n",
      "shard_8899 loaded\n",
      "shard_1528 loaded\n",
      "shard_22679 loaded\n",
      "shard_5110 loaded\n",
      "shard_17589 loaded\n",
      "shard_4284 loaded\n",
      "shard_41700 loaded\n",
      "shard_24905 loaded\n",
      "shard_7461 loaded\n",
      "shard_23688 loaded\n",
      "shard_31968 loaded\n",
      "shard_28027 loaded\n",
      "shard_42726 loaded\n",
      "shard_28925 loaded\n",
      "shard_32268 loaded\n",
      "shard_18081 loaded\n",
      "shard_18568 loaded\n",
      "shard_40673 loaded\n",
      "shard_39702 loaded\n",
      "shard_4131 loaded\n",
      "shard_21048 loaded\n",
      "shard_31496 loaded\n",
      "shard_19531 loaded\n",
      "shard_28742 loaded\n",
      "shard_1239 loaded\n",
      "shard_2174 loaded\n",
      "shard_13738 loaded\n",
      "shard_1548 loaded\n",
      "shard_49265 loaded\n",
      "shard_19248 loaded\n",
      "shard_1855 loaded\n",
      "shard_41320 loaded\n",
      "shard_14540 loaded\n",
      "shard_22113 loaded\n",
      "shard_22152 loaded\n",
      "shard_16891 loaded\n",
      "shard_6904 loaded\n",
      "shard_19013 loaded\n",
      "shard_36238 loaded\n",
      "shard_4200 loaded\n",
      "shard_30703 loaded\n",
      "shard_6938 loaded\n",
      "shard_28696 loaded\n",
      "shard_42075 loaded\n",
      "shard_21821 loaded\n",
      "shard_41067 loaded\n",
      "shard_42713 loaded\n",
      "shard_10667 loaded\n",
      "shard_6407 loaded\n",
      "shard_8937 loaded\n",
      "shard_29815 loaded\n",
      "shard_21302 loaded\n",
      "shard_8324 loaded\n",
      "shard_21657 loaded\n",
      "shard_37388 loaded\n",
      "shard_26512 loaded\n",
      "shard_44781 loaded\n",
      "shard_46876 loaded\n",
      "shard_25837 loaded\n",
      "shard_46242 loaded\n",
      "shard_32674 loaded\n",
      "shard_33675 loaded\n",
      "shard_39396 loaded\n",
      "shard_26156 loaded\n",
      "shard_29741 loaded\n",
      "shard_40808 loaded\n",
      "shard_49450 loaded\n",
      "shard_35984 loaded\n",
      "shard_23303 loaded\n",
      "shard_15930 loaded\n",
      "shard_46804 loaded\n",
      "shard_31685 loaded\n",
      "shard_9848 loaded\n",
      "shard_47096 loaded\n",
      "shard_27342 loaded\n",
      "shard_9628 loaded\n",
      "shard_6936 loaded\n",
      "shard_45809 loaded\n",
      "shard_42692 loaded\n",
      "shard_41371 loaded\n",
      "shard_29346 loaded\n",
      "shard_34617 loaded\n",
      "shard_27354 loaded\n",
      "shard_9200 loaded\n",
      "shard_48649 loaded\n",
      "shard_5519 loaded\n",
      "shard_30893 loaded\n",
      "shard_1508 loaded\n",
      "shard_31348 loaded\n",
      "shard_8772 loaded\n",
      "shard_8221 loaded\n",
      "shard_5496 loaded\n",
      "shard_47005 loaded\n",
      "shard_28445 loaded\n",
      "shard_21355 loaded\n",
      "shard_11620 loaded\n",
      "shard_9410 loaded\n",
      "shard_27357 loaded\n",
      "shard_35771 loaded\n",
      "shard_20795 loaded\n",
      "shard_26551 loaded\n",
      "shard_13907 loaded\n",
      "shard_37128 loaded\n",
      "shard_48812 loaded\n",
      "shard_17918 loaded\n",
      "shard_37671 loaded\n",
      "shard_39051 loaded\n",
      "shard_19330 loaded\n",
      "shard_12101 loaded\n",
      "shard_3553 loaded\n",
      "shard_28528 loaded\n",
      "shard_19659 loaded\n",
      "shard_7883 loaded\n",
      "shard_23955 loaded\n",
      "shard_8364 loaded\n",
      "shard_14475 loaded\n",
      "shard_20119 loaded\n",
      "shard_28309 loaded\n",
      "shard_12123 loaded\n",
      "shard_40663 loaded\n",
      "shard_33559 loaded\n",
      "shard_46918 loaded\n",
      "shard_16633 loaded\n",
      "shard_17911 loaded\n",
      "shard_38779 loaded\n",
      "shard_39406 loaded\n",
      "shard_14460 loaded\n",
      "shard_46296 loaded\n",
      "shard_23906 loaded\n",
      "shard_39737 loaded\n",
      "shard_12222 loaded\n",
      "shard_6896 loaded\n",
      "shard_28469 loaded\n",
      "shard_12458 loaded\n",
      "shard_10938 loaded\n",
      "shard_48 loaded\n",
      "shard_35361 loaded\n",
      "shard_37104 loaded\n",
      "shard_3640 loaded\n",
      "shard_192 loaded\n",
      "shard_27187 loaded\n",
      "shard_12366 loaded\n",
      "shard_2478 loaded\n",
      "shard_36329 loaded\n",
      "shard_46372 loaded\n",
      "shard_43203 loaded\n",
      "shard_4950 loaded\n",
      "shard_47691 loaded\n",
      "shard_8779 loaded\n",
      "shard_1717 loaded\n",
      "shard_1371 loaded\n",
      "shard_18108 loaded\n",
      "shard_15389 loaded\n",
      "shard_24069 loaded\n",
      "shard_28619 loaded\n",
      "shard_25013 loaded\n",
      "shard_22405 loaded\n",
      "shard_15592 loaded\n",
      "shard_39269 loaded\n",
      "shard_8788 loaded\n",
      "shard_35659 loaded\n",
      "shard_5419 loaded\n",
      "shard_7403 loaded\n",
      "shard_5528 loaded\n",
      "shard_32257 loaded\n",
      "shard_48907 loaded\n",
      "shard_8356 loaded\n",
      "shard_35280 loaded\n",
      "shard_44239 loaded\n",
      "shard_26960 loaded\n",
      "shard_13161 loaded\n",
      "shard_15542 loaded\n",
      "shard_2132 loaded\n",
      "shard_7988 loaded\n",
      "shard_14381 loaded\n",
      "shard_19448 loaded\n",
      "shard_47121 loaded\n",
      "shard_15148 loaded\n",
      "shard_41783 loaded\n",
      "shard_20112 loaded\n",
      "shard_44969 loaded\n",
      "shard_42827 loaded\n",
      "shard_11128 loaded\n",
      "shard_29887 loaded\n",
      "shard_3139 loaded\n",
      "shard_34396 loaded\n",
      "shard_5463 loaded\n",
      "shard_887 loaded\n",
      "shard_37694 loaded\n",
      "shard_39962 loaded\n",
      "shard_25494 loaded\n",
      "shard_18583 loaded\n",
      "shard_14481 loaded\n",
      "shard_35793 loaded\n",
      "shard_25696 loaded\n",
      "shard_36214 loaded\n",
      "shard_29465 loaded\n",
      "shard_48415 loaded\n",
      "shard_3436 loaded\n",
      "shard_43330 loaded\n",
      "shard_441 loaded\n",
      "shard_11595 loaded\n",
      "shard_11290 loaded\n",
      "shard_40806 loaded\n",
      "shard_15541 loaded\n",
      "shard_48133 loaded\n",
      "shard_47555 loaded\n",
      "shard_3281 loaded\n",
      "shard_48037 loaded\n",
      "shard_23854 loaded\n",
      "shard_4257 loaded\n",
      "shard_30247 loaded\n",
      "shard_34094 loaded\n",
      "shard_14118 loaded\n",
      "shard_32140 loaded\n",
      "shard_38187 loaded\n",
      "shard_38702 loaded\n",
      "shard_45451 loaded\n",
      "shard_9820 loaded\n",
      "shard_20770 loaded\n",
      "shard_48970 loaded\n",
      "shard_29936 loaded\n",
      "shard_10061 loaded\n",
      "shard_3796 loaded\n",
      "shard_36509 loaded\n",
      "shard_17953 loaded\n",
      "shard_42900 loaded\n",
      "shard_15609 loaded\n",
      "shard_10924 loaded\n",
      "shard_23091 loaded\n",
      "shard_849 loaded\n",
      "shard_21830 loaded\n",
      "shard_31068 loaded\n",
      "shard_46579 loaded\n",
      "shard_23501 loaded\n",
      "shard_34163 loaded\n",
      "shard_924 loaded\n",
      "shard_35994 loaded\n",
      "shard_12002 loaded\n",
      "shard_40873 loaded\n",
      "shard_10678 loaded\n",
      "shard_3509 loaded\n",
      "shard_5824 loaded\n",
      "shard_40363 loaded\n",
      "shard_3989 loaded\n",
      "shard_40063 loaded\n",
      "shard_2235 loaded\n",
      "shard_32121 loaded\n",
      "shard_29937 loaded\n",
      "shard_26217 loaded\n",
      "shard_32502 loaded\n",
      "shard_31553 loaded\n",
      "shard_9890 loaded\n",
      "shard_43084 loaded\n",
      "shard_19294 loaded\n",
      "shard_29603 loaded\n",
      "shard_22963 loaded\n",
      "shard_25723 loaded\n",
      "shard_1871 loaded\n",
      "shard_23061 loaded\n",
      "shard_18917 loaded\n",
      "shard_29113 loaded\n",
      "shard_37150 loaded\n",
      "shard_13718 loaded\n",
      "shard_14931 loaded\n",
      "shard_27448 loaded\n",
      "shard_4975 loaded\n",
      "shard_38324 loaded\n",
      "shard_17924 loaded\n",
      "shard_13378 loaded\n",
      "shard_40962 loaded\n",
      "shard_880 loaded\n",
      "shard_37031 loaded\n",
      "shard_47172 loaded\n",
      "shard_29728 loaded\n",
      "shard_48555 loaded\n",
      "shard_36472 loaded\n",
      "shard_36797 loaded\n",
      "shard_32453 loaded\n",
      "shard_34586 loaded\n",
      "shard_38008 loaded\n",
      "shard_5827 loaded\n",
      "shard_42121 loaded\n",
      "shard_23788 loaded\n",
      "shard_41583 loaded\n",
      "shard_509 loaded\n",
      "shard_10670 loaded\n",
      "shard_7071 loaded\n",
      "shard_39423 loaded\n",
      "shard_17428 loaded\n",
      "shard_41608 loaded\n",
      "shard_19841 loaded\n",
      "shard_29509 loaded\n",
      "shard_2699 loaded\n",
      "shard_19272 loaded\n",
      "shard_35775 loaded\n",
      "shard_42441 loaded\n",
      "shard_28498 loaded\n",
      "shard_21313 loaded\n",
      "shard_41433 loaded\n",
      "shard_37896 loaded\n",
      "shard_42530 loaded\n",
      "shard_4565 loaded\n",
      "shard_21510 loaded\n",
      "shard_40352 loaded\n",
      "shard_46359 loaded\n",
      "shard_26874 loaded\n",
      "shard_5535 loaded\n",
      "shard_11060 loaded\n",
      "shard_26972 loaded\n",
      "shard_15311 loaded\n",
      "shard_17375 loaded\n",
      "shard_28623 loaded\n",
      "shard_29396 loaded\n",
      "shard_299 loaded\n",
      "shard_12296 loaded\n",
      "shard_23436 loaded\n",
      "shard_39735 loaded\n",
      "shard_4318 loaded\n",
      "shard_16783 loaded\n",
      "shard_35572 loaded\n",
      "shard_30205 loaded\n",
      "shard_14859 loaded\n",
      "shard_30419 loaded\n",
      "shard_14993 loaded\n",
      "shard_49320 loaded\n",
      "shard_33177 loaded\n",
      "shard_40253 loaded\n",
      "shard_42722 loaded\n",
      "shard_2881 loaded\n",
      "shard_17256 loaded\n",
      "shard_11684 loaded\n",
      "shard_8676 loaded\n",
      "shard_28130 loaded\n",
      "shard_4851 loaded\n",
      "shard_29499 loaded\n",
      "shard_13781 loaded\n",
      "shard_4660 loaded\n",
      "shard_3932 loaded\n",
      "shard_11698 loaded\n",
      "shard_8808 loaded\n",
      "shard_11744 loaded\n",
      "shard_907 loaded\n",
      "shard_30650 loaded\n",
      "shard_1586 loaded\n",
      "shard_31269 loaded\n",
      "shard_5022 loaded\n",
      "shard_10446 loaded\n",
      "shard_39163 loaded\n",
      "shard_1124 loaded\n",
      "shard_46502 loaded\n",
      "shard_29962 loaded\n",
      "shard_38993 loaded\n",
      "shard_44078 loaded\n",
      "shard_2126 loaded\n",
      "shard_47809 loaded\n",
      "shard_3843 loaded\n",
      "shard_25939 loaded\n",
      "shard_48554 loaded\n",
      "shard_35670 loaded\n",
      "shard_39467 loaded\n",
      "shard_47774 loaded\n",
      "shard_37385 loaded\n",
      "shard_35419 loaded\n",
      "shard_12658 loaded\n",
      "shard_24153 loaded\n",
      "shard_10491 loaded\n",
      "shard_12093 loaded\n",
      "shard_40185 loaded\n",
      "shard_324 loaded\n",
      "shard_31033 loaded\n",
      "shard_22936 loaded\n",
      "shard_316 loaded\n",
      "shard_39725 loaded\n",
      "shard_10542 loaded\n",
      "shard_25243 loaded\n",
      "shard_41265 loaded\n",
      "shard_35137 loaded\n",
      "shard_29658 loaded\n",
      "shard_23608 loaded\n",
      "shard_5329 loaded\n",
      "shard_27141 loaded\n",
      "shard_1804 loaded\n",
      "shard_15033 loaded\n",
      "shard_25576 loaded\n",
      "shard_33112 loaded\n",
      "shard_7317 loaded\n",
      "shard_947 loaded\n",
      "shard_6597 loaded\n",
      "shard_38121 loaded\n",
      "shard_18888 loaded\n",
      "shard_42028 loaded\n",
      "shard_9485 loaded\n",
      "shard_29989 loaded\n",
      "shard_24597 loaded\n",
      "shard_43998 loaded\n",
      "shard_2887 loaded\n",
      "shard_37569 loaded\n",
      "shard_22955 loaded\n",
      "shard_37741 loaded\n",
      "shard_25805 loaded\n",
      "shard_31751 loaded\n",
      "shard_1214 loaded\n",
      "shard_40121 loaded\n",
      "shard_35344 loaded\n",
      "shard_15504 loaded\n",
      "shard_35034 loaded\n",
      "shard_10817 loaded\n",
      "shard_6316 loaded\n",
      "shard_9753 loaded\n",
      "shard_26533 loaded\n",
      "shard_15474 loaded\n",
      "shard_10908 loaded\n",
      "shard_23637 loaded\n",
      "shard_34942 loaded\n",
      "shard_21159 loaded\n",
      "shard_48160 loaded\n",
      "shard_8352 loaded\n",
      "shard_16006 loaded\n",
      "shard_24832 loaded\n",
      "shard_27312 loaded\n",
      "shard_34723 loaded\n",
      "shard_45446 loaded\n",
      "shard_47387 loaded\n",
      "shard_6790 loaded\n",
      "shard_30840 loaded\n",
      "shard_46489 loaded\n",
      "shard_31585 loaded\n",
      "shard_2095 loaded\n",
      "shard_39834 loaded\n",
      "shard_25799 loaded\n",
      "shard_38631 loaded\n",
      "shard_36107 loaded\n",
      "shard_18862 loaded\n",
      "shard_19022 loaded\n",
      "shard_35170 loaded\n",
      "shard_19399 loaded\n",
      "shard_38904 loaded\n",
      "shard_27026 loaded\n",
      "shard_30900 loaded\n",
      "shard_5404 loaded\n",
      "shard_44088 loaded\n",
      "shard_49006 loaded\n",
      "shard_24130 loaded\n",
      "shard_3381 loaded\n",
      "shard_38707 loaded\n",
      "shard_33040 loaded\n",
      "shard_37754 loaded\n",
      "shard_3452 loaded\n",
      "shard_26090 loaded\n",
      "shard_34339 loaded\n",
      "shard_4190 loaded\n",
      "shard_28889 loaded\n",
      "shard_27027 loaded\n",
      "shard_29491 loaded\n",
      "shard_49548 loaded\n",
      "shard_8295 loaded\n",
      "shard_24576 loaded\n",
      "shard_5541 loaded\n",
      "shard_4323 loaded\n",
      "shard_9085 loaded\n",
      "shard_14602 loaded\n",
      "shard_44440 loaded\n",
      "shard_30685 loaded\n",
      "shard_37267 loaded\n",
      "shard_931 loaded\n",
      "shard_21697 loaded\n",
      "shard_8933 loaded\n",
      "shard_15968 loaded\n",
      "shard_47154 loaded\n",
      "shard_15781 loaded\n",
      "shard_39947 loaded\n",
      "shard_39262 loaded\n",
      "shard_1160 loaded\n",
      "shard_25985 loaded\n",
      "shard_2339 loaded\n",
      "shard_34721 loaded\n",
      "shard_24799 loaded\n",
      "shard_39821 loaded\n",
      "shard_20384 loaded\n",
      "shard_46199 loaded\n",
      "shard_42120 loaded\n",
      "shard_22864 loaded\n",
      "shard_8205 loaded\n",
      "shard_30080 loaded\n",
      "shard_14768 loaded\n",
      "shard_22262 loaded\n",
      "shard_31337 loaded\n",
      "shard_28555 loaded\n",
      "shard_43557 loaded\n",
      "shard_30304 loaded\n",
      "shard_20707 loaded\n",
      "shard_9373 loaded\n",
      "shard_33246 loaded\n",
      "shard_43208 loaded\n",
      "shard_6707 loaded\n",
      "shard_12582 loaded\n",
      "shard_11082 loaded\n",
      "shard_21080 loaded\n",
      "shard_49552 loaded\n",
      "shard_15385 loaded\n",
      "shard_15740 loaded\n",
      "shard_28527 loaded\n",
      "shard_7227 loaded\n",
      "shard_40503 loaded\n",
      "shard_13574 loaded\n",
      "shard_16308 loaded\n",
      "shard_44635 loaded\n",
      "shard_18550 loaded\n",
      "shard_26556 loaded\n",
      "shard_14857 loaded\n",
      "shard_13765 loaded\n",
      "shard_27547 loaded\n",
      "shard_2518 loaded\n",
      "shard_20418 loaded\n",
      "shard_23607 loaded\n",
      "shard_14616 loaded\n",
      "shard_17785 loaded\n",
      "shard_28977 loaded\n",
      "shard_32905 loaded\n",
      "shard_5234 loaded\n",
      "shard_4057 loaded\n",
      "shard_39225 loaded\n",
      "shard_35754 loaded\n",
      "shard_20896 loaded\n",
      "shard_13711 loaded\n",
      "shard_4208 loaded\n",
      "shard_26762 loaded\n",
      "shard_42118 loaded\n",
      "shard_11801 loaded\n",
      "shard_19819 loaded\n",
      "shard_31374 loaded\n",
      "shard_46416 loaded\n",
      "shard_33042 loaded\n",
      "shard_13100 loaded\n",
      "shard_49201 loaded\n",
      "shard_13462 loaded\n",
      "shard_39155 loaded\n",
      "shard_10915 loaded\n",
      "shard_37776 loaded\n",
      "shard_16037 loaded\n",
      "shard_2289 loaded\n",
      "shard_44475 loaded\n",
      "shard_35192 loaded\n",
      "shard_33522 loaded\n",
      "shard_34161 loaded\n",
      "shard_23592 loaded\n",
      "shard_44640 loaded\n",
      "shard_19413 loaded\n",
      "shard_46461 loaded\n",
      "shard_32514 loaded\n",
      "shard_44380 loaded\n",
      "shard_38370 loaded\n",
      "shard_12512 loaded\n",
      "shard_24932 loaded\n",
      "shard_31667 loaded\n",
      "shard_14261 loaded\n",
      "shard_1088 loaded\n",
      "shard_43494 loaded\n",
      "shard_14049 loaded\n",
      "shard_40765 loaded\n",
      "shard_46209 loaded\n",
      "shard_16700 loaded\n",
      "shard_27535 loaded\n",
      "shard_46722 loaded\n",
      "shard_2301 loaded\n",
      "shard_1737 loaded\n",
      "shard_28024 loaded\n",
      "shard_3326 loaded\n",
      "shard_38196 loaded\n",
      "shard_43802 loaded\n",
      "shard_2742 loaded\n",
      "shard_33725 loaded\n",
      "shard_32687 loaded\n",
      "shard_5071 loaded\n",
      "shard_13431 loaded\n",
      "shard_27654 loaded\n",
      "shard_30538 loaded\n",
      "shard_8108 loaded\n",
      "shard_9769 loaded\n",
      "shard_37322 loaded\n",
      "shard_8453 loaded\n",
      "shard_26293 loaded\n",
      "shard_22418 loaded\n",
      "shard_10856 loaded\n",
      "shard_33679 loaded\n",
      "shard_48088 loaded\n",
      "shard_38137 loaded\n",
      "shard_23394 loaded\n",
      "shard_18116 loaded\n",
      "shard_47339 loaded\n",
      "shard_33364 loaded\n",
      "shard_38544 loaded\n",
      "shard_1569 loaded\n",
      "shard_23218 loaded\n",
      "shard_40215 loaded\n",
      "shard_31602 loaded\n",
      "shard_48837 loaded\n",
      "shard_23196 loaded\n",
      "shard_21938 loaded\n",
      "shard_32364 loaded\n",
      "shard_11298 loaded\n",
      "shard_5717 loaded\n",
      "shard_11647 loaded\n",
      "shard_49649 loaded\n",
      "shard_3912 loaded\n",
      "shard_40877 loaded\n",
      "shard_46364 loaded\n",
      "shard_11585 loaded\n",
      "shard_3180 loaded\n",
      "shard_38397 loaded\n",
      "shard_24396 loaded\n",
      "shard_35349 loaded\n",
      "shard_22457 loaded\n",
      "shard_4032 loaded\n",
      "shard_7765 loaded\n",
      "shard_22842 loaded\n",
      "shard_20335 loaded\n",
      "shard_28472 loaded\n",
      "shard_12189 loaded\n",
      "shard_9405 loaded\n",
      "shard_49653 loaded\n",
      "shard_22889 loaded\n",
      "shard_23004 loaded\n",
      "shard_13050 loaded\n",
      "shard_2853 loaded\n",
      "shard_29838 loaded\n",
      "shard_45971 loaded\n",
      "shard_13653 loaded\n",
      "shard_43633 loaded\n",
      "shard_30222 loaded\n",
      "shard_5736 loaded\n",
      "shard_28930 loaded\n",
      "shard_9662 loaded\n",
      "shard_49654 loaded\n",
      "shard_24496 loaded\n",
      "shard_3437 loaded\n",
      "shard_11653 loaded\n",
      "shard_33434 loaded\n",
      "shard_4463 loaded\n",
      "shard_32716 loaded\n",
      "shard_47314 loaded\n",
      "shard_23937 loaded\n",
      "shard_49311 loaded\n",
      "shard_31780 loaded\n",
      "shard_36267 loaded\n",
      "shard_49007 loaded\n",
      "shard_25908 loaded\n",
      "shard_1667 loaded\n",
      "shard_23299 loaded\n",
      "shard_1760 loaded\n",
      "shard_46020 loaded\n",
      "shard_30555 loaded\n",
      "shard_22377 loaded\n",
      "shard_21914 loaded\n",
      "shard_17907 loaded\n",
      "shard_32519 loaded\n",
      "shard_3103 loaded\n",
      "shard_24797 loaded\n",
      "shard_24617 loaded\n",
      "shard_32462 loaded\n",
      "shard_9009 loaded\n",
      "shard_16620 loaded\n",
      "shard_3237 loaded\n",
      "shard_14197 loaded\n",
      "shard_32885 loaded\n",
      "shard_19657 loaded\n",
      "shard_47139 loaded\n",
      "shard_36893 loaded\n",
      "shard_40897 loaded\n",
      "shard_35867 loaded\n",
      "shard_1641 loaded\n",
      "shard_19766 loaded\n",
      "shard_9113 loaded\n",
      "shard_13950 loaded\n",
      "shard_9927 loaded\n",
      "shard_3496 loaded\n",
      "shard_42596 loaded\n",
      "shard_12813 loaded\n",
      "shard_31571 loaded\n",
      "shard_27944 loaded\n",
      "shard_10610 loaded\n",
      "shard_37802 loaded\n",
      "shard_45683 loaded\n",
      "shard_42284 loaded\n",
      "shard_32216 loaded\n",
      "shard_43042 loaded\n",
      "shard_5357 loaded\n",
      "shard_26133 loaded\n",
      "shard_35551 loaded\n",
      "shard_30221 loaded\n",
      "shard_25456 loaded\n",
      "shard_42634 loaded\n",
      "shard_13183 loaded\n",
      "shard_27571 loaded\n",
      "shard_45586 loaded\n",
      "shard_43711 loaded\n",
      "shard_17277 loaded\n",
      "shard_22787 loaded\n",
      "shard_33104 loaded\n",
      "shard_1233 loaded\n",
      "shard_23000 loaded\n",
      "shard_44681 loaded\n",
      "shard_21397 loaded\n",
      "shard_43913 loaded\n",
      "shard_29653 loaded\n",
      "shard_41601 loaded\n",
      "shard_5605 loaded\n",
      "shard_44743 loaded\n",
      "shard_12249 loaded\n",
      "shard_22450 loaded\n",
      "shard_37324 loaded\n",
      "shard_34378 loaded\n",
      "shard_34324 loaded\n",
      "shard_43641 loaded\n",
      "shard_18842 loaded\n",
      "shard_21436 loaded\n",
      "shard_45540 loaded\n",
      "shard_48785 loaded\n",
      "shard_45062 loaded\n",
      "shard_2779 loaded\n",
      "shard_10537 loaded\n",
      "shard_32147 loaded\n",
      "shard_35047 loaded\n",
      "shard_4545 loaded\n",
      "shard_30715 loaded\n",
      "shard_31538 loaded\n",
      "shard_35323 loaded\n",
      "shard_4898 loaded\n",
      "shard_1216 loaded\n",
      "shard_12754 loaded\n",
      "shard_25171 loaded\n",
      "shard_195 loaded\n",
      "shard_45909 loaded\n",
      "shard_27576 loaded\n",
      "shard_14181 loaded\n",
      "shard_25409 loaded\n",
      "shard_30028 loaded\n",
      "shard_49421 loaded\n",
      "shard_37514 loaded\n",
      "shard_44588 loaded\n",
      "shard_2072 loaded\n",
      "shard_23866 loaded\n",
      "shard_5686 loaded\n",
      "shard_36002 loaded\n",
      "shard_22385 loaded\n",
      "shard_16564 loaded\n",
      "shard_29901 loaded\n",
      "shard_5553 loaded\n",
      "shard_12040 loaded\n",
      "shard_48684 loaded\n",
      "shard_49754 loaded\n",
      "shard_45591 loaded\n",
      "shard_11157 loaded\n",
      "shard_5432 loaded\n",
      "shard_41131 loaded\n",
      "shard_14310 loaded\n",
      "shard_35928 loaded\n",
      "shard_40038 loaded\n",
      "shard_8150 loaded\n",
      "shard_9287 loaded\n",
      "shard_40635 loaded\n",
      "shard_48853 loaded\n",
      "shard_16094 loaded\n",
      "shard_9155 loaded\n",
      "shard_45276 loaded\n",
      "shard_4779 loaded\n",
      "shard_38945 loaded\n",
      "shard_28394 loaded\n",
      "shard_29077 loaded\n",
      "shard_24636 loaded\n",
      "shard_5033 loaded\n",
      "shard_36141 loaded\n",
      "shard_38426 loaded\n",
      "shard_29824 loaded\n",
      "shard_10660 loaded\n",
      "shard_45151 loaded\n",
      "shard_20369 loaded\n",
      "shard_38433 loaded\n",
      "shard_24914 loaded\n",
      "shard_29904 loaded\n",
      "shard_8520 loaded\n",
      "shard_27249 loaded\n",
      "shard_42134 loaded\n",
      "shard_27065 loaded\n",
      "shard_25916 loaded\n",
      "shard_33594 loaded\n",
      "shard_48819 loaded\n",
      "shard_16591 loaded\n",
      "shard_34607 loaded\n",
      "shard_14147 loaded\n",
      "shard_18972 loaded\n",
      "shard_19964 loaded\n",
      "shard_22112 loaded\n",
      "shard_9153 loaded\n",
      "shard_34101 loaded\n",
      "shard_4643 loaded\n",
      "shard_49855 loaded\n",
      "shard_24910 loaded\n",
      "shard_12429 loaded\n",
      "shard_34574 loaded\n",
      "shard_7538 loaded\n",
      "shard_21446 loaded\n",
      "shard_38455 loaded\n",
      "shard_16922 loaded\n",
      "shard_25139 loaded\n",
      "shard_16206 loaded\n",
      "shard_6914 loaded\n",
      "shard_43762 loaded\n",
      "shard_34667 loaded\n",
      "shard_26041 loaded\n",
      "shard_10893 loaded\n",
      "shard_24889 loaded\n",
      "shard_35511 loaded\n",
      "shard_8577 loaded\n",
      "shard_30860 loaded\n",
      "shard_31783 loaded\n",
      "shard_29716 loaded\n",
      "shard_20212 loaded\n",
      "shard_18378 loaded\n",
      "shard_15696 loaded\n",
      "shard_42524 loaded\n",
      "shard_22553 loaded\n",
      "shard_35965 loaded\n",
      "shard_37069 loaded\n",
      "shard_33289 loaded\n",
      "shard_6121 loaded\n",
      "shard_5554 loaded\n",
      "shard_5983 loaded\n",
      "shard_14561 loaded\n",
      "shard_2404 loaded\n",
      "shard_9100 loaded\n",
      "shard_37399 loaded\n",
      "shard_12045 loaded\n",
      "shard_21950 loaded\n",
      "shard_11135 loaded\n",
      "shard_31941 loaded\n",
      "shard_41614 loaded\n",
      "shard_35338 loaded\n",
      "shard_6142 loaded\n",
      "shard_17024 loaded\n",
      "shard_20416 loaded\n",
      "shard_40149 loaded\n",
      "shard_31814 loaded\n",
      "shard_17813 loaded\n",
      "shard_41368 loaded\n",
      "shard_32577 loaded\n",
      "shard_33421 loaded\n",
      "shard_45184 loaded\n",
      "shard_23026 loaded\n",
      "shard_44141 loaded\n",
      "shard_19856 loaded\n",
      "shard_30285 loaded\n",
      "shard_8884 loaded\n",
      "shard_26742 loaded\n",
      "shard_11001 loaded\n",
      "shard_14920 loaded\n",
      "shard_13424 loaded\n",
      "shard_49279 loaded\n",
      "shard_6081 loaded\n",
      "shard_4983 loaded\n",
      "shard_817 loaded\n",
      "shard_28598 loaded\n",
      "shard_30257 loaded\n",
      "shard_44955 loaded\n",
      "shard_3026 loaded\n",
      "shard_35236 loaded\n",
      "shard_2153 loaded\n",
      "shard_38856 loaded\n",
      "shard_49905 loaded\n",
      "shard_35452 loaded\n",
      "shard_19528 loaded\n",
      "shard_39590 loaded\n",
      "shard_19889 loaded\n",
      "shard_38277 loaded\n",
      "shard_9582 loaded\n",
      "shard_36832 loaded\n",
      "shard_40668 loaded\n",
      "shard_39473 loaded\n",
      "shard_35031 loaded\n",
      "shard_29 loaded\n",
      "shard_20844 loaded\n",
      "shard_41648 loaded\n",
      "shard_44365 loaded\n",
      "shard_38252 loaded\n",
      "shard_30838 loaded\n",
      "shard_14114 loaded\n",
      "shard_7063 loaded\n",
      "shard_8121 loaded\n",
      "shard_3717 loaded\n",
      "shard_36076 loaded\n",
      "shard_40465 loaded\n",
      "shard_19144 loaded\n",
      "shard_28712 loaded\n",
      "shard_9411 loaded\n",
      "shard_16735 loaded\n",
      "shard_28329 loaded\n",
      "shard_34181 loaded\n",
      "shard_7149 loaded\n",
      "shard_13945 loaded\n",
      "shard_10092 loaded\n",
      "shard_2233 loaded\n",
      "shard_33270 loaded\n",
      "shard_21525 loaded\n",
      "shard_48148 loaded\n",
      "shard_28684 loaded\n",
      "shard_49578 loaded\n",
      "shard_18549 loaded\n",
      "shard_31445 loaded\n",
      "shard_41679 loaded\n",
      "shard_31110 loaded\n",
      "shard_46087 loaded\n",
      "shard_17203 loaded\n",
      "shard_31197 loaded\n",
      "shard_31248 loaded\n",
      "shard_1869 loaded\n",
      "shard_1127 loaded\n",
      "shard_8541 loaded\n",
      "shard_25788 loaded\n",
      "shard_17430 loaded\n",
      "shard_2617 loaded\n",
      "shard_38412 loaded\n",
      "shard_37415 loaded\n",
      "shard_6463 loaded\n",
      "shard_26676 loaded\n",
      "shard_49806 loaded\n",
      "shard_37487 loaded\n",
      "shard_18486 loaded\n",
      "shard_10632 loaded\n",
      "shard_5262 loaded\n",
      "shard_31359 loaded\n",
      "shard_32981 loaded\n",
      "shard_44816 loaded\n",
      "shard_18735 loaded\n",
      "shard_27860 loaded\n",
      "shard_33154 loaded\n",
      "shard_10853 loaded\n",
      "shard_49648 loaded\n",
      "shard_29348 loaded\n",
      "shard_4641 loaded\n",
      "shard_11844 loaded\n",
      "shard_1555 loaded\n",
      "shard_29158 loaded\n",
      "shard_5160 loaded\n",
      "shard_19529 loaded\n",
      "shard_4246 loaded\n",
      "shard_22754 loaded\n",
      "shard_45261 loaded\n",
      "shard_43001 loaded\n",
      "shard_2338 loaded\n",
      "shard_16982 loaded\n",
      "shard_10432 loaded\n",
      "shard_6558 loaded\n",
      "shard_41627 loaded\n",
      "shard_7941 loaded\n",
      "shard_8504 loaded\n",
      "shard_12583 loaded\n",
      "shard_18446 loaded\n",
      "shard_12212 loaded\n",
      "shard_18485 loaded\n",
      "shard_27893 loaded\n",
      "shard_105 loaded\n",
      "shard_35003 loaded\n",
      "shard_45649 loaded\n",
      "shard_7352 loaded\n",
      "shard_31360 loaded\n",
      "shard_49130 loaded\n",
      "shard_17805 loaded\n",
      "shard_17088 loaded\n",
      "shard_35440 loaded\n",
      "shard_7775 loaded\n",
      "shard_467 loaded\n",
      "shard_20564 loaded\n",
      "shard_35841 loaded\n",
      "shard_27318 loaded\n",
      "shard_9244 loaded\n",
      "shard_15268 loaded\n",
      "shard_18914 loaded\n",
      "shard_16437 loaded\n",
      "shard_40262 loaded\n",
      "shard_14491 loaded\n",
      "shard_11189 loaded\n",
      "shard_30963 loaded\n",
      "shard_44691 loaded\n",
      "shard_38138 loaded\n",
      "shard_8522 loaded\n",
      "shard_46244 loaded\n",
      "shard_41019 loaded\n",
      "shard_8996 loaded\n",
      "shard_48723 loaded\n",
      "shard_14187 loaded\n",
      "shard_22516 loaded\n",
      "shard_45875 loaded\n",
      "shard_1821 loaded\n",
      "shard_37907 loaded\n",
      "shard_19708 loaded\n",
      "shard_35573 loaded\n",
      "shard_16535 loaded\n",
      "shard_46337 loaded\n",
      "shard_2738 loaded\n",
      "shard_23234 loaded\n",
      "shard_19382 loaded\n",
      "shard_16500 loaded\n",
      "shard_12863 loaded\n",
      "shard_49198 loaded\n",
      "shard_19346 loaded\n",
      "shard_41176 loaded\n",
      "shard_4822 loaded\n",
      "shard_8741 loaded\n",
      "shard_17096 loaded\n",
      "shard_11693 loaded\n",
      "shard_17317 loaded\n",
      "shard_31388 loaded\n",
      "shard_16990 loaded\n",
      "shard_41153 loaded\n",
      "shard_17222 loaded\n",
      "shard_49412 loaded\n",
      "shard_47310 loaded\n",
      "shard_18880 loaded\n",
      "shard_798 loaded\n",
      "shard_10644 loaded\n",
      "shard_46773 loaded\n",
      "shard_49809 loaded\n",
      "shard_7371 loaded\n",
      "shard_4674 loaded\n",
      "shard_46784 loaded\n",
      "shard_1933 loaded\n",
      "shard_18091 loaded\n",
      "shard_47307 loaded\n",
      "shard_23783 loaded\n",
      "shard_39898 loaded\n",
      "shard_9958 loaded\n",
      "shard_41869 loaded\n",
      "shard_5579 loaded\n",
      "shard_30808 loaded\n",
      "shard_17775 loaded\n",
      "shard_27028 loaded\n",
      "shard_237 loaded\n",
      "shard_5043 loaded\n",
      "shard_44009 loaded\n",
      "shard_5287 loaded\n",
      "shard_39881 loaded\n",
      "shard_49592 loaded\n",
      "shard_11292 loaded\n",
      "shard_41226 loaded\n",
      "shard_16295 loaded\n",
      "shard_18632 loaded\n",
      "shard_47270 loaded\n",
      "shard_15866 loaded\n",
      "shard_2069 loaded\n",
      "shard_15802 loaded\n",
      "shard_11137 loaded\n",
      "shard_32575 loaded\n",
      "shard_3205 loaded\n",
      "shard_14935 loaded\n",
      "shard_28489 loaded\n",
      "shard_20723 loaded\n",
      "shard_13407 loaded\n",
      "shard_30013 loaded\n",
      "shard_35770 loaded\n",
      "shard_34929 loaded\n",
      "shard_7048 loaded\n",
      "shard_21920 loaded\n",
      "shard_8850 loaded\n",
      "shard_22806 loaded\n",
      "shard_27933 loaded\n",
      "shard_15956 loaded\n",
      "shard_7374 loaded\n",
      "shard_10192 loaded\n",
      "shard_16414 loaded\n",
      "shard_44208 loaded\n",
      "shard_5429 loaded\n",
      "shard_3158 loaded\n",
      "shard_14125 loaded\n",
      "shard_43576 loaded\n",
      "shard_27502 loaded\n",
      "shard_42933 loaded\n",
      "shard_42128 loaded\n",
      "shard_38087 loaded\n",
      "shard_16520 loaded\n",
      "shard_41954 loaded\n",
      "shard_47462 loaded\n",
      "shard_14780 loaded\n",
      "shard_8113 loaded\n",
      "shard_34089 loaded\n",
      "shard_20809 loaded\n",
      "shard_757 loaded\n",
      "shard_39037 loaded\n",
      "shard_20777 loaded\n",
      "shard_15738 loaded\n",
      "shard_25379 loaded\n",
      "shard_26279 loaded\n",
      "shard_20942 loaded\n",
      "shard_27869 loaded\n",
      "shard_13356 loaded\n",
      "shard_45379 loaded\n",
      "shard_17625 loaded\n",
      "shard_22110 loaded\n",
      "shard_40015 loaded\n",
      "shard_1010 loaded\n",
      "shard_29593 loaded\n",
      "shard_3543 loaded\n",
      "shard_44608 loaded\n",
      "shard_27712 loaded\n",
      "shard_46833 loaded\n",
      "shard_15660 loaded\n",
      "shard_12668 loaded\n",
      "shard_25944 loaded\n",
      "shard_44199 loaded\n",
      "shard_28957 loaded\n",
      "shard_13875 loaded\n",
      "shard_38133 loaded\n",
      "shard_22115 loaded\n",
      "shard_1104 loaded\n",
      "shard_47970 loaded\n",
      "shard_38194 loaded\n",
      "shard_21736 loaded\n",
      "shard_41452 loaded\n",
      "shard_23968 loaded\n",
      "shard_20810 loaded\n",
      "shard_25362 loaded\n",
      "shard_8023 loaded\n",
      "shard_1278 loaded\n",
      "shard_20715 loaded\n",
      "shard_44763 loaded\n",
      "shard_44190 loaded\n",
      "shard_43454 loaded\n",
      "shard_18213 loaded\n",
      "shard_33716 loaded\n",
      "shard_15967 loaded\n",
      "shard_45284 loaded\n",
      "shard_20865 loaded\n",
      "shard_22591 loaded\n",
      "shard_20175 loaded\n",
      "shard_41930 loaded\n",
      "shard_4743 loaded\n",
      "shard_19966 loaded\n",
      "shard_25361 loaded\n",
      "shard_21349 loaded\n",
      "shard_43528 loaded\n",
      "shard_37579 loaded\n",
      "shard_13009 loaded\n",
      "shard_32411 loaded\n",
      "shard_21544 loaded\n",
      "shard_2775 loaded\n",
      "shard_45844 loaded\n",
      "shard_374 loaded\n",
      "shard_24673 loaded\n",
      "shard_79 loaded\n",
      "shard_15922 loaded\n",
      "shard_23263 loaded\n",
      "shard_45958 loaded\n",
      "shard_36095 loaded\n",
      "shard_25819 loaded\n",
      "shard_40288 loaded\n",
      "shard_40341 loaded\n",
      "shard_10659 loaded\n",
      "shard_39619 loaded\n",
      "shard_49002 loaded\n",
      "shard_35386 loaded\n",
      "shard_3548 loaded\n",
      "shard_44243 loaded\n",
      "shard_3634 loaded\n",
      "shard_18062 loaded\n",
      "shard_37374 loaded\n",
      "shard_20793 loaded\n",
      "shard_14955 loaded\n",
      "shard_43463 loaded\n",
      "shard_29915 loaded\n",
      "shard_5375 loaded\n",
      "shard_49540 loaded\n",
      "shard_26063 loaded\n",
      "shard_49594 loaded\n",
      "shard_15736 loaded\n",
      "shard_28809 loaded\n",
      "shard_47279 loaded\n",
      "shard_8317 loaded\n",
      "shard_1713 loaded\n",
      "shard_46959 loaded\n",
      "shard_44933 loaded\n",
      "shard_19113 loaded\n",
      "shard_21071 loaded\n",
      "shard_47454 loaded\n",
      "shard_36254 loaded\n",
      "shard_29106 loaded\n",
      "shard_18014 loaded\n",
      "shard_47624 loaded\n",
      "shard_14218 loaded\n",
      "shard_44914 loaded\n",
      "shard_49595 loaded\n",
      "shard_27644 loaded\n",
      "shard_6483 loaded\n",
      "shard_37233 loaded\n",
      "shard_25054 loaded\n",
      "shard_42417 loaded\n",
      "shard_3545 loaded\n",
      "shard_28067 loaded\n",
      "shard_17705 loaded\n",
      "shard_45015 loaded\n",
      "shard_16944 loaded\n",
      "shard_26163 loaded\n",
      "shard_46202 loaded\n",
      "shard_6 loaded\n",
      "shard_39244 loaded\n",
      "shard_33965 loaded\n",
      "shard_7434 loaded\n",
      "shard_5924 loaded\n",
      "shard_9288 loaded\n",
      "shard_16963 loaded\n",
      "shard_26314 loaded\n",
      "shard_12078 loaded\n",
      "shard_30505 loaded\n",
      "shard_35285 loaded\n",
      "shard_14343 loaded\n",
      "shard_33190 loaded\n",
      "shard_25858 loaded\n",
      "shard_39858 loaded\n",
      "shard_26587 loaded\n",
      "shard_9583 loaded\n",
      "shard_27850 loaded\n",
      "shard_17260 loaded\n",
      "shard_18072 loaded\n",
      "shard_902 loaded\n",
      "shard_8267 loaded\n",
      "shard_41569 loaded\n",
      "shard_17528 loaded\n",
      "shard_34888 loaded\n",
      "shard_21997 loaded\n",
      "shard_33047 loaded\n",
      "shard_40332 loaded\n",
      "shard_13977 loaded\n",
      "shard_28910 loaded\n",
      "shard_19482 loaded\n",
      "shard_4892 loaded\n",
      "shard_38459 loaded\n",
      "shard_15061 loaded\n",
      "shard_45579 loaded\n",
      "shard_9935 loaded\n",
      "shard_8006 loaded\n",
      "shard_42675 loaded\n",
      "shard_4610 loaded\n",
      "shard_42801 loaded\n",
      "shard_46331 loaded\n",
      "shard_37446 loaded\n",
      "shard_3240 loaded\n",
      "shard_17899 loaded\n",
      "shard_39512 loaded\n",
      "shard_46335 loaded\n",
      "shard_37273 loaded\n",
      "shard_7245 loaded\n",
      "shard_3414 loaded\n",
      "shard_31709 loaded\n",
      "shard_10687 loaded\n",
      "shard_22998 loaded\n",
      "shard_1227 loaded\n",
      "shard_40421 loaded\n",
      "shard_41898 loaded\n",
      "shard_39771 loaded\n",
      "shard_1082 loaded\n",
      "shard_48484 loaded\n",
      "shard_15203 loaded\n",
      "shard_47653 loaded\n",
      "shard_33553 loaded\n",
      "shard_39332 loaded\n",
      "shard_2803 loaded\n",
      "shard_38530 loaded\n",
      "shard_7967 loaded\n",
      "shard_25011 loaded\n",
      "shard_5132 loaded\n",
      "shard_10046 loaded\n",
      "shard_35803 loaded\n",
      "shard_27179 loaded\n",
      "shard_1765 loaded\n",
      "shard_7952 loaded\n",
      "shard_4363 loaded\n",
      "shard_10696 loaded\n",
      "shard_16007 loaded\n",
      "shard_19136 loaded\n",
      "shard_761 loaded\n",
      "shard_39652 loaded\n",
      "shard_48127 loaded\n",
      "shard_29858 loaded\n",
      "shard_31659 loaded\n",
      "shard_32287 loaded\n",
      "shard_38600 loaded\n",
      "shard_28125 loaded\n",
      "shard_29132 loaded\n",
      "shard_41420 loaded\n",
      "shard_48525 loaded\n",
      "shard_15452 loaded\n",
      "shard_15832 loaded\n",
      "shard_27628 loaded\n",
      "shard_34651 loaded\n",
      "shard_45440 loaded\n",
      "shard_14800 loaded\n",
      "shard_27763 loaded\n",
      "shard_24897 loaded\n",
      "shard_44433 loaded\n",
      "shard_40786 loaded\n",
      "shard_11794 loaded\n",
      "shard_3680 loaded\n",
      "shard_45788 loaded\n",
      "shard_8331 loaded\n",
      "shard_16647 loaded\n",
      "shard_47165 loaded\n",
      "shard_27554 loaded\n",
      "shard_47236 loaded\n",
      "shard_32291 loaded\n",
      "shard_26627 loaded\n",
      "shard_39282 loaded\n",
      "shard_20020 loaded\n",
      "shard_5334 loaded\n",
      "shard_48823 loaded\n",
      "shard_31132 loaded\n",
      "shard_33350 loaded\n",
      "shard_23883 loaded\n",
      "shard_20340 loaded\n",
      "shard_7730 loaded\n",
      "shard_14939 loaded\n",
      "shard_48097 loaded\n",
      "shard_22759 loaded\n",
      "shard_41795 loaded\n",
      "shard_17982 loaded\n",
      "shard_48604 loaded\n",
      "shard_39263 loaded\n",
      "shard_40494 loaded\n",
      "shard_35664 loaded\n",
      "shard_13737 loaded\n",
      "shard_25250 loaded\n",
      "shard_36539 loaded\n",
      "shard_19444 loaded\n",
      "shard_16066 loaded\n",
      "shard_2879 loaded\n",
      "shard_10773 loaded\n",
      "shard_48678 loaded\n",
      "shard_32938 loaded\n",
      "shard_3846 loaded\n",
      "shard_34684 loaded\n",
      "shard_130 loaded\n",
      "shard_49984 loaded\n",
      "shard_13267 loaded\n",
      "shard_8702 loaded\n",
      "shard_34623 loaded\n",
      "shard_20716 loaded\n",
      "shard_15947 loaded\n",
      "shard_17416 loaded\n",
      "shard_44207 loaded\n",
      "shard_44151 loaded\n",
      "shard_34078 loaded\n",
      "shard_42051 loaded\n",
      "shard_39932 loaded\n",
      "shard_24016 loaded\n",
      "shard_12384 loaded\n",
      "shard_25818 loaded\n",
      "shard_42580 loaded\n",
      "shard_38382 loaded\n",
      "shard_30878 loaded\n",
      "shard_29488 loaded\n",
      "shard_45914 loaded\n",
      "shard_4867 loaded\n",
      "shard_32025 loaded\n",
      "shard_32870 loaded\n",
      "shard_42352 loaded\n",
      "shard_12716 loaded\n",
      "shard_14674 loaded\n",
      "shard_31784 loaded\n",
      "shard_13761 loaded\n",
      "shard_42853 loaded\n",
      "shard_49282 loaded\n",
      "shard_3599 loaded\n",
      "shard_8146 loaded\n",
      "shard_20807 loaded\n",
      "shard_8489 loaded\n",
      "shard_13934 loaded\n",
      "shard_16115 loaded\n",
      "shard_42067 loaded\n",
      "shard_11485 loaded\n",
      "shard_19015 loaded\n",
      "shard_22861 loaded\n",
      "shard_48930 loaded\n",
      "shard_25014 loaded\n",
      "shard_47277 loaded\n",
      "shard_43049 loaded\n",
      "shard_33618 loaded\n",
      "shard_35808 loaded\n",
      "shard_28364 loaded\n",
      "shard_44283 loaded\n",
      "shard_17147 loaded\n",
      "shard_45383 loaded\n",
      "shard_36420 loaded\n",
      "shard_7798 loaded\n",
      "shard_16962 loaded\n",
      "shard_15057 loaded\n",
      "shard_41515 loaded\n",
      "shard_22641 loaded\n",
      "shard_166 loaded\n",
      "shard_25062 loaded\n",
      "shard_44304 loaded\n",
      "shard_30513 loaded\n",
      "shard_42023 loaded\n",
      "shard_25924 loaded\n",
      "shard_40151 loaded\n",
      "shard_27127 loaded\n",
      "shard_27753 loaded\n",
      "shard_35604 loaded\n",
      "shard_40854 loaded\n",
      "shard_11571 loaded\n",
      "shard_44844 loaded\n",
      "shard_611 loaded\n",
      "shard_17263 loaded\n",
      "shard_2754 loaded\n",
      "shard_30119 loaded\n",
      "shard_16195 loaded\n",
      "shard_18598 loaded\n",
      "shard_47335 loaded\n",
      "shard_24575 loaded\n",
      "shard_7202 loaded\n",
      "shard_17010 loaded\n",
      "shard_23953 loaded\n",
      "shard_3445 loaded\n",
      "shard_49555 loaded\n",
      "shard_48815 loaded\n",
      "shard_15732 loaded\n",
      "shard_36519 loaded\n",
      "shard_32922 loaded\n",
      "shard_24822 loaded\n",
      "shard_31568 loaded\n",
      "shard_43102 loaded\n",
      "shard_33099 loaded\n",
      "shard_4728 loaded\n",
      "shard_37291 loaded\n",
      "shard_47983 loaded\n",
      "shard_30451 loaded\n",
      "shard_16571 loaded\n",
      "shard_33342 loaded\n",
      "shard_6780 loaded\n",
      "shard_32529 loaded\n",
      "shard_5153 loaded\n",
      "shard_12556 loaded\n",
      "shard_40864 loaded\n",
      "shard_25848 loaded\n",
      "shard_39762 loaded\n",
      "shard_3047 loaded\n",
      "shard_23573 loaded\n",
      "shard_47894 loaded\n",
      "shard_41219 loaded\n",
      "shard_40418 loaded\n",
      "shard_27852 loaded\n",
      "shard_35638 loaded\n",
      "shard_17859 loaded\n",
      "shard_26454 loaded\n",
      "shard_15341 loaded\n",
      "shard_29336 loaded\n",
      "shard_43586 loaded\n",
      "shard_30068 loaded\n",
      "shard_34758 loaded\n",
      "shard_19443 loaded\n",
      "shard_43813 loaded\n",
      "shard_19968 loaded\n",
      "shard_20305 loaded\n",
      "shard_23775 loaded\n",
      "shard_34969 loaded\n",
      "shard_21242 loaded\n",
      "shard_8686 loaded\n",
      "shard_11635 loaded\n",
      "shard_23424 loaded\n",
      "shard_28592 loaded\n",
      "shard_4988 loaded\n",
      "shard_4734 loaded\n",
      "shard_35398 loaded\n",
      "shard_37538 loaded\n",
      "shard_18402 loaded\n",
      "shard_46600 loaded\n",
      "shard_45206 loaded\n",
      "shard_10657 loaded\n",
      "shard_2229 loaded\n",
      "shard_47334 loaded\n",
      "shard_26494 loaded\n",
      "shard_37372 loaded\n",
      "shard_14293 loaded\n",
      "shard_11400 loaded\n",
      "shard_23609 loaded\n",
      "shard_12895 loaded\n",
      "shard_7761 loaded\n",
      "shard_34598 loaded\n",
      "shard_6859 loaded\n",
      "shard_27009 loaded\n",
      "shard_32296 loaded\n",
      "shard_49929 loaded\n",
      "shard_37611 loaded\n",
      "shard_6660 loaded\n",
      "shard_16053 loaded\n",
      "shard_41239 loaded\n",
      "shard_18376 loaded\n",
      "shard_40973 loaded\n",
      "shard_26273 loaded\n",
      "shard_8593 loaded\n",
      "shard_8733 loaded\n",
      "shard_25866 loaded\n",
      "shard_18205 loaded\n",
      "shard_20159 loaded\n",
      "shard_28458 loaded\n",
      "shard_26563 loaded\n",
      "shard_3107 loaded\n",
      "shard_24326 loaded\n",
      "shard_38521 loaded\n",
      "shard_37109 loaded\n",
      "shard_1324 loaded\n",
      "shard_12329 loaded\n",
      "shard_22216 loaded\n",
      "shard_37276 loaded\n",
      "shard_9372 loaded\n",
      "shard_15593 loaded\n",
      "shard_41844 loaded\n",
      "shard_31019 loaded\n",
      "shard_32771 loaded\n",
      "shard_6183 loaded\n",
      "shard_892 loaded\n",
      "shard_37609 loaded\n",
      "shard_45796 loaded\n",
      "shard_42076 loaded\n",
      "shard_48363 loaded\n",
      "shard_44869 loaded\n",
      "shard_45675 loaded\n",
      "shard_9762 loaded\n",
      "shard_39356 loaded\n",
      "shard_48567 loaded\n",
      "shard_48636 loaded\n",
      "shard_45737 loaded\n",
      "shard_39635 loaded\n",
      "shard_34859 loaded\n",
      "shard_41440 loaded\n",
      "shard_37014 loaded\n",
      "shard_39935 loaded\n",
      "shard_7043 loaded\n",
      "shard_21995 loaded\n",
      "shard_37133 loaded\n",
      "shard_27544 loaded\n",
      "shard_35619 loaded\n",
      "shard_13544 loaded\n",
      "shard_35371 loaded\n",
      "shard_4359 loaded\n",
      "shard_20265 loaded\n",
      "shard_9709 loaded\n",
      "shard_4202 loaded\n",
      "shard_47322 loaded\n",
      "shard_11356 loaded\n",
      "shard_7486 loaded\n",
      "shard_6952 loaded\n",
      "shard_36658 loaded\n",
      "shard_42265 loaded\n",
      "shard_3577 loaded\n",
      "shard_34109 loaded\n",
      "shard_43634 loaded\n",
      "shard_21392 loaded\n",
      "shard_11124 loaded\n",
      "shard_37335 loaded\n",
      "shard_3126 loaded\n",
      "shard_49129 loaded\n",
      "shard_28562 loaded\n",
      "shard_9132 loaded\n",
      "shard_5889 loaded\n",
      "shard_9671 loaded\n",
      "shard_1181 loaded\n",
      "shard_33170 loaded\n",
      "shard_13847 loaded\n",
      "shard_6953 loaded\n",
      "shard_27412 loaded\n",
      "shard_23209 loaded\n",
      "shard_43344 loaded\n",
      "shard_19745 loaded\n",
      "shard_40198 loaded\n",
      "shard_38331 loaded\n",
      "shard_26485 loaded\n",
      "shard_39029 loaded\n",
      "shard_18158 loaded\n",
      "shard_19644 loaded\n",
      "shard_28232 loaded\n",
      "shard_24334 loaded\n",
      "shard_13460 loaded\n",
      "shard_12167 loaded\n",
      "shard_36345 loaded\n",
      "shard_44017 loaded\n",
      "shard_6290 loaded\n",
      "shard_35945 loaded\n",
      "shard_31869 loaded\n",
      "shard_28660 loaded\n",
      "shard_16392 loaded\n",
      "shard_22820 loaded\n",
      "shard_30594 loaded\n",
      "shard_46574 loaded\n",
      "shard_19802 loaded\n",
      "shard_16746 loaded\n",
      "shard_3840 loaded\n",
      "shard_30836 loaded\n",
      "shard_2046 loaded\n",
      "shard_48757 loaded\n",
      "shard_41220 loaded\n",
      "shard_28052 loaded\n",
      "shard_48873 loaded\n",
      "shard_12905 loaded\n",
      "shard_32622 loaded\n",
      "shard_49850 loaded\n",
      "shard_11214 loaded\n",
      "shard_21400 loaded\n",
      "shard_45805 loaded\n",
      "shard_15679 loaded\n",
      "shard_40393 loaded\n",
      "shard_7157 loaded\n",
      "shard_30637 loaded\n",
      "shard_20207 loaded\n",
      "shard_36722 loaded\n",
      "shard_21940 loaded\n",
      "shard_14655 loaded\n",
      "shard_2055 loaded\n",
      "shard_34336 loaded\n",
      "shard_21177 loaded\n",
      "shard_14384 loaded\n",
      "shard_1184 loaded\n",
      "shard_22794 loaded\n",
      "shard_35459 loaded\n",
      "shard_20892 loaded\n",
      "shard_20450 loaded\n",
      "shard_46368 loaded\n",
      "shard_26389 loaded\n",
      "shard_4590 loaded\n",
      "shard_38460 loaded\n",
      "shard_43914 loaded\n",
      "shard_13518 loaded\n",
      "shard_18627 loaded\n",
      "shard_35217 loaded\n",
      "shard_4275 loaded\n",
      "shard_26963 loaded\n",
      "shard_18472 loaded\n",
      "shard_34709 loaded\n",
      "shard_49114 loaded\n",
      "shard_3312 loaded\n",
      "shard_35186 loaded\n",
      "shard_44766 loaded\n",
      "shard_24786 loaded\n",
      "shard_19310 loaded\n",
      "shard_30444 loaded\n",
      "shard_48112 loaded\n",
      "shard_45635 loaded\n",
      "shard_3859 loaded\n",
      "shard_29114 loaded\n",
      "shard_2673 loaded\n",
      "shard_8094 loaded\n",
      "shard_9991 loaded\n",
      "shard_23253 loaded\n",
      "shard_45404 loaded\n",
      "shard_32646 loaded\n",
      "shard_7173 loaded\n",
      "shard_18572 loaded\n",
      "shard_33043 loaded\n",
      "shard_22006 loaded\n",
      "shard_29847 loaded\n",
      "shard_44938 loaded\n",
      "shard_8337 loaded\n",
      "shard_42540 loaded\n",
      "shard_46929 loaded\n",
      "shard_30832 loaded\n",
      "shard_38074 loaded\n",
      "shard_18920 loaded\n",
      "shard_41874 loaded\n",
      "shard_10057 loaded\n",
      "shard_37119 loaded\n",
      "shard_41143 loaded\n",
      "shard_33926 loaded\n",
      "shard_29381 loaded\n",
      "shard_42543 loaded\n",
      "shard_46624 loaded\n",
      "shard_47218 loaded\n",
      "shard_16394 loaded\n",
      "shard_22320 loaded\n",
      "shard_12806 loaded\n",
      "shard_9493 loaded\n",
      "shard_3480 loaded\n",
      "shard_7760 loaded\n",
      "shard_37435 loaded\n",
      "shard_27393 loaded\n",
      "shard_10234 loaded\n",
      "shard_35544 loaded\n",
      "shard_20572 loaded\n",
      "shard_45465 loaded\n",
      "shard_13428 loaded\n",
      "shard_32669 loaded\n",
      "shard_43464 loaded\n",
      "shard_37995 loaded\n",
      "shard_35931 loaded\n",
      "shard_11015 loaded\n",
      "shard_38170 loaded\n",
      "shard_47640 loaded\n",
      "shard_41324 loaded\n",
      "shard_20741 loaded\n",
      "shard_22412 loaded\n",
      "shard_29030 loaded\n",
      "shard_8957 loaded\n",
      "shard_33589 loaded\n",
      "shard_41297 loaded\n",
      "shard_7262 loaded\n",
      "shard_7140 loaded\n",
      "shard_30515 loaded\n",
      "shard_6464 loaded\n",
      "shard_47997 loaded\n",
      "shard_38718 loaded\n",
      "shard_7016 loaded\n",
      "shard_4647 loaded\n",
      "shard_21721 loaded\n",
      "shard_6291 loaded\n",
      "shard_2720 loaded\n",
      "shard_22372 loaded\n",
      "shard_20354 loaded\n",
      "shard_24331 loaded\n",
      "shard_3809 loaded\n",
      "shard_15379 loaded\n",
      "shard_28945 loaded\n",
      "shard_43527 loaded\n",
      "shard_36757 loaded\n",
      "shard_18188 loaded\n",
      "shard_19922 loaded\n",
      "shard_6919 loaded\n",
      "shard_6194 loaded\n",
      "shard_37080 loaded\n",
      "shard_27815 loaded\n",
      "shard_20010 loaded\n",
      "shard_31542 loaded\n",
      "shard_10744 loaded\n",
      "shard_6026 loaded\n",
      "shard_20560 loaded\n",
      "shard_6590 loaded\n",
      "shard_41319 loaded\n",
      "shard_2597 loaded\n",
      "shard_44826 loaded\n",
      "shard_15131 loaded\n",
      "shard_47194 loaded\n",
      "shard_6627 loaded\n",
      "shard_21761 loaded\n",
      "shard_795 loaded\n",
      "shard_21037 loaded\n",
      "shard_22791 loaded\n",
      "shard_29583 loaded\n",
      "shard_4460 loaded\n",
      "shard_31264 loaded\n",
      "shard_20950 loaded\n",
      "shard_15558 loaded\n",
      "shard_35711 loaded\n",
      "shard_25831 loaded\n",
      "shard_12273 loaded\n",
      "shard_11108 loaded\n",
      "shard_3571 loaded\n",
      "shard_20234 loaded\n",
      "shard_32702 loaded\n",
      "shard_2846 loaded\n",
      "shard_18957 loaded\n",
      "shard_2733 loaded\n",
      "shard_44536 loaded\n",
      "shard_20139 loaded\n",
      "shard_17644 loaded\n",
      "shard_12871 loaded\n",
      "shard_22055 loaded\n",
      "shard_48842 loaded\n",
      "shard_49496 loaded\n",
      "shard_42171 loaded\n",
      "shard_8508 loaded\n",
      "shard_29557 loaded\n",
      "shard_40208 loaded\n",
      "shard_12231 loaded\n",
      "shard_2268 loaded\n",
      "shard_37391 loaded\n",
      "shard_46661 loaded\n",
      "shard_6745 loaded\n",
      "shard_9129 loaded\n",
      "shard_49600 loaded\n",
      "shard_2161 loaded\n",
      "shard_8524 loaded\n",
      "shard_39670 loaded\n",
      "shard_40 loaded\n",
      "shard_6989 loaded\n",
      "shard_401 loaded\n",
      "shard_4395 loaded\n",
      "shard_11871 loaded\n",
      "shard_25165 loaded\n",
      "shard_43165 loaded\n",
      "shard_7391 loaded\n",
      "shard_16367 loaded\n",
      "shard_745 loaded\n",
      "shard_37640 loaded\n",
      "shard_25857 loaded\n",
      "shard_2767 loaded\n",
      "shard_40371 loaded\n",
      "shard_8496 loaded\n",
      "shard_3938 loaded\n",
      "shard_15501 loaded\n",
      "shard_25061 loaded\n",
      "shard_41222 loaded\n",
      "shard_4485 loaded\n",
      "shard_8552 loaded\n",
      "shard_43145 loaded\n",
      "shard_15804 loaded\n",
      "shard_34022 loaded\n",
      "shard_39100 loaded\n",
      "shard_48914 loaded\n",
      "shard_28801 loaded\n",
      "shard_19207 loaded\n",
      "shard_31530 loaded\n",
      "shard_22441 loaded\n",
      "shard_31004 loaded\n",
      "shard_30748 loaded\n",
      "shard_7109 loaded\n",
      "shard_37620 loaded\n",
      "shard_6370 loaded\n",
      "shard_15391 loaded\n",
      "shard_38623 loaded\n",
      "shard_29044 loaded\n",
      "shard_28365 loaded\n",
      "shard_5515 loaded\n",
      "shard_6132 loaded\n",
      "shard_29537 loaded\n",
      "shard_9274 loaded\n",
      "shard_25019 loaded\n",
      "shard_27400 loaded\n",
      "shard_14182 loaded\n",
      "shard_15801 loaded\n",
      "shard_49294 loaded\n",
      "shard_24915 loaded\n",
      "shard_42871 loaded\n",
      "shard_36367 loaded\n",
      "shard_28991 loaded\n",
      "shard_14452 loaded\n",
      "shard_34719 loaded\n",
      "shard_10989 loaded\n",
      "shard_23112 loaded\n",
      "shard_28934 loaded\n",
      "shard_48278 loaded\n",
      "shard_2641 loaded\n",
      "shard_41049 loaded\n",
      "shard_25493 loaded\n",
      "shard_7834 loaded\n",
      "shard_11905 loaded\n",
      "shard_44273 loaded\n",
      "shard_47605 loaded\n",
      "shard_8485 loaded\n",
      "shard_43072 loaded\n",
      "shard_29262 loaded\n",
      "shard_38493 loaded\n",
      "shard_18161 loaded\n",
      "shard_37600 loaded\n",
      "shard_16903 loaded\n",
      "shard_26390 loaded\n",
      "shard_25173 loaded\n",
      "shard_3650 loaded\n",
      "shard_47110 loaded\n",
      "shard_1517 loaded\n",
      "shard_2526 loaded\n",
      "shard_26687 loaded\n",
      "shard_46110 loaded\n",
      "shard_12024 loaded\n",
      "shard_47437 loaded\n",
      "shard_4412 loaded\n",
      "shard_24685 loaded\n",
      "shard_7087 loaded\n",
      "shard_24739 loaded\n",
      "shard_37781 loaded\n",
      "shard_36934 loaded\n",
      "shard_48588 loaded\n",
      "shard_30134 loaded\n",
      "shard_23836 loaded\n",
      "shard_38375 loaded\n",
      "shard_7636 loaded\n",
      "shard_5038 loaded\n",
      "shard_34673 loaded\n",
      "shard_30394 loaded\n",
      "shard_24279 loaded\n",
      "shard_31960 loaded\n",
      "shard_46925 loaded\n",
      "shard_40071 loaded\n",
      "shard_18861 loaded\n",
      "shard_44511 loaded\n",
      "shard_20147 loaded\n",
      "shard_15272 loaded\n",
      "shard_40515 loaded\n",
      "shard_40591 loaded\n",
      "shard_7464 loaded\n",
      "shard_10931 loaded\n",
      "shard_14635 loaded\n",
      "shard_44002 loaded\n",
      "shard_23073 loaded\n",
      "shard_9065 loaded\n",
      "shard_762 loaded\n",
      "shard_2922 loaded\n",
      "shard_25434 loaded\n",
      "shard_8214 loaded\n",
      "shard_35971 loaded\n",
      "shard_40537 loaded\n",
      "shard_30380 loaded\n",
      "shard_24304 loaded\n",
      "shard_14109 loaded\n",
      "shard_10146 loaded\n",
      "shard_45347 loaded\n",
      "shard_31483 loaded\n",
      "shard_43509 loaded\n",
      "shard_31228 loaded\n",
      "shard_22133 loaded\n",
      "shard_20213 loaded\n",
      "shard_43885 loaded\n",
      "shard_9086 loaded\n",
      "shard_37739 loaded\n",
      "shard_28107 loaded\n",
      "shard_18934 loaded\n",
      "shard_23454 loaded\n",
      "shard_36325 loaded\n",
      "shard_5210 loaded\n",
      "shard_40479 loaded\n",
      "shard_42764 loaded\n",
      "shard_43474 loaded\n",
      "shard_14831 loaded\n",
      "shard_4274 loaded\n",
      "shard_39638 loaded\n",
      "shard_28275 loaded\n",
      "shard_15847 loaded\n",
      "shard_15060 loaded\n",
      "shard_42367 loaded\n",
      "shard_41752 loaded\n",
      "shard_141 loaded\n",
      "shard_7609 loaded\n",
      "shard_32614 loaded\n",
      "shard_23697 loaded\n",
      "shard_2544 loaded\n",
      "shard_47585 loaded\n",
      "shard_18634 loaded\n",
      "shard_6604 loaded\n",
      "shard_29766 loaded\n",
      "shard_16338 loaded\n",
      "shard_21151 loaded\n",
      "shard_42974 loaded\n",
      "shard_16486 loaded\n",
      "shard_34797 loaded\n",
      "shard_41580 loaded\n",
      "shard_20415 loaded\n",
      "shard_35925 loaded\n",
      "shard_40013 loaded\n",
      "shard_30576 loaded\n",
      "shard_45956 loaded\n",
      "shard_28152 loaded\n",
      "shard_34904 loaded\n",
      "shard_11167 loaded\n",
      "shard_26076 loaded\n",
      "shard_13965 loaded\n",
      "shard_20962 loaded\n",
      "shard_8310 loaded\n",
      "shard_5676 loaded\n",
      "shard_14582 loaded\n",
      "shard_1561 loaded\n",
      "shard_16174 loaded\n",
      "shard_30660 loaded\n",
      "shard_3900 loaded\n",
      "shard_18244 loaded\n",
      "shard_15526 loaded\n",
      "shard_24070 loaded\n",
      "shard_33736 loaded\n",
      "shard_12624 loaded\n",
      "shard_12182 loaded\n",
      "shard_12230 loaded\n",
      "shard_6332 loaded\n",
      "shard_21714 loaded\n",
      "shard_34635 loaded\n",
      "shard_25521 loaded\n",
      "shard_47641 loaded\n",
      "shard_14440 loaded\n",
      "shard_25291 loaded\n",
      "shard_34271 loaded\n",
      "shard_12629 loaded\n",
      "shard_49624 loaded\n",
      "shard_30302 loaded\n",
      "shard_33649 loaded\n",
      "shard_13295 loaded\n",
      "shard_6600 loaded\n",
      "shard_1228 loaded\n",
      "shard_49299 loaded\n",
      "shard_47667 loaded\n",
      "shard_44490 loaded\n",
      "shard_2771 loaded\n",
      "shard_14869 loaded\n",
      "shard_15489 loaded\n",
      "shard_6572 loaded\n",
      "shard_5746 loaded\n",
      "shard_49721 loaded\n",
      "shard_12808 loaded\n",
      "shard_18284 loaded\n",
      "shard_47330 loaded\n",
      "shard_26336 loaded\n",
      "shard_33539 loaded\n",
      "shard_36912 loaded\n",
      "shard_23420 loaded\n",
      "shard_47658 loaded\n",
      "shard_9824 loaded\n",
      "shard_28964 loaded\n",
      "shard_22002 loaded\n",
      "shard_16717 loaded\n",
      "shard_26861 loaded\n",
      "shard_49775 loaded\n",
      "shard_24655 loaded\n",
      "shard_9695 loaded\n",
      "shard_7982 loaded\n",
      "shard_21426 loaded\n",
      "shard_2361 loaded\n",
      "shard_45789 loaded\n",
      "shard_23366 loaded\n",
      "shard_24959 loaded\n",
      "shard_47326 loaded\n",
      "shard_29393 loaded\n",
      "shard_47442 loaded\n",
      "shard_10185 loaded\n",
      "shard_36932 loaded\n",
      "shard_29052 loaded\n",
      "shard_13935 loaded\n",
      "shard_46198 loaded\n",
      "shard_6217 loaded\n",
      "shard_41922 loaded\n",
      "shard_6116 loaded\n",
      "shard_48876 loaded\n",
      "shard_39122 loaded\n",
      "shard_36150 loaded\n",
      "shard_1768 loaded\n",
      "shard_4557 loaded\n",
      "shard_10179 loaded\n",
      "shard_3614 loaded\n",
      "shard_18254 loaded\n",
      "shard_8025 loaded\n",
      "shard_47152 loaded\n",
      "shard_5227 loaded\n",
      "shard_22398 loaded\n",
      "shard_7373 loaded\n",
      "shard_11742 loaded\n",
      "shard_16899 loaded\n",
      "shard_26440 loaded\n",
      "shard_47990 loaded\n",
      "shard_45053 loaded\n",
      "shard_35474 loaded\n",
      "shard_18916 loaded\n",
      "shard_41675 loaded\n",
      "shard_5552 loaded\n",
      "shard_47787 loaded\n",
      "shard_24729 loaded\n",
      "shard_31529 loaded\n",
      "shard_28600 loaded\n",
      "shard_9626 loaded\n",
      "shard_3046 loaded\n",
      "shard_19279 loaded\n",
      "shard_36388 loaded\n",
      "shard_17413 loaded\n",
      "shard_4115 loaded\n",
      "shard_40853 loaded\n",
      "shard_4836 loaded\n",
      "shard_12469 loaded\n",
      "shard_13736 loaded\n",
      "shard_18899 loaded\n",
      "shard_49723 loaded\n",
      "shard_7086 loaded\n",
      "shard_48489 loaded\n",
      "shard_24790 loaded\n",
      "shard_22277 loaded\n",
      "shard_22408 loaded\n",
      "shard_32864 loaded\n",
      "shard_1632 loaded\n",
      "shard_39995 loaded\n",
      "shard_49206 loaded\n",
      "shard_48346 loaded\n",
      "shard_19558 loaded\n",
      "shard_3748 loaded\n",
      "shard_4381 loaded\n",
      "shard_30109 loaded\n",
      "shard_8979 loaded\n",
      "shard_49724 loaded\n",
      "shard_20662 loaded\n",
      "shard_5426 loaded\n",
      "shard_39759 loaded\n",
      "shard_26245 loaded\n",
      "shard_47847 loaded\n",
      "shard_6746 loaded\n",
      "shard_48590 loaded\n",
      "shard_6054 loaded\n",
      "shard_47808 loaded\n",
      "shard_12001 loaded\n",
      "shard_48534 loaded\n",
      "shard_2140 loaded\n",
      "shard_38958 loaded\n",
      "shard_42665 loaded\n",
      "shard_13648 loaded\n",
      "shard_39827 loaded\n",
      "shard_735 loaded\n",
      "shard_16546 loaded\n",
      "shard_6506 loaded\n",
      "shard_49543 loaded\n",
      "shard_25668 loaded\n",
      "shard_16895 loaded\n",
      "shard_25468 loaded\n",
      "shard_7108 loaded\n",
      "shard_29345 loaded\n",
      "shard_21625 loaded\n",
      "shard_4839 loaded\n",
      "shard_47835 loaded\n",
      "shard_17215 loaded\n",
      "shard_5301 loaded\n",
      "shard_6109 loaded\n",
      "shard_7580 loaded\n",
      "shard_3962 loaded\n",
      "shard_42970 loaded\n",
      "shard_19288 loaded\n",
      "shard_15278 loaded\n",
      "shard_12260 loaded\n",
      "shard_47609 loaded\n",
      "shard_30064 loaded\n",
      "shard_3953 loaded\n",
      "shard_26460 loaded\n",
      "shard_37923 loaded\n",
      "shard_10834 loaded\n",
      "shard_47340 loaded\n",
      "shard_37596 loaded\n",
      "shard_21538 loaded\n",
      "shard_46026 loaded\n",
      "shard_23865 loaded\n",
      "shard_47516 loaded\n",
      "shard_26493 loaded\n",
      "shard_42920 loaded\n",
      "shard_7733 loaded\n",
      "shard_9923 loaded\n",
      "shard_2700 loaded\n",
      "shard_31537 loaded\n",
      "shard_22379 loaded\n",
      "shard_29615 loaded\n",
      "shard_15860 loaded\n",
      "shard_9710 loaded\n",
      "shard_7965 loaded\n",
      "shard_42833 loaded\n",
      "shard_21051 loaded\n",
      "shard_512 loaded\n",
      "shard_4231 loaded\n",
      "shard_11787 loaded\n",
      "shard_36673 loaded\n",
      "shard_2971 loaded\n",
      "shard_17489 loaded\n",
      "shard_9694 loaded\n",
      "shard_27202 loaded\n",
      "shard_8736 loaded\n",
      "shard_39643 loaded\n",
      "shard_39135 loaded\n",
      "shard_22833 loaded\n",
      "shard_15500 loaded\n",
      "shard_36584 loaded\n",
      "shard_41958 loaded\n",
      "shard_42053 loaded\n",
      "shard_10716 loaded\n",
      "shard_37286 loaded\n",
      "shard_48416 loaded\n",
      "shard_1062 loaded\n",
      "shard_7821 loaded\n",
      "shard_3918 loaded\n",
      "shard_48545 loaded\n",
      "shard_25222 loaded\n",
      "shard_40819 loaded\n",
      "shard_1384 loaded\n",
      "shard_35432 loaded\n",
      "shard_44164 loaded\n",
      "shard_9740 loaded\n",
      "shard_38118 loaded\n",
      "shard_46218 loaded\n",
      "shard_37906 loaded\n",
      "shard_35717 loaded\n",
      "shard_33693 loaded\n",
      "shard_11401 loaded\n",
      "shard_29135 loaded\n",
      "shard_43046 loaded\n",
      "shard_18725 loaded\n",
      "shard_34113 loaded\n",
      "shard_28305 loaded\n",
      "shard_21396 loaded\n",
      "shard_24611 loaded\n",
      "shard_29938 loaded\n",
      "shard_152 loaded\n",
      "shard_37631 loaded\n",
      "shard_39305 loaded\n",
      "shard_6945 loaded\n",
      "shard_39025 loaded\n",
      "shard_48503 loaded\n",
      "shard_46768 loaded\n",
      "shard_42199 loaded\n",
      "shard_8474 loaded\n",
      "shard_46423 loaded\n",
      "shard_41631 loaded\n",
      "shard_11094 loaded\n",
      "shard_33014 loaded\n",
      "shard_14200 loaded\n",
      "shard_36683 loaded\n",
      "shard_609 loaded\n",
      "shard_6892 loaded\n",
      "shard_12727 loaded\n",
      "shard_21717 loaded\n",
      "shard_19603 loaded\n",
      "shard_4147 loaded\n",
      "shard_28955 loaded\n",
      "shard_5789 loaded\n",
      "shard_45333 loaded\n",
      "shard_16121 loaded\n",
      "shard_43811 loaded\n",
      "shard_38421 loaded\n",
      "shard_36120 loaded\n",
      "shard_17557 loaded\n",
      "shard_26386 loaded\n",
      "shard_24890 loaded\n",
      "shard_672 loaded\n",
      "shard_47733 loaded\n",
      "shard_23442 loaded\n",
      "shard_4547 loaded\n",
      "shard_28105 loaded\n",
      "shard_10249 loaded\n",
      "shard_32393 loaded\n",
      "shard_40328 loaded\n",
      "shard_1313 loaded\n",
      "shard_23297 loaded\n",
      "shard_45562 loaded\n",
      "shard_31742 loaded\n",
      "shard_30130 loaded\n",
      "shard_7400 loaded\n",
      "shard_27016 loaded\n",
      "shard_44235 loaded\n",
      "shard_19562 loaded\n",
      "shard_31636 loaded\n",
      "shard_29427 loaded\n",
      "shard_38160 loaded\n",
      "shard_43394 loaded\n",
      "shard_2695 loaded\n",
      "shard_41923 loaded\n",
      "shard_2409 loaded\n",
      "shard_690 loaded\n",
      "shard_1474 loaded\n",
      "shard_18952 loaded\n",
      "shard_6120 loaded\n",
      "shard_5783 loaded\n",
      "shard_13986 loaded\n",
      "shard_4827 loaded\n",
      "shard_36874 loaded\n",
      "shard_34664 loaded\n",
      "shard_12233 loaded\n",
      "shard_41310 loaded\n",
      "shard_39444 loaded\n",
      "shard_49569 loaded\n",
      "shard_24067 loaded\n",
      "shard_27302 loaded\n",
      "shard_33076 loaded\n",
      "shard_46411 loaded\n",
      "shard_40355 loaded\n",
      "shard_17089 loaded\n",
      "shard_17909 loaded\n",
      "shard_34609 loaded\n",
      "shard_5672 loaded\n",
      "shard_27195 loaded\n",
      "shard_42638 loaded\n",
      "shard_9098 loaded\n",
      "shard_30708 loaded\n",
      "shard_17376 loaded\n",
      "shard_40126 loaded\n",
      "shard_42567 loaded\n",
      "shard_49449 loaded\n",
      "shard_15246 loaded\n",
      "shard_43096 loaded\n",
      "shard_40439 loaded\n",
      "shard_11434 loaded\n",
      "shard_34840 loaded\n",
      "shard_36918 loaded\n",
      "shard_16540 loaded\n",
      "shard_40991 loaded\n",
      "shard_36277 loaded\n",
      "shard_3834 loaded\n",
      "shard_6678 loaded\n",
      "shard_21610 loaded\n",
      "shard_30989 loaded\n",
      "shard_27957 loaded\n",
      "shard_49489 loaded\n",
      "shard_29905 loaded\n",
      "shard_7117 loaded\n",
      "shard_24587 loaded\n",
      "shard_41215 loaded\n",
      "shard_38275 loaded\n",
      "shard_18090 loaded\n",
      "shard_19596 loaded\n",
      "shard_12640 loaded\n",
      "shard_2082 loaded\n",
      "shard_21864 loaded\n",
      "shard_15823 loaded\n",
      "shard_14421 loaded\n",
      "shard_44770 loaded\n",
      "shard_7471 loaded\n",
      "shard_44901 loaded\n",
      "shard_30490 loaded\n",
      "shard_37063 loaded\n",
      "shard_8320 loaded\n",
      "shard_19215 loaded\n",
      "shard_1557 loaded\n",
      "shard_31090 loaded\n",
      "shard_3152 loaded\n",
      "shard_44178 loaded\n",
      "shard_47075 loaded\n",
      "shard_1609 loaded\n",
      "shard_45773 loaded\n",
      "shard_49270 loaded\n",
      "shard_38430 loaded\n",
      "shard_12011 loaded\n",
      "shard_4514 loaded\n",
      "shard_24520 loaded\n",
      "shard_24177 loaded\n",
      "shard_27145 loaded\n",
      "shard_47792 loaded\n",
      "shard_38614 loaded\n",
      "shard_13477 loaded\n",
      "shard_20044 loaded\n",
      "shard_39819 loaded\n",
      "shard_8098 loaded\n",
      "shard_8718 loaded\n",
      "shard_22208 loaded\n",
      "shard_5267 loaded\n",
      "shard_49575 loaded\n",
      "shard_41044 loaded\n",
      "shard_26009 loaded\n",
      "shard_2108 loaded\n",
      "shard_13367 loaded\n",
      "shard_42333 loaded\n",
      "shard_27630 loaded\n",
      "shard_49950 loaded\n",
      "shard_48459 loaded\n",
      "shard_32289 loaded\n",
      "shard_46797 loaded\n",
      "shard_27887 loaded\n",
      "shard_44866 loaded\n",
      "shard_9570 loaded\n",
      "shard_19469 loaded\n",
      "shard_17496 loaded\n",
      "shard_40358 loaded\n",
      "shard_12742 loaded\n",
      "shard_20782 loaded\n",
      "shard_32766 loaded\n",
      "shard_23169 loaded\n",
      "shard_37344 loaded\n",
      "shard_25717 loaded\n",
      "shard_12551 loaded\n",
      "shard_5940 loaded\n",
      "shard_49146 loaded\n",
      "shard_39601 loaded\n",
      "shard_26413 loaded\n",
      "shard_2905 loaded\n",
      "shard_4392 loaded\n",
      "shard_11011 loaded\n",
      "shard_48859 loaded\n",
      "shard_30033 loaded\n",
      "shard_14637 loaded\n",
      "shard_34327 loaded\n",
      "shard_30297 loaded\n",
      "shard_47765 loaded\n",
      "shard_29992 loaded\n",
      "shard_12746 loaded\n",
      "shard_22447 loaded\n",
      "shard_31451 loaded\n",
      "shard_18967 loaded\n",
      "shard_10589 loaded\n",
      "shard_35991 loaded\n",
      "shard_38467 loaded\n",
      "shard_42452 loaded\n",
      "shard_19011 loaded\n",
      "shard_49124 loaded\n",
      "shard_30387 loaded\n",
      "shard_20336 loaded\n",
      "shard_21569 loaded\n",
      "shard_35002 loaded\n",
      "shard_48729 loaded\n",
      "shard_39074 loaded\n",
      "shard_30294 loaded\n",
      "shard_48850 loaded\n",
      "shard_40834 loaded\n",
      "shard_31909 loaded\n",
      "shard_5813 loaded\n",
      "shard_46080 loaded\n",
      "shard_23533 loaded\n",
      "shard_18306 loaded\n",
      "shard_22901 loaded\n",
      "shard_42272 loaded\n",
      "shard_3611 loaded\n",
      "shard_32381 loaded\n",
      "shard_12244 loaded\n",
      "shard_7000 loaded\n",
      "shard_48577 loaded\n",
      "shard_29672 loaded\n",
      "shard_17333 loaded\n",
      "shard_37730 loaded\n",
      "shard_49659 loaded\n",
      "shard_21431 loaded\n",
      "shard_2809 loaded\n",
      "shard_41717 loaded\n",
      "shard_37586 loaded\n",
      "shard_10547 loaded\n",
      "shard_20628 loaded\n",
      "shard_28622 loaded\n",
      "shard_29621 loaded\n",
      "shard_14961 loaded\n",
      "shard_31474 loaded\n",
      "shard_22530 loaded\n",
      "shard_36106 loaded\n",
      "shard_3118 loaded\n",
      "shard_31202 loaded\n",
      "shard_49988 loaded\n",
      "shard_21453 loaded\n",
      "shard_45849 loaded\n",
      "shard_10071 loaded\n",
      "shard_4022 loaded\n",
      "shard_48159 loaded\n",
      "shard_7179 loaded\n",
      "shard_8904 loaded\n",
      "shard_8400 loaded\n",
      "shard_1974 loaded\n",
      "shard_21534 loaded\n",
      "shard_35823 loaded\n",
      "shard_733 loaded\n",
      "shard_3889 loaded\n",
      "shard_47226 loaded\n",
      "shard_43169 loaded\n",
      "shard_21566 loaded\n",
      "shard_48992 loaded\n",
      "shard_31471 loaded\n",
      "shard_19508 loaded\n",
      "shard_28346 loaded\n",
      "shard_49590 loaded\n",
      "shard_25188 loaded\n",
      "shard_13492 loaded\n",
      "shard_42820 loaded\n",
      "shard_25247 loaded\n",
      "shard_6577 loaded\n",
      "shard_37327 loaded\n",
      "shard_37099 loaded\n",
      "shard_35177 loaded\n",
      "shard_12205 loaded\n",
      "shard_10991 loaded\n",
      "shard_20525 loaded\n",
      "shard_37732 loaded\n",
      "shard_22871 loaded\n",
      "shard_40867 loaded\n",
      "shard_24319 loaded\n",
      "shard_4834 loaded\n",
      "shard_36081 loaded\n",
      "shard_11049 loaded\n",
      "shard_3988 loaded\n",
      "shard_48436 loaded\n",
      "shard_2660 loaded\n",
      "shard_25581 loaded\n",
      "shard_1947 loaded\n",
      "shard_2856 loaded\n",
      "shard_1070 loaded\n",
      "shard_38312 loaded\n",
      "shard_22649 loaded\n",
      "shard_17110 loaded\n",
      "shard_42339 loaded\n",
      "shard_38296 loaded\n",
      "shard_40782 loaded\n",
      "shard_3225 loaded\n",
      "shard_34962 loaded\n",
      "shard_37370 loaded\n",
      "shard_10743 loaded\n",
      "shard_2573 loaded\n",
      "shard_42380 loaded\n",
      "shard_243 loaded\n",
      "shard_47898 loaded\n",
      "shard_47253 loaded\n",
      "shard_34852 loaded\n",
      "shard_28519 loaded\n",
      "shard_45916 loaded\n",
      "shard_526 loaded\n",
      "shard_45980 loaded\n",
      "shard_4271 loaded\n",
      "shard_24366 loaded\n",
      "shard_39050 loaded\n",
      "shard_17512 loaded\n",
      "shard_9833 loaded\n",
      "shard_38913 loaded\n",
      "shard_37691 loaded\n",
      "shard_49088 loaded\n",
      "shard_36928 loaded\n",
      "shard_40857 loaded\n",
      "shard_25463 loaded\n",
      "shard_26071 loaded\n",
      "shard_45560 loaded\n",
      "shard_24113 loaded\n",
      "shard_25135 loaded\n",
      "shard_22311 loaded\n",
      "shard_4756 loaded\n",
      "shard_35737 loaded\n",
      "shard_563 loaded\n",
      "shard_19301 loaded\n",
      "shard_19424 loaded\n",
      "shard_45987 loaded\n",
      "shard_23313 loaded\n",
      "shard_23156 loaded\n",
      "shard_34395 loaded\n",
      "shard_7977 loaded\n",
      "shard_14881 loaded\n",
      "shard_8637 loaded\n",
      "shard_28805 loaded\n",
      "shard_8683 loaded\n",
      "shard_28706 loaded\n",
      "shard_22374 loaded\n",
      "shard_24347 loaded\n",
      "shard_5832 loaded\n",
      "shard_47644 loaded\n",
      "shard_31501 loaded\n",
      "shard_9176 loaded\n",
      "shard_20926 loaded\n",
      "shard_42574 loaded\n",
      "shard_44535 loaded\n",
      "shard_7482 loaded\n",
      "shard_38587 loaded\n",
      "shard_41295 loaded\n",
      "shard_11446 loaded\n",
      "shard_33045 loaded\n",
      "shard_43610 loaded\n",
      "shard_14007 loaded\n",
      "shard_44494 loaded\n",
      "shard_19576 loaded\n",
      "shard_47567 loaded\n",
      "shard_9650 loaded\n",
      "shard_20134 loaded\n",
      "shard_3871 loaded\n",
      "shard_32631 loaded\n",
      "shard_10566 loaded\n",
      "shard_3079 loaded\n",
      "shard_24975 loaded\n",
      "shard_37545 loaded\n",
      "shard_17626 loaded\n",
      "shard_22596 loaded\n",
      "shard_38484 loaded\n",
      "shard_24456 loaded\n",
      "shard_3514 loaded\n",
      "shard_28403 loaded\n",
      "shard_11067 loaded\n",
      "shard_47227 loaded\n",
      "shard_18176 loaded\n",
      "shard_31898 loaded\n",
      "shard_22467 loaded\n",
      "shard_4311 loaded\n",
      "shard_29587 loaded\n",
      "shard_8369 loaded\n",
      "shard_23235 loaded\n",
      "shard_37169 loaded\n",
      "shard_34359 loaded\n",
      "shard_29489 loaded\n",
      "shard_14348 loaded\n",
      "shard_8710 loaded\n",
      "shard_36314 loaded\n",
      "shard_37224 loaded\n",
      "shard_29986 loaded\n",
      "shard_36301 loaded\n",
      "shard_34940 loaded\n",
      "shard_27898 loaded\n",
      "shard_48976 loaded\n",
      "shard_38723 loaded\n",
      "shard_44580 loaded\n",
      "shard_25549 loaded\n",
      "shard_49789 loaded\n",
      "shard_47766 loaded\n",
      "shard_10128 loaded\n",
      "shard_28415 loaded\n",
      "shard_12207 loaded\n",
      "shard_42052 loaded\n",
      "shard_156 loaded\n",
      "shard_35525 loaded\n",
      "shard_43883 loaded\n",
      "shard_18781 loaded\n",
      "shard_20579 loaded\n",
      "shard_31618 loaded\n",
      "shard_13244 loaded\n",
      "shard_38390 loaded\n",
      "shard_24666 loaded\n",
      "shard_42219 loaded\n",
      "shard_10756 loaded\n",
      "shard_24500 loaded\n",
      "shard_43924 loaded\n",
      "shard_1318 loaded\n",
      "shard_17398 loaded\n",
      "shard_47189 loaded\n",
      "shard_7920 loaded\n",
      "shard_25689 loaded\n",
      "shard_16056 loaded\n",
      "shard_1828 loaded\n",
      "shard_44160 loaded\n",
      "shard_20694 loaded\n",
      "shard_24043 loaded\n",
      "shard_43143 loaded\n",
      "shard_43468 loaded\n",
      "shard_37606 loaded\n",
      "shard_18195 loaded\n",
      "shard_2001 loaded\n",
      "shard_35518 loaded\n",
      "shard_20641 loaded\n",
      "shard_40017 loaded\n",
      "shard_24783 loaded\n",
      "shard_9947 loaded\n",
      "shard_36991 loaded\n",
      "shard_38832 loaded\n",
      "shard_26472 loaded\n",
      "shard_20117 loaded\n",
      "shard_48816 loaded\n",
      "shard_9030 loaded\n",
      "shard_35199 loaded\n",
      "shard_20970 loaded\n",
      "shard_3425 loaded\n",
      "shard_33502 loaded\n",
      "shard_37486 loaded\n",
      "shard_26905 loaded\n",
      "shard_21643 loaded\n",
      "shard_21255 loaded\n",
      "shard_20252 loaded\n",
      "shard_10569 loaded\n",
      "shard_14157 loaded\n",
      "shard_34612 loaded\n",
      "shard_23347 loaded\n",
      "shard_41416 loaded\n",
      "shard_22586 loaded\n",
      "shard_34242 loaded\n",
      "shard_17216 loaded\n",
      "shard_24446 loaded\n",
      "shard_26147 loaded\n",
      "shard_5623 loaded\n",
      "shard_17658 loaded\n",
      "shard_34787 loaded\n",
      "shard_3582 loaded\n",
      "shard_35718 loaded\n",
      "shard_33206 loaded\n",
      "shard_31804 loaded\n",
      "shard_28056 loaded\n",
      "shard_32281 loaded\n",
      "shard_19063 loaded\n",
      "shard_8575 loaded\n",
      "shard_49237 loaded\n",
      "shard_31930 loaded\n",
      "shard_27886 loaded\n",
      "shard_42887 loaded\n",
      "shard_26920 loaded\n",
      "shard_11443 loaded\n",
      "shard_6988 loaded\n",
      "shard_40359 loaded\n",
      "shard_46924 loaded\n",
      "shard_29666 loaded\n",
      "shard_1533 loaded\n",
      "shard_922 loaded\n",
      "shard_4857 loaded\n",
      "shard_24364 loaded\n",
      "shard_28462 loaded\n",
      "shard_48531 loaded\n",
      "shard_1354 loaded\n",
      "shard_17611 loaded\n",
      "shard_15865 loaded\n",
      "shard_23815 loaded\n",
      "shard_25726 loaded\n",
      "shard_9101 loaded\n",
      "shard_38528 loaded\n",
      "shard_16686 loaded\n",
      "shard_13511 loaded\n",
      "shard_37665 loaded\n",
      "shard_4457 loaded\n",
      "shard_19257 loaded\n",
      "shard_229 loaded\n",
      "shard_27038 loaded\n",
      "shard_48762 loaded\n",
      "shard_34239 loaded\n",
      "shard_5912 loaded\n",
      "shard_45145 loaded\n",
      "shard_9708 loaded\n",
      "shard_45637 loaded\n",
      "shard_43963 loaded\n",
      "shard_18547 loaded\n",
      "shard_36133 loaded\n",
      "shard_34350 loaded\n",
      "shard_14313 loaded\n",
      "shard_17349 loaded\n",
      "shard_5581 loaded\n",
      "shard_7132 loaded\n",
      "shard_1690 loaded\n",
      "shard_15580 loaded\n",
      "shard_17833 loaded\n",
      "shard_30583 loaded\n",
      "shard_13838 loaded\n",
      "shard_10896 loaded\n",
      "shard_41743 loaded\n",
      "shard_27371 loaded\n",
      "shard_3349 loaded\n",
      "shard_3048 loaded\n",
      "shard_10767 loaded\n",
      "shard_21108 loaded\n",
      "shard_33683 loaded\n",
      "shard_15472 loaded\n",
      "shard_14356 loaded\n",
      "shard_29912 loaded\n",
      "shard_22261 loaded\n",
      "shard_22409 loaded\n",
      "shard_35071 loaded\n",
      "shard_35881 loaded\n",
      "shard_21615 loaded\n",
      "shard_49630 loaded\n",
      "shard_32497 loaded\n",
      "shard_35842 loaded\n",
      "shard_16292 loaded\n",
      "shard_17727 loaded\n",
      "shard_14139 loaded\n",
      "shard_45316 loaded\n",
      "shard_37072 loaded\n",
      "shard_160 loaded\n",
      "shard_24875 loaded\n",
      "shard_41935 loaded\n",
      "shard_7950 loaded\n",
      "shard_4020 loaded\n",
      "shard_19629 loaded\n",
      "shard_23920 loaded\n",
      "shard_21473 loaded\n",
      "shard_13232 loaded\n",
      "shard_33129 loaded\n",
      "shard_46945 loaded\n",
      "shard_19680 loaded\n",
      "shard_26654 loaded\n",
      "shard_8567 loaded\n",
      "shard_27681 loaded\n",
      "shard_29455 loaded\n",
      "shard_14266 loaded\n",
      "shard_34985 loaded\n",
      "shard_43376 loaded\n",
      "shard_12112 loaded\n",
      "shard_25129 loaded\n",
      "shard_25903 loaded\n",
      "shard_14714 loaded\n",
      "shard_49769 loaded\n",
      "shard_32143 loaded\n",
      "shard_1323 loaded\n",
      "shard_2216 loaded\n",
      "shard_19577 loaded\n",
      "shard_22364 loaded\n",
      "shard_30322 loaded\n",
      "shard_15224 loaded\n",
      "shard_38508 loaded\n",
      "shard_15155 loaded\n",
      "shard_45476 loaded\n",
      "shard_13524 loaded\n",
      "shard_47927 loaded\n",
      "shard_39599 loaded\n",
      "shard_549 loaded\n",
      "shard_34346 loaded\n",
      "shard_36508 loaded\n",
      "shard_39993 loaded\n",
      "shard_36132 loaded\n",
      "shard_9357 loaded\n",
      "shard_282 loaded\n",
      "shard_6508 loaded\n",
      "shard_46074 loaded\n",
      "shard_7648 loaded\n",
      "shard_31599 loaded\n",
      "shard_30062 loaded\n",
      "shard_28344 loaded\n",
      "shard_36990 loaded\n",
      "shard_10441 loaded\n",
      "shard_16257 loaded\n",
      "shard_23071 loaded\n",
      "shard_31679 loaded\n",
      "shard_1644 loaded\n",
      "shard_47840 loaded\n",
      "shard_32178 loaded\n",
      "shard_19850 loaded\n",
      "shard_41399 loaded\n",
      "shard_16076 loaded\n",
      "shard_33973 loaded\n",
      "shard_27583 loaded\n",
      "shard_18416 loaded\n",
      "shard_49429 loaded\n",
      "shard_25773 loaded\n",
      "shard_48067 loaded\n",
      "shard_15666 loaded\n",
      "shard_33251 loaded\n",
      "shard_3647 loaded\n",
      "shard_3942 loaded\n",
      "shard_5574 loaded\n",
      "shard_10252 loaded\n",
      "shard_23910 loaded\n",
      "shard_1685 loaded\n",
      "shard_37363 loaded\n",
      "shard_218 loaded\n",
      "shard_10954 loaded\n",
      "shard_42560 loaded\n",
      "shard_6990 loaded\n",
      "shard_14682 loaded\n",
      "shard_14155 loaded\n",
      "shard_26543 loaded\n",
      "shard_12823 loaded\n",
      "shard_47196 loaded\n",
      "shard_46400 loaded\n",
      "shard_11238 loaded\n",
      "shard_31842 loaded\n",
      "shard_9572 loaded\n",
      "shard_7346 loaded\n",
      "shard_48707 loaded\n",
      "shard_18013 loaded\n",
      "shard_33162 loaded\n",
      "shard_20098 loaded\n",
      "shard_15694 loaded\n",
      "shard_11822 loaded\n",
      "shard_17539 loaded\n",
      "shard_35279 loaded\n",
      "shard_25656 loaded\n",
      "shard_30252 loaded\n",
      "shard_38962 loaded\n",
      "shard_977 loaded\n",
      "shard_6819 loaded\n",
      "shard_17944 loaded\n",
      "shard_7645 loaded\n",
      "shard_41055 loaded\n",
      "shard_13532 loaded\n",
      "shard_45144 loaded\n",
      "shard_22270 loaded\n",
      "shard_9292 loaded\n",
      "shard_45466 loaded\n",
      "shard_43515 loaded\n",
      "shard_2476 loaded\n",
      "shard_25961 loaded\n",
      "shard_30902 loaded\n",
      "shard_24398 loaded\n",
      "shard_43561 loaded\n",
      "shard_3644 loaded\n",
      "shard_32155 loaded\n",
      "shard_3458 loaded\n",
      "shard_24028 loaded\n",
      "shard_14391 loaded\n",
      "shard_23619 loaded\n",
      "shard_22417 loaded\n",
      "shard_10385 loaded\n",
      "shard_42407 loaded\n",
      "shard_37056 loaded\n",
      "shard_49290 loaded\n",
      "shard_35909 loaded\n",
      "shard_46473 loaded\n",
      "shard_2522 loaded\n",
      "shard_39667 loaded\n",
      "shard_18409 loaded\n",
      "shard_40462 loaded\n",
      "shard_1637 loaded\n",
      "shard_5562 loaded\n",
      "shard_28714 loaded\n",
      "shard_9830 loaded\n",
      "shard_9543 loaded\n",
      "shard_41072 loaded\n",
      "shard_41599 loaded\n",
      "shard_4358 loaded\n",
      "shard_30469 loaded\n",
      "shard_48965 loaded\n",
      "shard_38326 loaded\n",
      "shard_24996 loaded\n",
      "shard_9984 loaded\n",
      "shard_17070 loaded\n",
      "shard_35549 loaded\n",
      "shard_7956 loaded\n",
      "shard_25541 loaded\n",
      "shard_37420 loaded\n",
      "shard_32360 loaded\n",
      "shard_39217 loaded\n",
      "shard_16862 loaded\n",
      "shard_11928 loaded\n",
      "shard_39095 loaded\n",
      "shard_2925 loaded\n",
      "shard_14328 loaded\n",
      "shard_19557 loaded\n",
      "shard_32692 loaded\n",
      "shard_13220 loaded\n",
      "shard_42571 loaded\n",
      "shard_7688 loaded\n",
      "shard_12289 loaded\n",
      "shard_40706 loaded\n",
      "shard_3895 loaded\n",
      "shard_39116 loaded\n",
      "shard_49966 loaded\n",
      "shard_9788 loaded\n",
      "shard_46972 loaded\n",
      "shard_46119 loaded\n",
      "shard_7586 loaded\n",
      "shard_46246 loaded\n",
      "shard_36244 loaded\n",
      "shard_6500 loaded\n",
      "shard_41820 loaded\n",
      "shard_1538 loaded\n",
      "shard_1059 loaded\n",
      "shard_41138 loaded\n",
      "shard_40305 loaded\n",
      "shard_13093 loaded\n",
      "shard_24615 loaded\n",
      "shard_25296 loaded\n",
      "shard_33358 loaded\n",
      "shard_45089 loaded\n",
      "shard_26448 loaded\n",
      "shard_257 loaded\n",
      "shard_46563 loaded\n",
      "shard_5905 loaded\n",
      "shard_49227 loaded\n",
      "shard_790 loaded\n",
      "shard_22157 loaded\n",
      "shard_26471 loaded\n",
      "shard_7884 loaded\n",
      "shard_48724 loaded\n",
      "shard_22034 loaded\n",
      "shard_9860 loaded\n",
      "shard_24922 loaded\n",
      "shard_8523 loaded\n",
      "shard_28917 loaded\n",
      "shard_38429 loaded\n",
      "shard_5005 loaded\n",
      "shard_44704 loaded\n",
      "shard_33343 loaded\n",
      "shard_35114 loaded\n",
      "shard_47586 loaded\n",
      "shard_37681 loaded\n",
      "shard_18017 loaded\n",
      "shard_35796 loaded\n",
      "shard_40704 loaded\n",
      "shard_6301 loaded\n",
      "shard_39878 loaded\n",
      "shard_20494 loaded\n",
      "shard_49249 loaded\n",
      "shard_12567 loaded\n",
      "shard_3396 loaded\n",
      "shard_46483 loaded\n",
      "shard_224 loaded\n",
      "shard_41576 loaded\n",
      "shard_27625 loaded\n",
      "shard_48211 loaded\n",
      "shard_13696 loaded\n",
      "shard_28123 loaded\n",
      "shard_31136 loaded\n",
      "shard_35057 loaded\n",
      "shard_48375 loaded\n",
      "shard_43034 loaded\n",
      "shard_40327 loaded\n",
      "shard_26004 loaded\n",
      "shard_5691 loaded\n",
      "shard_29675 loaded\n",
      "shard_1035 loaded\n",
      "shard_25554 loaded\n",
      "shard_29354 loaded\n",
      "shard_11107 loaded\n",
      "shard_19739 loaded\n",
      "shard_1880 loaded\n",
      "shard_23530 loaded\n",
      "shard_19449 loaded\n",
      "shard_23239 loaded\n",
      "shard_46266 loaded\n",
      "shard_28313 loaded\n",
      "shard_40286 loaded\n",
      "shard_21833 loaded\n",
      "shard_18428 loaded\n",
      "shard_36820 loaded\n",
      "shard_45152 loaded\n",
      "shard_7763 loaded\n",
      "shard_43121 loaded\n",
      "shard_27664 loaded\n",
      "shard_45471 loaded\n",
      "shard_32962 loaded\n",
      "shard_16422 loaded\n",
      "shard_47796 loaded\n",
      "shard_32547 loaded\n",
      "shard_49633 loaded\n",
      "shard_20637 loaded\n",
      "shard_1910 loaded\n",
      "shard_3227 loaded\n",
      "shard_24087 loaded\n",
      "shard_26877 loaded\n",
      "shard_33979 loaded\n",
      "shard_9245 loaded\n",
      "shard_3317 loaded\n",
      "shard_38714 loaded\n",
      "shard_8737 loaded\n",
      "shard_24596 loaded\n",
      "shard_47964 loaded\n",
      "shard_18543 loaded\n",
      "shard_5806 loaded\n",
      "shard_15853 loaded\n",
      "shard_45421 loaded\n",
      "shard_17844 loaded\n",
      "shard_6855 loaded\n",
      "shard_3324 loaded\n",
      "shard_21976 loaded\n",
      "shard_10486 loaded\n",
      "shard_44389 loaded\n",
      "shard_12487 loaded\n",
      "shard_12928 loaded\n",
      "shard_32553 loaded\n",
      "shard_31193 loaded\n",
      "shard_16318 loaded\n",
      "shard_7255 loaded\n",
      "shard_11865 loaded\n",
      "shard_30988 loaded\n",
      "shard_6696 loaded\n",
      "shard_24907 loaded\n",
      "shard_42584 loaded\n",
      "shard_33357 loaded\n",
      "shard_39322 loaded\n",
      "shard_43471 loaded\n",
      "shard_4487 loaded\n",
      "shard_47822 loaded\n",
      "shard_16516 loaded\n",
      "shard_6658 loaded\n",
      "shard_23837 loaded\n",
      "shard_32193 loaded\n",
      "shard_37334 loaded\n",
      "shard_35334 loaded\n",
      "shard_48501 loaded\n",
      "shard_1261 loaded\n",
      "shard_14651 loaded\n",
      "shard_16132 loaded\n",
      "shard_43801 loaded\n",
      "shard_20678 loaded\n",
      "shard_7974 loaded\n",
      "shard_45814 loaded\n",
      "shard_31222 loaded\n",
      "shard_25883 loaded\n",
      "shard_32106 loaded\n",
      "shard_18114 loaded\n",
      "shard_25691 loaded\n",
      "shard_35863 loaded\n",
      "shard_16630 loaded\n",
      "shard_6535 loaded\n",
      "shard_6045 loaded\n",
      "shard_36706 loaded\n",
      "shard_47257 loaded\n",
      "shard_31375 loaded\n",
      "shard_12110 loaded\n",
      "shard_13754 loaded\n",
      "shard_11391 loaded\n",
      "shard_11405 loaded\n",
      "shard_6585 loaded\n",
      "shard_7221 loaded\n",
      "shard_39230 loaded\n",
      "shard_48932 loaded\n",
      "shard_23219 loaded\n",
      "shard_18087 loaded\n",
      "shard_41 loaded\n",
      "shard_38244 loaded\n",
      "shard_42957 loaded\n",
      "shard_2994 loaded\n",
      "shard_39697 loaded\n",
      "shard_9322 loaded\n",
      "shard_9754 loaded\n",
      "shard_39448 loaded\n",
      "shard_25244 loaded\n",
      "shard_29479 loaded\n",
      "shard_18393 loaded\n",
      "shard_4454 loaded\n",
      "shard_12705 loaded\n",
      "shard_49419 loaded\n",
      "shard_7488 loaded\n",
      "shard_8892 loaded\n",
      "shard_35911 loaded\n",
      "shard_29946 loaded\n",
      "shard_28236 loaded\n",
      "shard_49588 loaded\n",
      "shard_3042 loaded\n",
      "shard_44049 loaded\n",
      "shard_21420 loaded\n",
      "shard_30498 loaded\n",
      "shard_43321 loaded\n",
      "shard_3663 loaded\n",
      "shard_21564 loaded\n",
      "shard_27409 loaded\n",
      "shard_11554 loaded\n",
      "shard_44196 loaded\n",
      "shard_47908 loaded\n",
      "shard_48585 loaded\n",
      "shard_44015 loaded\n",
      "shard_45201 loaded\n",
      "shard_29308 loaded\n",
      "shard_23378 loaded\n",
      "shard_28814 loaded\n",
      "shard_43461 loaded\n",
      "shard_24223 loaded\n",
      "shard_37338 loaded\n",
      "shard_35013 loaded\n",
      "shard_19168 loaded\n",
      "shard_8413 loaded\n",
      "shard_19253 loaded\n",
      "shard_5975 loaded\n",
      "shard_42763 loaded\n",
      "shard_29730 loaded\n",
      "shard_8124 loaded\n",
      "shard_26949 loaded\n",
      "shard_9128 loaded\n",
      "shard_39453 loaded\n",
      "shard_41992 loaded\n",
      "shard_48044 loaded\n",
      "shard_31526 loaded\n",
      "shard_32903 loaded\n",
      "shard_44598 loaded\n",
      "shard_31813 loaded\n",
      "shard_20739 loaded\n",
      "shard_24647 loaded\n",
      "shard_40032 loaded\n",
      "shard_6170 loaded\n",
      "shard_49802 loaded\n",
      "shard_10317 loaded\n",
      "shard_10318 loaded\n",
      "shard_17369 loaded\n",
      "shard_40353 loaded\n",
      "shard_39784 loaded\n",
      "shard_47367 loaded\n",
      "shard_11983 loaded\n",
      "shard_31042 loaded\n",
      "shard_28796 loaded\n",
      "shard_48388 loaded\n",
      "shard_43690 loaded\n",
      "shard_40751 loaded\n",
      "shard_25856 loaded\n",
      "shard_27577 loaded\n",
      "shard_1780 loaded\n",
      "shard_42866 loaded\n",
      "shard_43473 loaded\n",
      "shard_9727 loaded\n",
      "shard_18413 loaded\n",
      "shard_30512 loaded\n",
      "shard_20731 loaded\n",
      "shard_7873 loaded\n",
      "shard_1659 loaded\n",
      "shard_10694 loaded\n",
      "shard_23846 loaded\n",
      "shard_34391 loaded\n",
      "shard_12969 loaded\n",
      "shard_5021 loaded\n",
      "shard_33853 loaded\n",
      "shard_9912 loaded\n",
      "shard_40642 loaded\n",
      "shard_9752 loaded\n",
      "shard_12072 loaded\n",
      "shard_41774 loaded\n",
      "shard_31970 loaded\n",
      "shard_48633 loaded\n",
      "shard_43161 loaded\n",
      "shard_34027 loaded\n",
      "shard_29785 loaded\n",
      "shard_2226 loaded\n",
      "shard_12418 loaded\n",
      "shard_39713 loaded\n",
      "shard_21141 loaded\n",
      "shard_47705 loaded\n",
      "shard_14097 loaded\n",
      "shard_12492 loaded\n",
      "shard_21653 loaded\n",
      "shard_27904 loaded\n",
      "shard_49792 loaded\n",
      "shard_11332 loaded\n",
      "shard_1454 loaded\n",
      "shard_44072 loaded\n",
      "shard_49310 loaded\n",
      "shard_25065 loaded\n",
      "shard_46316 loaded\n",
      "shard_18289 loaded\n",
      "shard_959 loaded\n",
      "shard_39505 loaded\n",
      "shard_3513 loaded\n",
      "shard_33388 loaded\n",
      "shard_28247 loaded\n",
      "shard_17117 loaded\n",
      "shard_22158 loaded\n",
      "shard_17404 loaded\n",
      "shard_3555 loaded\n",
      "shard_17302 loaded\n",
      "shard_26045 loaded\n",
      "shard_12577 loaded\n",
      "shard_34030 loaded\n",
      "shard_43570 loaded\n",
      "shard_49859 loaded\n",
      "shard_13809 loaded\n",
      "shard_13564 loaded\n",
      "shard_30273 loaded\n",
      "shard_45765 loaded\n",
      "shard_24143 loaded\n",
      "shard_43284 loaded\n",
      "shard_35749 loaded\n",
      "shard_35833 loaded\n",
      "shard_5311 loaded\n",
      "shard_19400 loaded\n",
      "shard_17827 loaded\n",
      "shard_11260 loaded\n",
      "shard_26692 loaded\n",
      "shard_38069 loaded\n",
      "shard_9434 loaded\n",
      "shard_24343 loaded\n",
      "shard_49527 loaded\n",
      "shard_16105 loaded\n",
      "shard_28474 loaded\n",
      "shard_39414 loaded\n",
      "shard_21667 loaded\n",
      "shard_21259 loaded\n",
      "shard_15446 loaded\n",
      "shard_2248 loaded\n",
      "shard_10285 loaded\n",
      "shard_36694 loaded\n",
      "shard_5339 loaded\n",
      "shard_40276 loaded\n",
      "shard_8321 loaded\n",
      "shard_35274 loaded\n",
      "shard_40249 loaded\n",
      "shard_26373 loaded\n",
      "shard_42178 loaded\n",
      "shard_29980 loaded\n",
      "shard_26985 loaded\n",
      "shard_1079 loaded\n",
      "shard_20056 loaded\n",
      "shard_5860 loaded\n",
      "shard_23847 loaded\n",
      "shard_5523 loaded\n",
      "shard_10939 loaded\n",
      "shard_16994 loaded\n",
      "shard_681 loaded\n",
      "shard_44675 loaded\n",
      "shard_21783 loaded\n",
      "shard_37411 loaded\n",
      "shard_2989 loaded\n",
      "shard_10751 loaded\n",
      "shard_3675 loaded\n",
      "shard_29734 loaded\n",
      "shard_49478 loaded\n",
      "shard_7744 loaded\n",
      "shard_12380 loaded\n",
      "shard_25558 loaded\n",
      "shard_40065 loaded\n",
      "shard_378 loaded\n",
      "shard_44531 loaded\n",
      "shard_12496 loaded\n",
      "shard_15686 loaded\n",
      "shard_34477 loaded\n",
      "shard_771 loaded\n",
      "shard_31338 loaded\n",
      "shard_35893 loaded\n",
      "shard_35957 loaded\n",
      "shard_20027 loaded\n",
      "shard_18561 loaded\n",
      "shard_12293 loaded\n",
      "shard_969 loaded\n",
      "shard_10029 loaded\n",
      "shard_11436 loaded\n",
      "shard_3766 loaded\n",
      "shard_31664 loaded\n",
      "shard_37098 loaded\n",
      "shard_13938 loaded\n",
      "shard_22064 loaded\n",
      "shard_8694 loaded\n",
      "shard_16443 loaded\n",
      "shard_13024 loaded\n",
      "shard_15360 loaded\n",
      "shard_15016 loaded\n",
      "shard_22789 loaded\n",
      "shard_19289 loaded\n",
      "shard_47269 loaded\n",
      "shard_38568 loaded\n",
      "shard_7673 loaded\n",
      "shard_20898 loaded\n",
      "shard_33464 loaded\n",
      "shard_27719 loaded\n",
      "shard_46635 loaded\n",
      "shard_6270 loaded\n",
      "shard_11245 loaded\n",
      "shard_26120 loaded\n",
      "shard_21966 loaded\n",
      "shard_11129 loaded\n",
      "shard_26596 loaded\n",
      "shard_1431 loaded\n",
      "shard_20972 loaded\n",
      "shard_15514 loaded\n",
      "shard_41488 loaded\n",
      "shard_38105 loaded\n",
      "shard_11208 loaded\n",
      "shard_37264 loaded\n",
      "shard_8011 loaded\n",
      "shard_40485 loaded\n",
      "shard_24820 loaded\n",
      "shard_31558 loaded\n",
      "shard_15088 loaded\n",
      "shard_23642 loaded\n",
      "shard_34887 loaded\n",
      "shard_29133 loaded\n",
      "shard_14271 loaded\n",
      "shard_18594 loaded\n",
      "shard_4831 loaded\n",
      "shard_7846 loaded\n",
      "shard_35346 loaded\n",
      "shard_163 loaded\n",
      "shard_26811 loaded\n",
      "shard_22899 loaded\n",
      "shard_34772 loaded\n",
      "shard_15722 loaded\n",
      "shard_29597 loaded\n",
      "shard_28614 loaded\n",
      "shard_6884 loaded\n",
      "shard_24965 loaded\n",
      "shard_36572 loaded\n",
      "shard_16136 loaded\n",
      "shard_26910 loaded\n",
      "shard_20520 loaded\n",
      "shard_16460 loaded\n",
      "shard_36382 loaded\n",
      "shard_5844 loaded\n",
      "shard_24700 loaded\n",
      "shard_22597 loaded\n",
      "shard_45691 loaded\n",
      "shard_4466 loaded\n",
      "shard_24203 loaded\n",
      "shard_46603 loaded\n",
      "shard_48226 loaded\n",
      "shard_26698 loaded\n",
      "shard_12116 loaded\n",
      "shard_36111 loaded\n",
      "shard_8243 loaded\n",
      "shard_17312 loaded\n",
      "shard_31630 loaded\n",
      "shard_34476 loaded\n",
      "shard_48071 loaded\n",
      "shard_31378 loaded\n",
      "shard_28023 loaded\n",
      "shard_49402 loaded\n",
      "shard_9773 loaded\n",
      "shard_21362 loaded\n",
      "shard_42433 loaded\n",
      "shard_31666 loaded\n",
      "shard_41883 loaded\n",
      "shard_43612 loaded\n",
      "shard_29300 loaded\n",
      "shard_48360 loaded\n",
      "shard_4134 loaded\n",
      "shard_16402 loaded\n",
      "shard_14802 loaded\n",
      "shard_9184 loaded\n",
      "shard_32038 loaded\n",
      "shard_49764 loaded\n",
      "shard_24492 loaded\n",
      "shard_9936 loaded\n",
      "shard_37936 loaded\n",
      "shard_45920 loaded\n",
      "shard_24282 loaded\n",
      "shard_551 loaded\n",
      "shard_6133 loaded\n",
      "shard_12497 loaded\n",
      "shard_45846 loaded\n",
      "shard_7141 loaded\n",
      "shard_6735 loaded\n",
      "shard_13427 loaded\n",
      "shard_46895 loaded\n",
      "shard_1006 loaded\n",
      "shard_35098 loaded\n",
      "shard_41577 loaded\n",
      "shard_29011 loaded\n",
      "shard_8358 loaded\n",
      "shard_18853 loaded\n",
      "shard_47988 loaded\n",
      "shard_18349 loaded\n",
      "shard_34055 loaded\n",
      "shard_20625 loaded\n",
      "shard_36245 loaded\n",
      "shard_12214 loaded\n",
      "shard_14868 loaded\n",
      "shard_7042 loaded\n",
      "shard_42355 loaded\n",
      "shard_11574 loaded\n",
      "shard_37454 loaded\n",
      "shard_648 loaded\n",
      "shard_24532 loaded\n",
      "shard_33175 loaded\n",
      "shard_27848 loaded\n",
      "shard_45702 loaded\n",
      "shard_2791 loaded\n",
      "shard_6156 loaded\n",
      "shard_9138 loaded\n",
      "shard_9457 loaded\n",
      "shard_9139 loaded\n",
      "shard_31926 loaded\n",
      "shard_10996 loaded\n",
      "shard_37502 loaded\n",
      "shard_2321 loaded\n",
      "shard_23304 loaded\n",
      "shard_16600 loaded\n",
      "shard_37633 loaded\n",
      "shard_48687 loaded\n",
      "shard_32581 loaded\n",
      "shard_415 loaded\n",
      "shard_45066 loaded\n",
      "shard_42239 loaded\n",
      "shard_17408 loaded\n",
      "shard_33548 loaded\n",
      "shard_14792 loaded\n",
      "shard_48245 loaded\n",
      "shard_10326 loaded\n",
      "shard_42425 loaded\n",
      "shard_16625 loaded\n",
      "shard_6188 loaded\n",
      "shard_41400 loaded\n",
      "shard_6729 loaded\n",
      "shard_31781 loaded\n",
      "shard_49036 loaded\n",
      "shard_16204 loaded\n",
      "shard_35595 loaded\n",
      "shard_43177 loaded\n",
      "shard_20017 loaded\n",
      "shard_18292 loaded\n",
      "shard_5040 loaded\n",
      "shard_37350 loaded\n",
      "shard_4711 loaded\n",
      "shard_32778 loaded\n",
      "shard_17351 loaded\n",
      "shard_390 loaded\n",
      "shard_8954 loaded\n",
      "shard_40505 loaded\n",
      "shard_19807 loaded\n",
      "shard_47192 loaded\n",
      "shard_16190 loaded\n",
      "shard_40767 loaded\n",
      "shard_46597 loaded\n",
      "shard_16729 loaded\n",
      "shard_15770 loaded\n",
      "shard_29137 loaded\n",
      "shard_25022 loaded\n",
      "shard_28995 loaded\n",
      "shard_25058 loaded\n",
      "shard_42381 loaded\n",
      "shard_2506 loaded\n",
      "shard_17703 loaded\n",
      "shard_10004 loaded\n",
      "shard_10600 loaded\n",
      "shard_7231 loaded\n",
      "shard_40221 loaded\n",
      "shard_21587 loaded\n",
      "shard_12832 loaded\n",
      "shard_27858 loaded\n",
      "shard_6043 loaded\n",
      "shard_7250 loaded\n",
      "shard_44463 loaded\n",
      "shard_4888 loaded\n",
      "shard_32826 loaded\n",
      "shard_33414 loaded\n",
      "shard_26155 loaded\n",
      "shard_49700 loaded\n",
      "shard_31106 loaded\n",
      "shard_20683 loaded\n",
      "shard_42652 loaded\n",
      "shard_22025 loaded\n",
      "shard_32159 loaded\n",
      "shard_10261 loaded\n",
      "shard_41481 loaded\n",
      "shard_2493 loaded\n",
      "shard_6856 loaded\n",
      "shard_33169 loaded\n",
      "shard_20951 loaded\n",
      "shard_30278 loaded\n",
      "shard_46008 loaded\n",
      "shard_25157 loaded\n",
      "shard_12838 loaded\n",
      "shard_39830 loaded\n",
      "shard_48512 loaded\n",
      "shard_29221 loaded\n",
      "shard_14152 loaded\n",
      "shard_42319 loaded\n",
      "shard_3921 loaded\n",
      "shard_38796 loaded\n",
      "shard_41602 loaded\n",
      "shard_1115 loaded\n",
      "shard_30834 loaded\n",
      "shard_20975 loaded\n",
      "shard_49010 loaded\n",
      "shard_40522 loaded\n",
      "shard_24260 loaded\n",
      "shard_33310 loaded\n",
      "shard_35340 loaded\n",
      "shard_7103 loaded\n",
      "shard_38836 loaded\n",
      "shard_7097 loaded\n",
      "shard_25335 loaded\n",
      "shard_33723 loaded\n",
      "shard_10428 loaded\n",
      "shard_32740 loaded\n",
      "shard_42572 loaded\n",
      "shard_29988 loaded\n",
      "shard_41763 loaded\n",
      "shard_45002 loaded\n",
      "shard_8618 loaded\n",
      "shard_40118 loaded\n",
      "shard_20760 loaded\n",
      "shard_47068 loaded\n",
      "shard_47094 loaded\n",
      "shard_19533 loaded\n",
      "shard_45328 loaded\n",
      "shard_34966 loaded\n",
      "shard_17442 loaded\n",
      "shard_20792 loaded\n",
      "shard_336 loaded\n",
      "shard_29822 loaded\n",
      "shard_2681 loaded\n",
      "shard_36452 loaded\n",
      "shard_41578 loaded\n",
      "shard_48359 loaded\n",
      "shard_4926 loaded\n",
      "shard_14517 loaded\n",
      "shard_44514 loaded\n",
      "shard_24370 loaded\n",
      "shard_207 loaded\n",
      "shard_14940 loaded\n",
      "shard_21795 loaded\n",
      "shard_30486 loaded\n",
      "shard_27316 loaded\n",
      "shard_45339 loaded\n",
      "shard_33516 loaded\n",
      "shard_6260 loaded\n",
      "shard_6532 loaded\n",
      "shard_31289 loaded\n",
      "shard_19830 loaded\n",
      "shard_1742 loaded\n",
      "shard_22916 loaded\n",
      "shard_20697 loaded\n",
      "shard_8062 loaded\n",
      "shard_11908 loaded\n",
      "shard_32192 loaded\n",
      "shard_28019 loaded\n",
      "shard_48304 loaded\n",
      "shard_38255 loaded\n",
      "shard_3785 loaded\n",
      "shard_6713 loaded\n",
      "shard_2430 loaded\n",
      "shard_25358 loaded\n",
      "shard_19235 loaded\n",
      "shard_34873 loaded\n",
      "shard_19637 loaded\n",
      "shard_4729 loaded\n",
      "shard_39254 loaded\n",
      "shard_26803 loaded\n",
      "shard_18401 loaded\n",
      "shard_30686 loaded\n",
      "shard_20912 loaded\n",
      "shard_40993 loaded\n",
      "shard_48299 loaded\n",
      "shard_12375 loaded\n",
      "shard_2851 loaded\n",
      "shard_7801 loaded\n",
      "shard_12923 loaded\n",
      "shard_8283 loaded\n",
      "shard_37876 loaded\n",
      "shard_49305 loaded\n",
      "shard_36263 loaded\n",
      "shard_45140 loaded\n",
      "shard_8690 loaded\n",
      "shard_38754 loaded\n",
      "shard_11389 loaded\n",
      "shard_18768 loaded\n",
      "shard_1113 loaded\n",
      "shard_49812 loaded\n",
      "shard_43525 loaded\n",
      "shard_14805 loaded\n",
      "shard_38912 loaded\n",
      "shard_24547 loaded\n",
      "shard_38501 loaded\n",
      "shard_23329 loaded\n",
      "shard_33637 loaded\n",
      "shard_3231 loaded\n",
      "shard_45249 loaded\n",
      "shard_18167 loaded\n",
      "shard_27071 loaded\n",
      "shard_24281 loaded\n",
      "shard_40580 loaded\n",
      "shard_44999 loaded\n",
      "shard_46965 loaded\n",
      "shard_10501 loaded\n",
      "shard_23199 loaded\n",
      "shard_30986 loaded\n",
      "shard_32107 loaded\n",
      "shard_24972 loaded\n",
      "shard_28382 loaded\n",
      "shard_38847 loaded\n",
      "shard_23174 loaded\n",
      "shard_13227 loaded\n",
      "shard_48203 loaded\n",
      "shard_400 loaded\n",
      "shard_5810 loaded\n",
      "shard_7381 loaded\n",
      "shard_44396 loaded\n",
      "shard_39416 loaded\n",
      "shard_18150 loaded\n",
      "shard_48286 loaded\n",
      "shard_33526 loaded\n",
      "shard_24804 loaded\n",
      "shard_49245 loaded\n",
      "shard_15577 loaded\n",
      "shard_37185 loaded\n",
      "shard_26990 loaded\n",
      "shard_19767 loaded\n",
      "shard_41972 loaded\n",
      "shard_45399 loaded\n",
      "shard_34910 loaded\n",
      "shard_24831 loaded\n",
      "shard_14036 loaded\n",
      "shard_14302 loaded\n",
      "shard_22411 loaded\n",
      "shard_42947 loaded\n",
      "shard_1965 loaded\n",
      "shard_24317 loaded\n",
      "shard_47918 loaded\n",
      "shard_5047 loaded\n",
      "shard_3043 loaded\n",
      "shard_11000 loaded\n",
      "shard_38274 loaded\n",
      "shard_4788 loaded\n",
      "shard_23276 loaded\n",
      "shard_37591 loaded\n",
      "shard_19339 loaded\n",
      "shard_47764 loaded\n",
      "shard_8757 loaded\n",
      "shard_46744 loaded\n",
      "shard_33934 loaded\n",
      "shard_31344 loaded\n",
      "shard_41899 loaded\n",
      "shard_9603 loaded\n",
      "shard_4339 loaded\n",
      "shard_19050 loaded\n",
      "shard_24869 loaded\n",
      "shard_16756 loaded\n",
      "shard_24637 loaded\n",
      "shard_31155 loaded\n",
      "shard_44750 loaded\n",
      "shard_9969 loaded\n",
      "shard_21556 loaded\n",
      "shard_43615 loaded\n",
      "shard_29179 loaded\n",
      "shard_6576 loaded\n",
      "shard_31535 loaded\n",
      "shard_40490 loaded\n",
      "shard_48988 loaded\n",
      "shard_40488 loaded\n",
      "shard_40945 loaded\n",
      "shard_13825 loaded\n",
      "shard_46238 loaded\n",
      "shard_744 loaded\n",
      "shard_7358 loaded\n",
      "shard_15396 loaded\n",
      "shard_28880 loaded\n",
      "shard_25714 loaded\n",
      "shard_14929 loaded\n",
      "shard_19454 loaded\n",
      "shard_388 loaded\n",
      "shard_18112 loaded\n",
      "shard_3020 loaded\n",
      "shard_858 loaded\n",
      "shard_48155 loaded\n",
      "shard_22926 loaded\n",
      "shard_2622 loaded\n",
      "shard_8570 loaded\n",
      "shard_34515 loaded\n",
      "shard_38156 loaded\n",
      "shard_13848 loaded\n",
      "shard_36302 loaded\n",
      "shard_21686 loaded\n",
      "shard_38270 loaded\n",
      "shard_46655 loaded\n",
      "shard_39880 loaded\n",
      "shard_6161 loaded\n",
      "shard_21638 loaded\n",
      "shard_44795 loaded\n",
      "shard_33303 loaded\n",
      "shard_748 loaded\n",
      "shard_5645 loaded\n",
      "shard_2769 loaded\n",
      "shard_16836 loaded\n",
      "shard_31696 loaded\n",
      "shard_17062 loaded\n",
      "shard_42733 loaded\n",
      "shard_5154 loaded\n",
      "shard_23264 loaded\n",
      "shard_40183 loaded\n",
      "shard_17782 loaded\n",
      "shard_34882 loaded\n",
      "shard_23042 loaded\n",
      "shard_5028 loaded\n",
      "shard_40532 loaded\n",
      "shard_6519 loaded\n",
      "shard_5573 loaded\n",
      "shard_9875 loaded\n",
      "shard_4236 loaded\n",
      "shard_33268 loaded\n",
      "shard_36634 loaded\n",
      "shard_3359 loaded\n",
      "shard_44290 loaded\n",
      "shard_18726 loaded\n",
      "shard_38496 loaded\n",
      "shard_42564 loaded\n",
      "shard_42563 loaded\n",
      "shard_23733 loaded\n",
      "shard_34036 loaded\n",
      "shard_49242 loaded\n",
      "shard_13290 loaded\n",
      "shard_10391 loaded\n",
      "shard_5776 loaded\n",
      "shard_16732 loaded\n",
      "shard_5431 loaded\n",
      "shard_11532 loaded\n",
      "shard_25034 loaded\n",
      "shard_34945 loaded\n",
      "shard_26603 loaded\n",
      "shard_10047 loaded\n",
      "shard_1527 loaded\n",
      "shard_8478 loaded\n",
      "shard_18448 loaded\n",
      "shard_7700 loaded\n",
      "shard_30699 loaded\n",
      "shard_16051 loaded\n",
      "shard_49436 loaded\n",
      "shard_32759 loaded\n",
      "shard_15719 loaded\n",
      "shard_32111 loaded\n",
      "shard_36913 loaded\n",
      "shard_21162 loaded\n",
      "shard_36580 loaded\n",
      "shard_22468 loaded\n",
      "shard_40665 loaded\n",
      "shard_23663 loaded\n",
      "shard_31073 loaded\n",
      "shard_5978 loaded\n",
      "shard_16358 loaded\n",
      "shard_20802 loaded\n",
      "shard_8257 loaded\n",
      "shard_11219 loaded\n",
      "shard_26034 loaded\n",
      "shard_20857 loaded\n",
      "shard_12717 loaded\n",
      "shard_39709 loaded\n",
      "shard_13846 loaded\n",
      "shard_47183 loaded\n",
      "shard_7887 loaded\n",
      "shard_18931 loaded\n",
      "shard_20226 loaded\n",
      "shard_5270 loaded\n",
      "shard_34303 loaded\n",
      "shard_5435 loaded\n",
      "shard_24768 loaded\n",
      "shard_22151 loaded\n",
      "shard_22650 loaded\n",
      "shard_28807 loaded\n",
      "shard_37532 loaded\n",
      "shard_20620 loaded\n",
      "shard_18020 loaded\n",
      "shard_42409 loaded\n",
      "shard_24669 loaded\n",
      "shard_48074 loaded\n",
      "shard_43181 loaded\n",
      "shard_25207 loaded\n",
      "shard_9698 loaded\n",
      "shard_9808 loaded\n",
      "shard_16016 loaded\n",
      "shard_31219 loaded\n",
      "shard_44642 loaded\n",
      "shard_46468 loaded\n",
      "shard_27788 loaded\n",
      "shard_41581 loaded\n",
      "shard_31826 loaded\n",
      "shard_12911 loaded\n",
      "shard_31503 loaded\n",
      "shard_39285 loaded\n",
      "shard_16343 loaded\n",
      "shard_44100 loaded\n",
      "shard_48149 loaded\n",
      "shard_15166 loaded\n",
      "shard_16511 loaded\n",
      "shard_18970 loaded\n",
      "shard_35973 loaded\n",
      "shard_36163 loaded\n",
      "shard_18137 loaded\n",
      "shard_21407 loaded\n",
      "shard_44081 loaded\n",
      "shard_3897 loaded\n",
      "shard_26114 loaded\n",
      "shard_12300 loaded\n",
      "shard_33424 loaded\n",
      "shard_14592 loaded\n",
      "shard_17023 loaded\n",
      "shard_7641 loaded\n",
      "shard_33684 loaded\n",
      "shard_3154 loaded\n",
      "shard_38027 loaded\n",
      "shard_18629 loaded\n",
      "shard_20193 loaded\n",
      "shard_35814 loaded\n",
      "shard_30928 loaded\n",
      "shard_20824 loaded\n",
      "shard_21921 loaded\n",
      "shard_44444 loaded\n",
      "shard_2828 loaded\n",
      "shard_29963 loaded\n",
      "shard_38890 loaded\n",
      "shard_41065 loaded\n",
      "shard_4228 loaded\n",
      "shard_20002 loaded\n",
      "shard_24833 loaded\n",
      "shard_47943 loaded\n",
      "shard_47412 loaded\n",
      "shard_49000 loaded\n",
      "shard_38083 loaded\n",
      "shard_39174 loaded\n",
      "shard_31883 loaded\n",
      "shard_19161 loaded\n",
      "shard_20184 loaded\n",
      "shard_23406 loaded\n",
      "shard_8046 loaded\n",
      "shard_34913 loaded\n",
      "shard_43130 loaded\n",
      "shard_9185 loaded\n",
      "shard_22982 loaded\n",
      "shard_7877 loaded\n",
      "shard_24211 loaded\n",
      "shard_34042 loaded\n",
      "shard_40977 loaded\n",
      "shard_40949 loaded\n",
      "shard_14338 loaded\n",
      "shard_23249 loaded\n",
      "shard_42202 loaded\n",
      "shard_48980 loaded\n",
      "shard_7889 loaded\n",
      "shard_43055 loaded\n",
      "shard_17587 loaded\n",
      "shard_8469 loaded\n",
      "shard_30081 loaded\n",
      "shard_40095 loaded\n",
      "shard_15961 loaded\n",
      "shard_38232 loaded\n",
      "shard_47542 loaded\n",
      "shard_25770 loaded\n",
      "shard_32552 loaded\n",
      "shard_29289 loaded\n",
      "shard_43235 loaded\n",
      "shard_11802 loaded\n",
      "shard_38181 loaded\n",
      "shard_42882 loaded\n",
      "shard_32568 loaded\n",
      "shard_29444 loaded\n",
      "shard_47747 loaded\n",
      "shard_2628 loaded\n",
      "shard_3879 loaded\n",
      "shard_38576 loaded\n",
      "shard_1559 loaded\n",
      "shard_4849 loaded\n",
      "shard_801 loaded\n",
      "shard_9059 loaded\n",
      "shard_6244 loaded\n",
      "shard_42851 loaded\n",
      "shard_41505 loaded\n",
      "shard_13535 loaded\n",
      "shard_33474 loaded\n",
      "shard_31036 loaded\n",
      "shard_39446 loaded\n",
      "shard_12536 loaded\n",
      "shard_43665 loaded\n",
      "shard_14558 loaded\n",
      "shard_19317 loaded\n",
      "shard_33210 loaded\n",
      "shard_34581 loaded\n",
      "shard_32635 loaded\n",
      "shard_29383 loaded\n",
      "shard_262 loaded\n",
      "shard_35298 loaded\n",
      "shard_42382 loaded\n",
      "shard_44544 loaded\n",
      "shard_15359 loaded\n",
      "shard_732 loaded\n",
      "shard_5982 loaded\n",
      "shard_2297 loaded\n",
      "shard_7029 loaded\n",
      "shard_16068 loaded\n",
      "shard_23616 loaded\n",
      "shard_37540 loaded\n",
      "shard_46881 loaded\n",
      "shard_24683 loaded\n",
      "shard_40526 loaded\n",
      "shard_3036 loaded\n",
      "shard_12096 loaded\n",
      "shard_41932 loaded\n",
      "shard_24148 loaded\n",
      "shard_12993 loaded\n",
      "shard_7788 loaded\n",
      "shard_11507 loaded\n",
      "shard_33484 loaded\n",
      "shard_45172 loaded\n",
      "shard_14903 loaded\n",
      "shard_49788 loaded\n",
      "shard_32437 loaded\n",
      "shard_34497 loaded\n",
      "shard_49142 loaded\n",
      "shard_18453 loaded\n",
      "shard_22245 loaded\n",
      "shard_3236 loaded\n",
      "shard_21205 loaded\n",
      "shard_12955 loaded\n",
      "shard_36501 loaded\n",
      "shard_21760 loaded\n",
      "shard_8122 loaded\n",
      "shard_32348 loaded\n",
      "shard_2393 loaded\n",
      "shard_26042 loaded\n",
      "shard_15812 loaded\n",
      "shard_24328 loaded\n",
      "shard_4748 loaded\n",
      "shard_45424 loaded\n",
      "shard_20325 loaded\n",
      "shard_31211 loaded\n",
      "shard_19441 loaded\n",
      "shard_40277 loaded\n",
      "shard_31286 loaded\n",
      "shard_28014 loaded\n",
      "shard_9792 loaded\n",
      "shard_14967 loaded\n",
      "shard_39517 loaded\n",
      "shard_42147 loaded\n",
      "shard_5598 loaded\n",
      "shard_44659 loaded\n",
      "shard_24172 loaded\n",
      "shard_2308 loaded\n",
      "shard_44111 loaded\n",
      "shard_27693 loaded\n",
      "shard_5505 loaded\n",
      "shard_46536 loaded\n",
      "shard_12946 loaded\n",
      "shard_26552 loaded\n",
      "shard_19452 loaded\n",
      "shard_25865 loaded\n",
      "shard_15987 loaded\n",
      "shard_23437 loaded\n",
      "shard_41455 loaded\n",
      "shard_47551 loaded\n",
      "shard_10629 loaded\n",
      "shard_12091 loaded\n",
      "shard_4086 loaded\n",
      "shard_31972 loaded\n",
      "shard_13260 loaded\n",
      "shard_9690 loaded\n",
      "shard_14404 loaded\n",
      "shard_14914 loaded\n",
      "shard_47572 loaded\n",
      "shard_34963 loaded\n",
      "shard_32326 loaded\n",
      "shard_28404 loaded\n",
      "shard_2093 loaded\n",
      "shard_12607 loaded\n",
      "shard_43708 loaded\n",
      "shard_38860 loaded\n",
      "shard_38846 loaded\n",
      "shard_23506 loaded\n",
      "shard_48183 loaded\n",
      "shard_18988 loaded\n",
      "shard_46147 loaded\n",
      "shard_48109 loaded\n",
      "shard_12797 loaded\n",
      "shard_42551 loaded\n",
      "shard_17656 loaded\n",
      "shard_30759 loaded\n",
      "shard_20924 loaded\n",
      "shard_18330 loaded\n",
      "shard_16671 loaded\n",
      "shard_29031 loaded\n",
      "shard_45034 loaded\n",
      "shard_21698 loaded\n",
      "shard_2142 loaded\n",
      "shard_18839 loaded\n",
      "shard_7525 loaded\n",
      "shard_17655 loaded\n",
      "shard_9755 loaded\n",
      "shard_31241 loaded\n",
      "shard_41730 loaded\n",
      "shard_32624 loaded\n",
      "shard_49998 loaded\n",
      "shard_38916 loaded\n",
      "shard_23633 loaded\n",
      "shard_14628 loaded\n",
      "shard_7139 loaded\n",
      "shard_36793 loaded\n",
      "shard_15253 loaded\n",
      "shard_12508 loaded\n",
      "shard_48343 loaded\n",
      "shard_5675 loaded\n",
      "shard_44986 loaded\n",
      "shard_47190 loaded\n",
      "shard_37990 loaded\n",
      "shard_41647 loaded\n",
      "shard_37183 loaded\n",
      "shard_5072 loaded\n",
      "shard_30290 loaded\n",
      "shard_2674 loaded\n",
      "shard_49896 loaded\n",
      "shard_22276 loaded\n",
      "shard_24934 loaded\n",
      "shard_23957 loaded\n",
      "shard_33167 loaded\n",
      "shard_16606 loaded\n",
      "shard_19202 loaded\n",
      "shard_29829 loaded\n",
      "shard_6828 loaded\n",
      "shard_211 loaded\n",
      "shard_38486 loaded\n",
      "shard_20722 loaded\n",
      "shard_8561 loaded\n",
      "shard_47954 loaded\n",
      "shard_1020 loaded\n",
      "shard_47131 loaded\n",
      "shard_45642 loaded\n",
      "shard_8915 loaded\n",
      "shard_6841 loaded\n",
      "shard_45973 loaded\n",
      "shard_24711 loaded\n",
      "shard_12984 loaded\n",
      "shard_44278 loaded\n",
      "shard_38931 loaded\n",
      "shard_1426 loaded\n",
      "shard_17800 loaded\n",
      "shard_21449 loaded\n",
      "shard_30942 loaded\n",
      "shard_27513 loaded\n",
      "shard_21282 loaded\n",
      "shard_5857 loaded\n",
      "shard_25280 loaded\n",
      "shard_29842 loaded\n",
      "shard_17274 loaded\n",
      "shard_44992 loaded\n",
      "shard_21285 loaded\n",
      "shard_40064 loaded\n",
      "shard_43151 loaded\n",
      "shard_2220 loaded\n",
      "shard_43631 loaded\n",
      "shard_10978 loaded\n",
      "shard_43478 loaded\n",
      "shard_19965 loaded\n",
      "shard_10607 loaded\n",
      "shard_40896 loaded\n",
      "shard_49763 loaded\n",
      "shard_33000 loaded\n",
      "shard_20469 loaded\n",
      "shard_28707 loaded\n",
      "shard_11182 loaded\n",
      "shard_24836 loaded\n",
      "shard_35636 loaded\n",
      "shard_4535 loaded\n",
      "shard_9047 loaded\n",
      "shard_21011 loaded\n",
      "shard_28271 loaded\n",
      "shard_13047 loaded\n",
      "shard_5145 loaded\n",
      "shard_46408 loaded\n",
      "shard_28888 loaded\n",
      "shard_14832 loaded\n",
      "shard_12786 loaded\n",
      "shard_44701 loaded\n",
      "shard_40747 loaded\n",
      "shard_2050 loaded\n",
      "shard_3070 loaded\n",
      "shard_24363 loaded\n",
      "shard_3696 loaded\n",
      "shard_32629 loaded\n",
      "shard_45703 loaded\n",
      "shard_46420 loaded\n",
      "shard_21415 loaded\n",
      "shard_41758 loaded\n",
      "shard_44193 loaded\n",
      "shard_47760 loaded\n",
      "shard_7171 loaded\n",
      "shard_41386 loaded\n",
      "shard_13440 loaded\n",
      "shard_26283 loaded\n",
      "shard_1648 loaded\n",
      "shard_30251 loaded\n",
      "shard_36340 loaded\n",
      "shard_36131 loaded\n",
      "shard_31560 loaded\n",
      "shard_29985 loaded\n",
      "shard_39904 loaded\n",
      "shard_20038 loaded\n",
      "shard_42325 loaded\n",
      "shard_47921 loaded\n",
      "shard_49665 loaded\n",
      "shard_45155 loaded\n",
      "shard_8740 loaded\n",
      "shard_28254 loaded\n",
      "shard_43221 loaded\n",
      "shard_28906 loaded\n",
      "shard_11471 loaded\n",
      "shard_39078 loaded\n",
      "shard_5185 loaded\n",
      "shard_15164 loaded\n",
      "shard_45176 loaded\n",
      "shard_27399 loaded\n",
      "shard_27756 loaded\n",
      "shard_41082 loaded\n",
      "shard_19600 loaded\n",
      "shard_27266 loaded\n",
      "shard_5113 loaded\n",
      "shard_24487 loaded\n",
      "shard_42671 loaded\n",
      "shard_42255 loaded\n",
      "shard_29097 loaded\n",
      "shard_46873 loaded\n",
      "shard_36767 loaded\n",
      "shard_43314 loaded\n",
      "shard_27417 loaded\n",
      "shard_14764 loaded\n",
      "shard_48094 loaded\n",
      "shard_49811 loaded\n",
      "shard_29673 loaded\n",
      "shard_7816 loaded\n",
      "shard_30121 loaded\n",
      "shard_41801 loaded\n",
      "shard_18742 loaded\n",
      "shard_38724 loaded\n",
      "shard_5920 loaded\n",
      "shard_41168 loaded\n",
      "shard_22406 loaded\n",
      "shard_317 loaded\n",
      "shard_29421 loaded\n",
      "shard_45950 loaded\n",
      "shard_32071 loaded\n",
      "shard_3254 loaded\n",
      "shard_26930 loaded\n",
      "shard_38606 loaded\n",
      "shard_10286 loaded\n",
      "shard_8621 loaded\n",
      "shard_23456 loaded\n",
      "shard_29872 loaded\n",
      "shard_14733 loaded\n",
      "shard_36787 loaded\n",
      "shard_20408 loaded\n",
      "shard_21188 loaded\n",
      "shard_34885 loaded\n",
      "shard_27115 loaded\n",
      "shard_41664 loaded\n",
      "shard_18996 loaded\n",
      "shard_20485 loaded\n",
      "shard_10419 loaded\n",
      "shard_12967 loaded\n",
      "shard_8072 loaded\n",
      "shard_2864 loaded\n",
      "shard_14724 loaded\n",
      "shard_842 loaded\n",
      "shard_35234 loaded\n",
      "shard_5667 loaded\n",
      "shard_341 loaded\n",
      "shard_31641 loaded\n",
      "shard_41261 loaded\n",
      "shard_22011 loaded\n",
      "shard_42175 loaded\n",
      "shard_31323 loaded\n",
      "shard_32490 loaded\n",
      "shard_34025 loaded\n",
      "shard_34427 loaded\n",
      "shard_41474 loaded\n",
      "shard_23696 loaded\n",
      "shard_16089 loaded\n",
      "shard_3978 loaded\n",
      "shard_8931 loaded\n",
      "shard_25674 loaded\n",
      "shard_34365 loaded\n",
      "shard_45341 loaded\n",
      "shard_35418 loaded\n",
      "shard_48616 loaded\n",
      "shard_42313 loaded\n",
      "shard_19106 loaded\n",
      "shard_27139 loaded\n",
      "shard_28745 loaded\n",
      "shard_34858 loaded\n",
      "shard_2764 loaded\n",
      "shard_47687 loaded\n",
      "shard_16100 loaded\n",
      "shard_31895 loaded\n",
      "shard_11938 loaded\n",
      "shard_21963 loaded\n",
      "shard_6008 loaded\n",
      "shard_17390 loaded\n",
      "shard_34194 loaded\n",
      "shard_37624 loaded\n",
      "shard_30398 loaded\n",
      "shard_28448 loaded\n",
      "shard_19143 loaded\n",
      "shard_46455 loaded\n",
      "shard_35554 loaded\n",
      "shard_4270 loaded\n",
      "shard_35695 loaded\n",
      "shard_8974 loaded\n",
      "shard_9346 loaded\n",
      "shard_31135 loaded\n",
      "shard_25664 loaded\n",
      "shard_8707 loaded\n",
      "shard_22953 loaded\n",
      "shard_16314 loaded\n",
      "shard_10342 loaded\n",
      "shard_6565 loaded\n",
      "shard_29740 loaded\n",
      "shard_42115 loaded\n",
      "shard_35243 loaded\n",
      "shard_33790 loaded\n",
      "shard_49900 loaded\n",
      "shard_15419 loaded\n",
      "shard_15422 loaded\n",
      "shard_40555 loaded\n",
      "shard_5716 loaded\n",
      "shard_471 loaded\n",
      "shard_31147 loaded\n",
      "shard_12915 loaded\n",
      "shard_48934 loaded\n",
      "shard_22798 loaded\n",
      "shard_40468 loaded\n",
      "shard_15428 loaded\n",
      "shard_16298 loaded\n",
      "shard_21084 loaded\n",
      "shard_22249 loaded\n",
      "shard_20227 loaded\n",
      "shard_3754 loaded\n",
      "shard_43411 loaded\n",
      "shard_49073 loaded\n",
      "shard_23941 loaded\n",
      "shard_33801 loaded\n",
      "shard_22746 loaded\n",
      "shard_6221 loaded\n",
      "shard_8500 loaded\n",
      "shard_1873 loaded\n",
      "shard_18652 loaded\n",
      "shard_25954 loaded\n",
      "shard_42418 loaded\n",
      "shard_9519 loaded\n",
      "shard_39816 loaded\n",
      "shard_4061 loaded\n",
      "shard_11262 loaded\n",
      "shard_15572 loaded\n",
      "shard_2143 loaded\n",
      "shard_43796 loaded\n",
      "shard_47897 loaded\n",
      "shard_38379 loaded\n",
      "shard_6401 loaded\n",
      "shard_26988 loaded\n",
      "shard_18316 loaded\n",
      "shard_29559 loaded\n",
      "shard_38663 loaded\n",
      "shard_32280 loaded\n",
      "shard_3157 loaded\n",
      "shard_14219 loaded\n",
      "shard_35085 loaded\n",
      "shard_49951 loaded\n",
      "shard_14833 loaded\n",
      "shard_448 loaded\n",
      "shard_7934 loaded\n",
      "shard_10163 loaded\n",
      "shard_6404 loaded\n",
      "shard_1524 loaded\n",
      "shard_9358 loaded\n",
      "shard_24750 loaded\n",
      "shard_17436 loaded\n",
      "shard_42213 loaded\n",
      "shard_13201 loaded\n",
      "shard_15405 loaded\n",
      "shard_24345 loaded\n",
      "shard_10379 loaded\n",
      "shard_41672 loaded\n",
      "shard_15614 loaded\n",
      "shard_22051 loaded\n",
      "shard_38464 loaded\n",
      "shard_49075 loaded\n",
      "shard_27930 loaded\n",
      "shard_16182 loaded\n",
      "shard_14518 loaded\n",
      "shard_36657 loaded\n",
      "shard_35538 loaded\n",
      "shard_15636 loaded\n",
      "shard_3826 loaded\n",
      "shard_9561 loaded\n",
      "shard_2999 loaded\n",
      "shard_24001 loaded\n",
      "shard_29892 loaded\n",
      "shard_17464 loaded\n",
      "shard_30889 loaded\n",
      "shard_21552 loaded\n",
      "shard_34799 loaded\n",
      "shard_15204 loaded\n",
      "shard_29319 loaded\n",
      "shard_31903 loaded\n",
      "shard_34754 loaded\n",
      "shard_31543 loaded\n",
      "shard_25955 loaded\n",
      "shard_36151 loaded\n",
      "shard_3922 loaded\n",
      "shard_26899 loaded\n",
      "shard_25709 loaded\n",
      "shard_42712 loaded\n",
      "shard_6758 loaded\n",
      "shard_47776 loaded\n",
      "shard_23023 loaded\n",
      "shard_49390 loaded\n",
      "shard_48271 loaded\n",
      "shard_27510 loaded\n",
      "shard_37402 loaded\n",
      "shard_48266 loaded\n",
      "shard_19146 loaded\n",
      "shard_44104 loaded\n",
      "shard_19204 loaded\n",
      "shard_47333 loaded\n",
      "shard_1891 loaded\n",
      "shard_42701 loaded\n",
      "shard_23397 loaded\n",
      "shard_17931 loaded\n",
      "shard_17410 loaded\n",
      "shard_26060 loaded\n",
      "shard_21096 loaded\n",
      "shard_305 loaded\n",
      "shard_32503 loaded\n",
      "shard_23211 loaded\n",
      "shard_11934 loaded\n",
      "shard_17316 loaded\n",
      "shard_33724 loaded\n",
      "shard_21012 loaded\n",
      "shard_3528 loaded\n",
      "shard_48055 loaded\n",
      "shard_14432 loaded\n",
      "shard_45766 loaded\n",
      "shard_37919 loaded\n",
      "shard_8770 loaded\n",
      "shard_3728 loaded\n",
      "shard_22552 loaded\n",
      "shard_19255 loaded\n",
      "shard_21238 loaded\n",
      "shard_5274 loaded\n",
      "shard_12042 loaded\n",
      "shard_7081 loaded\n",
      "shard_31770 loaded\n",
      "shard_40524 loaded\n",
      "shard_7710 loaded\n",
      "shard_43273 loaded\n",
      "shard_25894 loaded\n",
      "shard_12765 loaded\n",
      "shard_25417 loaded\n",
      "shard_45891 loaded\n",
      "shard_44617 loaded\n",
      "shard_28738 loaded\n",
      "shard_46820 loaded\n",
      "shard_17689 loaded\n",
      "shard_18288 loaded\n",
      "shard_8513 loaded\n",
      "shard_37437 loaded\n",
      "shard_25839 loaded\n",
      "shard_27743 loaded\n",
      "shard_26408 loaded\n",
      "shard_39838 loaded\n",
      "shard_23455 loaded\n",
      "shard_25191 loaded\n",
      "shard_14717 loaded\n",
      "shard_17478 loaded\n",
      "shard_24178 loaded\n",
      "shard_27326 loaded\n",
      "shard_22684 loaded\n",
      "shard_46509 loaded\n",
      "shard_49819 loaded\n",
      "shard_37320 loaded\n",
      "shard_2886 loaded\n",
      "shard_2690 loaded\n",
      "shard_2679 loaded\n",
      "shard_45481 loaded\n",
      "shard_3308 loaded\n",
      "shard_20596 loaded\n",
      "shard_34192 loaded\n",
      "shard_14943 loaded\n",
      "shard_35314 loaded\n",
      "shard_39531 loaded\n",
      "shard_36884 loaded\n",
      "shard_22327 loaded\n",
      "shard_48072 loaded\n",
      "shard_12655 loaded\n",
      "shard_21562 loaded\n",
      "shard_32233 loaded\n",
      "shard_6692 loaded\n",
      "shard_16619 loaded\n",
      "shard_44269 loaded\n",
      "shard_13531 loaded\n",
      "shard_3811 loaded\n",
      "shard_32181 loaded\n",
      "shard_31718 loaded\n",
      "shard_8514 loaded\n",
      "shard_7282 loaded\n",
      "shard_11951 loaded\n",
      "shard_4095 loaded\n",
      "shard_3032 loaded\n",
      "shard_44138 loaded\n",
      "shard_27590 loaded\n",
      "shard_14529 loaded\n",
      "shard_9267 loaded\n",
      "shard_33991 loaded\n",
      "shard_16108 loaded\n",
      "shard_24378 loaded\n",
      "shard_41023 loaded\n",
      "shard_19970 loaded\n",
      "shard_14969 loaded\n",
      "shard_1865 loaded\n",
      "shard_38072 loaded\n",
      "shard_42388 loaded\n",
      "shard_30792 loaded\n",
      "shard_28532 loaded\n",
      "shard_48321 loaded\n",
      "shard_49362 loaded\n",
      "shard_17641 loaded\n",
      "shard_34416 loaded\n",
      "shard_3764 loaded\n",
      "shard_28093 loaded\n",
      "shard_38940 loaded\n",
      "shard_10760 loaded\n",
      "shard_11363 loaded\n",
      "shard_3699 loaded\n",
      "shard_43329 loaded\n",
      "shard_3828 loaded\n",
      "shard_9038 loaded\n",
      "shard_37478 loaded\n",
      "shard_7697 loaded\n",
      "shard_35357 loaded\n",
      "shard_25636 loaded\n",
      "shard_42432 loaded\n",
      "shard_26775 loaded\n",
      "shard_4887 loaded\n",
      "shard_9633 loaded\n",
      "shard_19869 loaded\n",
      "shard_6518 loaded\n",
      "shard_18600 loaded\n",
      "shard_20781 loaded\n",
      "shard_28653 loaded\n",
      "shard_30351 loaded\n",
      "shard_34592 loaded\n",
      "shard_30793 loaded\n",
      "shard_22615 loaded\n",
      "shard_38132 loaded\n",
      "shard_3108 loaded\n",
      "shard_31482 loaded\n",
      "shard_29302 loaded\n",
      "shard_36087 loaded\n",
      "shard_2327 loaded\n",
      "shard_39961 loaded\n",
      "shard_3700 loaded\n",
      "shard_18201 loaded\n",
      "shard_41169 loaded\n",
      "shard_32882 loaded\n",
      "shard_16653 loaded\n",
      "shard_47497 loaded\n",
      "shard_22131 loaded\n",
      "shard_338 loaded\n",
      "shard_38082 loaded\n",
      "shard_45550 loaded\n",
      "shard_14222 loaded\n",
      "shard_21498 loaded\n",
      "shard_38646 loaded\n",
      "shard_13699 loaded\n",
      "shard_33437 loaded\n",
      "shard_32135 loaded\n",
      "shard_2577 loaded\n",
      "shard_23434 loaded\n",
      "shard_44647 loaded\n",
      "shard_41218 loaded\n",
      "shard_47062 loaded\n",
      "shard_19973 loaded\n",
      "shard_2650 loaded\n",
      "shard_28539 loaded\n",
      "shard_26550 loaded\n",
      "shard_21695 loaded\n",
      "shard_10576 loaded\n",
      "shard_42312 loaded\n",
      "shard_16584 loaded\n",
      "shard_35431 loaded\n",
      "shard_13988 loaded\n",
      "shard_46660 loaded\n",
      "shard_7702 loaded\n",
      "shard_40244 loaded\n",
      "shard_47205 loaded\n",
      "shard_45327 loaded\n",
      "shard_28476 loaded\n",
      "shard_37162 loaded\n",
      "shard_2910 loaded\n",
      "shard_21033 loaded\n",
      "shard_8412 loaded\n",
      "shard_28812 loaded\n",
      "shard_25851 loaded\n",
      "shard_2604 loaded\n",
      "shard_40150 loaded\n",
      "shard_45257 loaded\n",
      "shard_36235 loaded\n",
      "shard_47630 loaded\n",
      "shard_22550 loaded\n",
      "shard_36865 loaded\n",
      "shard_29821 loaded\n",
      "shard_39180 loaded\n",
      "shard_15328 loaded\n",
      "shard_16340 loaded\n",
      "shard_20094 loaded\n",
      "shard_20658 loaded\n",
      "shard_4449 loaded\n",
      "shard_32093 loaded\n",
      "shard_16371 loaded\n",
      "shard_32980 loaded\n",
      "shard_29910 loaded\n",
      "shard_36483 loaded\n",
      "shard_15197 loaded\n",
      "shard_17434 loaded\n",
      "shard_47112 loaded\n",
      "shard_16637 loaded\n",
      "shard_14739 loaded\n",
      "shard_36215 loaded\n",
      "shard_30487 loaded\n",
      "shard_11864 loaded\n",
      "shard_48092 loaded\n",
      "shard_5039 loaded\n",
      "shard_3257 loaded\n",
      "shard_6878 loaded\n",
      "shard_37130 loaded\n",
      "shard_19219 loaded\n",
      "shard_32779 loaded\n",
      "shard_4742 loaded\n",
      "shard_13777 loaded\n",
      "shard_29332 loaded\n",
      "shard_8292 loaded\n",
      "shard_18770 loaded\n",
      "shard_33442 loaded\n",
      "shard_39164 loaded\n",
      "shard_36188 loaded\n",
      "shard_47549 loaded\n",
      "shard_47316 loaded\n",
      "shard_42632 loaded\n",
      "shard_3300 loaded\n",
      "shard_34226 loaded\n",
      "shard_43018 loaded\n",
      "shard_24991 loaded\n",
      "shard_26303 loaded\n",
      "shard_27539 loaded\n",
      "shard_843 loaded\n",
      "shard_13136 loaded\n",
      "shard_769 loaded\n",
      "shard_16551 loaded\n",
      "shard_22902 loaded\n",
      "shard_13166 loaded\n",
      "shard_15888 loaded\n",
      "shard_14796 loaded\n",
      "shard_4977 loaded\n",
      "shard_41856 loaded\n",
      "shard_38526 loaded\n",
      "shard_13668 loaded\n",
      "shard_6925 loaded\n",
      "shard_36619 loaded\n",
      "shard_29478 loaded\n",
      "shard_42877 loaded\n",
      "shard_16981 loaded\n",
      "shard_31029 loaded\n",
      "shard_2917 loaded\n",
      "shard_1979 loaded\n",
      "shard_29581 loaded\n",
      "shard_49480 loaded\n",
      "shard_45094 loaded\n",
      "shard_27148 loaded\n",
      "shard_43664 loaded\n",
      "shard_5414 loaded\n",
      "shard_48920 loaded\n",
      "shard_1848 loaded\n",
      "shard_39678 loaded\n",
      "shard_44107 loaded\n",
      "shard_17347 loaded\n",
      "shard_45265 loaded\n",
      "shard_6880 loaded\n",
      "shard_661 loaded\n",
      "shard_40589 loaded\n",
      "shard_6837 loaded\n",
      "shard_9977 loaded\n",
      "shard_30937 loaded\n",
      "shard_40848 loaded\n",
      "shard_29630 loaded\n",
      "shard_7899 loaded\n",
      "shard_35444 loaded\n",
      "shard_47247 loaded\n",
      "shard_30385 loaded\n",
      "shard_42098 loaded\n",
      "shard_46128 loaded\n",
      "shard_10623 loaded\n",
      "shard_20536 loaded\n",
      "shard_39569 loaded\n",
      "shard_45188 loaded\n",
      "shard_33140 loaded\n",
      "shard_25642 loaded\n",
      "shard_10496 loaded\n",
      "shard_15395 loaded\n",
      "shard_42755 loaded\n",
      "shard_43326 loaded\n",
      "shard_28336 loaded\n",
      "shard_8533 loaded\n",
      "shard_39847 loaded\n",
      "shard_39712 loaded\n",
      "shard_25336 loaded\n",
      "shard_4792 loaded\n",
      "shard_27062 loaded\n",
      "shard_11131 loaded\n",
      "shard_22076 loaded\n",
      "shard_30722 loaded\n",
      "shard_44343 loaded\n",
      "shard_34697 loaded\n",
      "shard_16529 loaded\n",
      "shard_16395 loaded\n",
      "shard_2952 loaded\n",
      "shard_9854 loaded\n",
      "shard_44575 loaded\n",
      "shard_22463 loaded\n",
      "shard_32306 loaded\n",
      "shard_13943 loaded\n",
      "shard_45461 loaded\n",
      "shard_9837 loaded\n",
      "shard_35871 loaded\n",
      "shard_29016 loaded\n",
      "shard_17549 loaded\n",
      "shard_30578 loaded\n",
      "shard_41640 loaded\n",
      "shard_41170 loaded\n",
      "shard_21416 loaded\n",
      "shard_31787 loaded\n",
      "shard_39277 loaded\n",
      "shard_28574 loaded\n",
      "shard_13352 loaded\n",
      "shard_20024 loaded\n",
      "shard_47129 loaded\n",
      "shard_29225 loaded\n",
      "shard_13453 loaded\n",
      "shard_24599 loaded\n",
      "shard_38748 loaded\n",
      "shard_13312 loaded\n",
      "shard_46891 loaded\n",
      "shard_21906 loaded\n",
      "shard_7819 loaded\n",
      "shard_30667 loaded\n",
      "shard_21607 loaded\n",
      "shard_42334 loaded\n",
      "shard_24660 loaded\n",
      "shard_40672 loaded\n",
      "shard_45406 loaded\n",
      "shard_43635 loaded\n",
      "shard_30772 loaded\n",
      "shard_15734 loaded\n",
      "shard_21263 loaded\n",
      "shard_36046 loaded\n",
      "shard_17077 loaded\n",
      "shard_26715 loaded\n",
      "shard_14477 loaded\n",
      "shard_8066 loaded\n",
      "shard_25131 loaded\n",
      "shard_1205 loaded\n",
      "shard_18337 loaded\n",
      "shard_25881 loaded\n",
      "shard_47757 loaded\n",
      "shard_22792 loaded\n",
      "shard_31010 loaded\n",
      "shard_48099 loaded\n",
      "shard_19824 loaded\n",
      "shard_49560 loaded\n",
      "shard_14934 loaded\n",
      "shard_21422 loaded\n",
      "shard_3755 loaded\n",
      "shard_38693 loaded\n",
      "shard_25927 loaded\n",
      "shard_44831 loaded\n",
      "shard_36434 loaded\n",
      "shard_18663 loaded\n",
      "shard_46279 loaded\n",
      "shard_7430 loaded\n",
      "shard_9865 loaded\n",
      "shard_654 loaded\n",
      "shard_4491 loaded\n",
      "shard_46615 loaded\n",
      "shard_17065 loaded\n",
      "shard_44377 loaded\n",
      "shard_33627 loaded\n",
      "shard_25566 loaded\n",
      "shard_3091 loaded\n",
      "shard_1776 loaded\n",
      "shard_29886 loaded\n",
      "shard_15077 loaded\n",
      "shard_18755 loaded\n",
      "shard_38026 loaded\n",
      "shard_25988 loaded\n",
      "shard_15499 loaded\n",
      "shard_30449 loaded\n",
      "shard_41465 loaded\n",
      "shard_26107 loaded\n",
      "shard_14630 loaded\n",
      "shard_23435 loaded\n",
      "shard_42982 loaded\n",
      "shard_3536 loaded\n",
      "shard_5988 loaded\n",
      "shard_33220 loaded\n",
      "shard_36801 loaded\n",
      "shard_22797 loaded\n",
      "shard_7169 loaded\n",
      "shard_46813 loaded\n",
      "shard_1673 loaded\n",
      "shard_6732 loaded\n",
      "shard_35426 loaded\n",
      "shard_20706 loaded\n",
      "shard_4486 loaded\n",
      "shard_29677 loaded\n",
      "shard_29636 loaded\n",
      "shard_44757 loaded\n",
      "shard_16779 loaded\n",
      "shard_18403 loaded\n",
      "shard_24803 loaded\n",
      "shard_11718 loaded\n",
      "shard_10373 loaded\n",
      "shard_10011 loaded\n",
      "shard_42549 loaded\n",
      "shard_4177 loaded\n",
      "shard_284 loaded\n",
      "shard_12544 loaded\n",
      "shard_19942 loaded\n",
      "shard_2456 loaded\n",
      "shard_2601 loaded\n",
      "shard_48186 loaded\n",
      "shard_30948 loaded\n",
      "shard_4159 loaded\n",
      "shard_35632 loaded\n",
      "shard_48422 loaded\n",
      "shard_40579 loaded\n",
      "shard_47098 loaded\n",
      "shard_14087 loaded\n",
      "shard_46105 loaded\n",
      "shard_18826 loaded\n",
      "shard_19760 loaded\n",
      "shard_20910 loaded\n",
      "shard_37448 loaded\n",
      "shard_14346 loaded\n",
      "shard_9422 loaded\n",
      "shard_49123 loaded\n",
      "shard_7958 loaded\n",
      "shard_3219 loaded\n",
      "shard_35616 loaded\n",
      "shard_42336 loaded\n",
      "shard_41260 loaded\n",
      "shard_30975 loaded\n",
      "shard_28978 loaded\n",
      "shard_3562 loaded\n",
      "shard_24854 loaded\n",
      "shard_35191 loaded\n",
      "shard_4247 loaded\n",
      "shard_10054 loaded\n",
      "shard_37942 loaded\n",
      "shard_7497 loaded\n",
      "shard_7323 loaded\n",
      "shard_4741 loaded\n",
      "shard_6927 loaded\n",
      "shard_5001 loaded\n",
      "shard_48781 loaded\n",
      "shard_32171 loaded\n",
      "shard_10970 loaded\n",
      "shard_43249 loaded\n",
      "shard_38036 loaded\n",
      "shard_32990 loaded\n",
      "shard_37424 loaded\n",
      "shard_11350 loaded\n",
      "shard_3484 loaded\n",
      "shard_18860 loaded\n",
      "shard_12963 loaded\n",
      "shard_40577 loaded\n",
      "shard_28857 loaded\n",
      "shard_22366 loaded\n",
      "shard_45483 loaded\n",
      "shard_39231 loaded\n",
      "shard_4958 loaded\n",
      "shard_33754 loaded\n",
      "shard_5893 loaded\n",
      "shard_32824 loaded\n",
      "shard_46040 loaded\n",
      "shard_8920 loaded\n",
      "shard_33405 loaded\n",
      "shard_42479 loaded\n",
      "shard_40972 loaded\n",
      "shard_35495 loaded\n",
      "shard_17198 loaded\n",
      "shard_2033 loaded\n",
      "shard_16109 loaded\n",
      "shard_1007 loaded\n",
      "shard_10892 loaded\n",
      "shard_38562 loaded\n",
      "shard_18851 loaded\n",
      "shard_44695 loaded\n",
      "shard_17300 loaded\n",
      "shard_29124 loaded\n",
      "shard_21578 loaded\n",
      "shard_31333 loaded\n",
      "shard_30909 loaded\n",
      "shard_9386 loaded\n",
      "shard_26917 loaded\n",
      "shard_45881 loaded\n",
      "shard_29955 loaded\n",
      "shard_11707 loaded\n",
      "shard_4397 loaded\n",
      "shard_37675 loaded\n",
      "shard_2484 loaded\n",
      "shard_35054 loaded\n",
      "shard_16838 loaded\n",
      "shard_28655 loaded\n",
      "shard_30184 loaded\n",
      "shard_22523 loaded\n",
      "shard_10060 loaded\n",
      "shard_40680 loaded\n",
      "shard_13323 loaded\n",
      "shard_40728 loaded\n",
      "shard_13149 loaded\n",
      "shard_43256 loaded\n",
      "shard_4691 loaded\n",
      "shard_9665 loaded\n",
      "shard_5472 loaded\n",
      "shard_49584 loaded\n",
      "shard_30215 loaded\n",
      "shard_28575 loaded\n",
      "shard_26038 loaded\n",
      "shard_12767 loaded\n",
      "shard_20785 loaded\n",
      "shard_37812 loaded\n",
      "shard_26601 loaded\n",
      "shard_30571 loaded\n",
      "shard_18080 loaded\n",
      "shard_11732 loaded\n",
      "shard_8028 loaded\n",
      "shard_33427 loaded\n",
      "shard_43070 loaded\n",
      "shard_9511 loaded\n",
      "shard_49676 loaded\n",
      "shard_4083 loaded\n",
      "shard_42672 loaded\n",
      "shard_48247 loaded\n",
      "shard_24757 loaded\n",
      "shard_39320 loaded\n",
      "shard_15877 loaded\n",
      "shard_38737 loaded\n",
      "shard_3398 loaded\n",
      "shard_41178 loaded\n",
      "shard_8487 loaded\n",
      "shard_12504 loaded\n",
      "shard_44033 loaded\n",
      "shard_19069 loaded\n",
      "shard_39283 loaded\n",
      "shard_35728 loaded\n",
      "shard_3947 loaded\n",
      "shard_7651 loaded\n",
      "shard_16339 loaded\n",
      "shard_32129 loaded\n",
      "shard_30590 loaded\n",
      "shard_27064 loaded\n",
      "shard_1626 loaded\n",
      "shard_39916 loaded\n",
      "shard_25235 loaded\n",
      "shard_8988 loaded\n",
      "shard_39564 loaded\n",
      "shard_40737 loaded\n",
      "shard_20295 loaded\n",
      "shard_41171 loaded\n",
      "shard_28475 loaded\n",
      "shard_16652 loaded\n",
      "shard_47452 loaded\n",
      "shard_48408 loaded\n",
      "shard_49269 loaded\n",
      "shard_36491 loaded\n",
      "shard_9632 loaded\n",
      "shard_29897 loaded\n",
      "shard_27612 loaded\n",
      "shard_47108 loaded\n",
      "shard_25704 loaded\n",
      "shard_6676 loaded\n",
      "shard_42973 loaded\n",
      "shard_45305 loaded\n",
      "shard_11153 loaded\n",
      "shard_49937 loaded\n",
      "shard_21581 loaded\n",
      "shard_33115 loaded\n",
      "shard_11911 loaded\n",
      "shard_10169 loaded\n",
      "shard_4508 loaded\n",
      "shard_46627 loaded\n",
      "shard_31119 loaded\n",
      "shard_42032 loaded\n",
      "shard_40026 loaded\n",
      "shard_27703 loaded\n",
      "shard_43442 loaded\n",
      "shard_15185 loaded\n",
      "shard_11645 loaded\n",
      "shard_26459 loaded\n",
      "shard_42341 loaded\n",
      "shard_1810 loaded\n",
      "shard_3969 loaded\n",
      "shard_39251 loaded\n",
      "shard_17668 loaded\n",
      "shard_26758 loaded\n",
      "shard_38672 loaded\n",
      "shard_48760 loaded\n",
      "shard_10460 loaded\n",
      "shard_32560 loaded\n",
      "shard_49606 loaded\n",
      "shard_1595 loaded\n",
      "shard_38236 loaded\n",
      "shard_27732 loaded\n",
      "shard_11603 loaded\n",
      "shard_19410 loaded\n",
      "shard_47669 loaded\n",
      "shard_27527 loaded\n",
      "shard_15424 loaded\n",
      "shard_7064 loaded\n",
      "shard_10493 loaded\n",
      "shard_38295 loaded\n",
      "shard_23649 loaded\n",
      "shard_24297 loaded\n",
      "shard_13125 loaded\n",
      "shard_18764 loaded\n",
      "shard_9006 loaded\n",
      "shard_40571 loaded\n",
      "shard_22243 loaded\n",
      "shard_4003 loaded\n",
      "shard_46761 loaded\n",
      "shard_23659 loaded\n",
      "shard_30230 loaded\n",
      "shard_21998 loaded\n",
      "shard_4757 loaded\n",
      "shard_12673 loaded\n",
      "shard_20734 loaded\n",
      "shard_15127 loaded\n",
      "shard_6566 loaded\n",
      "shard_15606 loaded\n",
      "shard_845 loaded\n",
      "shard_40566 loaded\n",
      "shard_17286 loaded\n",
      "shard_40136 loaded\n",
      "shard_19438 loaded\n",
      "shard_15512 loaded\n",
      "shard_13107 loaded\n",
      "shard_36083 loaded\n",
      "shard_3361 loaded\n",
      "shard_46809 loaded\n",
      "shard_35291 loaded\n",
      "shard_27388 loaded\n",
      "shard_13881 loaded\n",
      "shard_20235 loaded\n",
      "shard_15807 loaded\n",
      "shard_40315 loaded\n",
      "shard_23773 loaded\n",
      "shard_18945 loaded\n",
      "shard_19193 loaded\n",
      "shard_27180 loaded\n",
      "shard_26253 loaded\n",
      "shard_17992 loaded\n",
      "shard_36621 loaded\n",
      "shard_20472 loaded\n",
      "shard_42664 loaded\n",
      "shard_45355 loaded\n",
      "shard_23661 loaded\n",
      "shard_24075 loaded\n",
      "shard_21802 loaded\n",
      "shard_42250 loaded\n",
      "shard_20243 loaded\n",
      "shard_42706 loaded\n",
      "shard_1466 loaded\n",
      "shard_42383 loaded\n",
      "shard_9697 loaded\n",
      "shard_12729 loaded\n",
      "shard_34833 loaded\n",
      "shard_43530 loaded\n",
      "shard_43653 loaded\n",
      "shard_16693 loaded\n",
      "shard_46911 loaded\n",
      "shard_39093 loaded\n",
      "shard_16845 loaded\n",
      "shard_44402 loaded\n",
      "shard_17409 loaded\n",
      "shard_44334 loaded\n",
      "shard_40438 loaded\n",
      "shard_48444 loaded\n",
      "shard_21414 loaded\n",
      "shard_35289 loaded\n",
      "shard_25578 loaded\n",
      "shard_1739 loaded\n",
      "shard_34998 loaded\n",
      "shard_16145 loaded\n",
      "shard_7660 loaded\n",
      "shard_23582 loaded\n",
      "shard_1469 loaded\n",
      "shard_35832 loaded\n",
      "shard_30225 loaded\n",
      "shard_16028 loaded\n",
      "shard_40601 loaded\n",
      "shard_45681 loaded\n",
      "shard_8953 loaded\n",
      "shard_6798 loaded\n",
      "shard_19976 loaded\n",
      "shard_17531 loaded\n",
      "shard_5468 loaded\n",
      "shard_9145 loaded\n",
      "shard_20881 loaded\n",
      "shard_7978 loaded\n",
      "shard_1219 loaded\n",
      "shard_15763 loaded\n",
      "shard_4346 loaded\n",
      "shard_42829 loaded\n",
      "shard_10106 loaded\n",
      "shard_26510 loaded\n",
      "shard_34744 loaded\n",
      "shard_19621 loaded\n",
      "shard_30132 loaded\n",
      "shard_2932 loaded\n",
      "shard_46332 loaded\n",
      "shard_39742 loaded\n",
      "shard_18788 loaded\n",
      "shard_18562 loaded\n",
      "shard_44198 loaded\n",
      "shard_45552 loaded\n",
      "shard_35722 loaded\n",
      "shard_49165 loaded\n",
      "shard_36819 loaded\n",
      "shard_7718 loaded\n",
      "shard_17921 loaded\n",
      "shard_20679 loaded\n",
      "shard_49926 loaded\n",
      "shard_33743 loaded\n",
      "shard_26480 loaded\n",
      "shard_7758 loaded\n",
      "shard_49358 loaded\n",
      "shard_7714 loaded\n",
      "shard_22700 loaded\n",
      "shard_49464 loaded\n",
      "shard_7836 loaded\n",
      "shard_9423 loaded\n",
      "shard_4782 loaded\n",
      "shard_38449 loaded\n",
      "shard_9474 loaded\n",
      "shard_22811 loaded\n",
      "shard_15281 loaded\n",
      "shard_47410 loaded\n",
      "shard_8917 loaded\n",
      "shard_44044 loaded\n",
      "shard_42281 loaded\n",
      "shard_36607 loaded\n",
      "shard_37507 loaded\n",
      "shard_28953 loaded\n",
      "shard_20064 loaded\n",
      "shard_10115 loaded\n",
      "shard_46741 loaded\n",
      "shard_276 loaded\n",
      "shard_31527 loaded\n",
      "shard_34255 loaded\n",
      "shard_30856 loaded\n",
      "shard_44491 loaded\n",
      "shard_48404 loaded\n",
      "shard_37772 loaded\n",
      "shard_33426 loaded\n",
      "shard_16370 loaded\n",
      "shard_26561 loaded\n",
      "shard_29519 loaded\n",
      "shard_37670 loaded\n",
      "shard_45087 loaded\n",
      "shard_28641 loaded\n",
      "shard_1604 loaded\n",
      "shard_42494 loaded\n",
      "shard_20269 loaded\n",
      "shard_24690 loaded\n",
      "shard_7972 loaded\n",
      "shard_33527 loaded\n",
      "shard_34628 loaded\n",
      "shard_43729 loaded\n",
      "shard_2585 loaded\n",
      "shard_265 loaded\n",
      "shard_4439 loaded\n",
      "shard_5296 loaded\n",
      "shard_18425 loaded\n",
      "shard_19156 loaded\n",
      "shard_23623 loaded\n",
      "shard_45713 loaded\n",
      "shard_20082 loaded\n",
      "shard_40053 loaded\n",
      "shard_26006 loaded\n",
      "shard_24377 loaded\n",
      "shard_32062 loaded\n",
      "shard_19907 loaded\n",
      "shard_25248 loaded\n",
      "shard_27611 loaded\n",
      "shard_7705 loaded\n",
      "shard_36989 loaded\n",
      "shard_42600 loaded\n",
      "shard_204 loaded\n",
      "shard_289 loaded\n",
      "shard_48797 loaded\n",
      "shard_31786 loaded\n",
      "shard_18294 loaded\n",
      "shard_2194 loaded\n",
      "shard_23383 loaded\n",
      "shard_42158 loaded\n",
      "shard_36866 loaded\n",
      "shard_34572 loaded\n",
      "shard_44292 loaded\n",
      "shard_17474 loaded\n",
      "shard_40939 loaded\n",
      "shard_29918 loaded\n",
      "shard_32652 loaded\n",
      "shard_7866 loaded\n",
      "shard_20767 loaded\n",
      "shard_9705 loaded\n",
      "shard_5252 loaded\n",
      "shard_35581 loaded\n",
      "shard_8265 loaded\n",
      "shard_5273 loaded\n",
      "shard_17947 loaded\n",
      "shard_24313 loaded\n",
      "shard_46666 loaded\n",
      "shard_1465 loaded\n",
      "shard_34698 loaded\n",
      "shard_37996 loaded\n",
      "shard_10395 loaded\n",
      "shard_22052 loaded\n",
      "shard_10301 loaded\n",
      "shard_33317 loaded\n",
      "shard_14910 loaded\n",
      "shard_44222 loaded\n",
      "shard_33240 loaded\n",
      "shard_2438 loaded\n",
      "shard_35962 loaded\n",
      "shard_11466 loaded\n",
      "shard_6223 loaded\n",
      "shard_15066 loaded\n",
      "shard_11677 loaded\n",
      "shard_1851 loaded\n",
      "shard_49212 loaded\n",
      "shard_18962 loaded\n",
      "shard_6779 loaded\n",
      "shard_6029 loaded\n",
      "shard_34421 loaded\n",
      "shard_11236 loaded\n",
      "shard_36336 loaded\n",
      "shard_42297 loaded\n",
      "shard_49904 loaded\n",
      "shard_12022 loaded\n",
      "shard_37547 loaded\n",
      "shard_13803 loaded\n",
      "shard_41514 loaded\n",
      "shard_2495 loaded\n",
      "shard_34309 loaded\n",
      "shard_32086 loaded\n",
      "shard_39511 loaded\n",
      "shard_34195 loaded\n",
      "shard_33422 loaded\n",
      "shard_30124 loaded\n",
      "shard_9393 loaded\n",
      "shard_44913 loaded\n",
      "shard_26 loaded\n",
      "shard_37020 loaded\n",
      "shard_3935 loaded\n",
      "shard_25251 loaded\n",
      "shard_17064 loaded\n",
      "shard_41875 loaded\n",
      "shard_7587 loaded\n",
      "shard_20584 loaded\n",
      "shard_9339 loaded\n",
      "shard_25206 loaded\n",
      "shard_23146 loaded\n",
      "shard_12092 loaded\n",
      "shard_8934 loaded\n",
      "shard_45936 loaded\n",
      "shard_14306 loaded\n",
      "shard_31085 loaded\n",
      "shard_19176 loaded\n",
      "shard_9203 loaded\n",
      "shard_21451 loaded\n",
      "shard_28115 loaded\n",
      "shard_32242 loaded\n",
      "shard_30960 loaded\n",
      "shard_49325 loaded\n",
      "shard_33187 loaded\n",
      "shard_35839 loaded\n",
      "shard_7653 loaded\n",
      "shard_22346 loaded\n",
      "shard_20434 loaded\n",
      "shard_13908 loaded\n",
      "shard_14520 loaded\n",
      "shard_47538 loaded\n",
      "shard_44693 loaded\n",
      "shard_11659 loaded\n",
      "shard_37003 loaded\n",
      "shard_46853 loaded\n",
      "shard_5680 loaded\n",
      "shard_30426 loaded\n",
      "shard_39817 loaded\n",
      "shard_26108 loaded\n",
      "shard_17537 loaded\n",
      "shard_8608 loaded\n",
      "shard_30679 loaded\n",
      "shard_13557 loaded\n",
      "shard_31594 loaded\n",
      "shard_49831 loaded\n",
      "shard_5465 loaded\n",
      "shard_37993 loaded\n",
      "shard_18819 loaded\n",
      "shard_17272 loaded\n",
      "shard_37421 loaded\n",
      "shard_11319 loaded\n",
      "shard_21045 loaded\n",
      "shard_29138 loaded\n",
      "shard_20612 loaded\n",
      "shard_49488 loaded\n",
      "shard_10188 loaded\n",
      "shard_42102 loaded\n",
      "shard_7215 loaded\n",
      "shard_20961 loaded\n",
      "shard_49713 loaded\n",
      "shard_23935 loaded\n",
      "shard_7569 loaded\n",
      "shard_22354 loaded\n",
      "shard_8033 loaded\n",
      "shard_10626 loaded\n",
      "shard_8864 loaded\n",
      "shard_47910 loaded\n",
      "shard_29033 loaded\n",
      "shard_17882 loaded\n",
      "shard_4701 loaded\n",
      "shard_33471 loaded\n",
      "shard_21508 loaded\n",
      "shard_38642 loaded\n",
      "shard_49459 loaded\n",
      "shard_34104 loaded\n",
      "shard_9598 loaded\n",
      "shard_2838 loaded\n",
      "shard_34860 loaded\n",
      "shard_12696 loaded\n",
      "shard_33034 loaded\n",
      "shard_49662 loaded\n",
      "shard_35273 loaded\n",
      "shard_2087 loaded\n",
      "shard_4772 loaded\n",
      "shard_5345 loaded\n",
      "shard_43863 loaded\n",
      "shard_32580 loaded\n",
      "shard_40107 loaded\n",
      "shard_30148 loaded\n",
      "shard_45417 loaded\n",
      "shard_32682 loaded\n",
      "shard_20391 loaded\n",
      "shard_34380 loaded\n",
      "shard_41792 loaded\n",
      "shard_30930 loaded\n",
      "shard_40480 loaded\n",
      "shard_37321 loaded\n",
      "shard_1068 loaded\n",
      "shard_39092 loaded\n",
      "shard_45771 loaded\n",
      "shard_38031 loaded\n",
      "shard_39343 loaded\n",
      "shard_11161 loaded\n",
      "shard_19473 loaded\n",
      "shard_29067 loaded\n",
      "shard_24689 loaded\n",
      "shard_23731 loaded\n",
      "shard_792 loaded\n",
      "shard_40999 loaded\n",
      "shard_10212 loaded\n",
      "shard_49730 loaded\n",
      "shard_25080 loaded\n",
      "shard_23705 loaded\n",
      "shard_14757 loaded\n",
      "shard_18915 loaded\n",
      "shard_38245 loaded\n",
      "shard_23611 loaded\n",
      "shard_38721 loaded\n",
      "shard_47858 loaded\n",
      "shard_23221 loaded\n",
      "shard_23565 loaded\n",
      "shard_22873 loaded\n",
      "shard_6034 loaded\n",
      "shard_13861 loaded\n",
      "shard_15605 loaded\n",
      "shard_42640 loaded\n",
      "shard_4059 loaded\n",
      "shard_1621 loaded\n",
      "shard_7924 loaded\n",
      "shard_10263 loaded\n",
      "shard_27134 loaded\n",
      "shard_14164 loaded\n",
      "shard_15604 loaded\n",
      "shard_4372 loaded\n",
      "shard_42608 loaded\n",
      "shard_40675 loaded\n",
      "shard_15456 loaded\n",
      "shard_30352 loaded\n",
      "shard_4366 loaded\n",
      "shard_36789 loaded\n",
      "shard_39139 loaded\n",
      "shard_36323 loaded\n",
      "shard_44941 loaded\n",
      "shard_21907 loaded\n",
      "shard_2715 loaded\n",
      "shard_26989 loaded\n",
      "shard_22549 loaded\n",
      "shard_28158 loaded\n",
      "shard_35739 loaded\n",
      "shard_46776 loaded\n",
      "shard_46404 loaded\n",
      "shard_33718 loaded\n",
      "shard_9649 loaded\n",
      "shard_38251 loaded\n",
      "shard_44923 loaded\n",
      "shard_48652 loaded\n",
      "shard_39169 loaded\n",
      "shard_18673 loaded\n",
      "shard_22761 loaded\n",
      "shard_8780 loaded\n",
      "shard_1799 loaded\n",
      "shard_14549 loaded\n",
      "shard_9281 loaded\n",
      "shard_18558 loaded\n",
      "shard_28484 loaded\n",
      "shard_14613 loaded\n",
      "shard_42880 loaded\n",
      "shard_15027 loaded\n",
      "shard_4796 loaded\n",
      "shard_16531 loaded\n",
      "shard_47635 loaded\n",
      "shard_2199 loaded\n",
      "shard_48453 loaded\n",
      "shard_6567 loaded\n",
      "shard_15835 loaded\n",
      "shard_42787 loaded\n",
      "shard_49567 loaded\n",
      "shard_2805 loaded\n",
      "shard_45529 loaded\n",
      "shard_12663 loaded\n",
      "shard_3559 loaded\n",
      "shard_37844 loaded\n",
      "shard_24960 loaded\n",
      "shard_33990 loaded\n",
      "shard_40919 loaded\n",
      "shard_23795 loaded\n",
      "shard_29123 loaded\n",
      "shard_28444 loaded\n",
      "shard_33645 loaded\n",
      "shard_27771 loaded\n",
      "shard_22587 loaded\n",
      "shard_14473 loaded\n",
      "shard_10923 loaded\n",
      "shard_7707 loaded\n",
      "shard_14107 loaded\n",
      "shard_37546 loaded\n",
      "shard_24397 loaded\n",
      "shard_10273 loaded\n",
      "shard_27592 loaded\n",
      "shard_1051 loaded\n",
      "shard_45670 loaded\n",
      "shard_42738 loaded\n",
      "shard_18063 loaded\n",
      "shard_19237 loaded\n",
      "shard_17234 loaded\n",
      "shard_46908 loaded\n",
      "shard_9177 loaded\n",
      "shard_10257 loaded\n",
      "shard_24760 loaded\n",
      "shard_29009 loaded\n",
      "shard_41277 loaded\n",
      "shard_17629 loaded\n",
      "shard_10117 loaded\n",
      "shard_1245 loaded\n",
      "shard_29413 loaded\n",
      "shard_44682 loaded\n",
      "shard_10516 loaded\n",
      "shard_25690 loaded\n",
      "shard_22296 loaded\n",
      "shard_14398 loaded\n",
      "shard_9464 loaded\n",
      "shard_16910 loaded\n",
      "shard_11220 loaded\n",
      "shard_23286 loaded\n",
      "shard_30063 loaded\n",
      "shard_24151 loaded\n",
      "shard_805 loaded\n",
      "shard_26123 loaded\n",
      "shard_33550 loaded\n",
      "shard_5232 loaded\n",
      "shard_991 loaded\n",
      "shard_35625 loaded\n",
      "shard_45857 loaded\n",
      "shard_1875 loaded\n",
      "shard_4581 loaded\n",
      "shard_19121 loaded\n",
      "shard_35510 loaded\n",
      "shard_21474 loaded\n",
      "shard_17603 loaded\n",
      "shard_46168 loaded\n",
      "shard_27538 loaded\n",
      "shard_18034 loaded\n",
      "shard_3646 loaded\n",
      "shard_29484 loaded\n",
      "shard_37659 loaded\n",
      "shard_24813 loaded\n",
      "shard_43332 loaded\n",
      "shard_30973 loaded\n",
      "shard_7031 loaded\n",
      "shard_3388 loaded\n",
      "shard_48857 loaded\n",
      "shard_16067 loaded\n",
      "shard_10323 loaded\n",
      "shard_11639 loaded\n",
      "shard_9172 loaded\n",
      "shard_11734 loaded\n",
      "shard_8201 loaded\n",
      "shard_43041 loaded\n",
      "shard_37220 loaded\n",
      "shard_19446 loaded\n",
      "shard_22488 loaded\n",
      "shard_33006 loaded\n",
      "shard_28952 loaded\n",
      "shard_24243 loaded\n",
      "shard_28257 loaded\n",
      "shard_41776 loaded\n",
      "shard_49369 loaded\n",
      "shard_24672 loaded\n",
      "shard_36033 loaded\n",
      "shard_25769 loaded\n",
      "shard_4548 loaded\n",
      "shard_48248 loaded\n",
      "shard_49105 loaded\n",
      "shard_45781 loaded\n",
      "shard_19545 loaded\n",
      "shard_39550 loaded\n",
      "shard_37572 loaded\n",
      "shard_39229 loaded\n",
      "shard_35453 loaded\n",
      "shard_31982 loaded\n",
      "shard_25624 loaded\n",
      "shard_5781 loaded\n",
      "shard_37164 loaded\n",
      "shard_2746 loaded\n",
      "shard_10007 loaded\n",
      "shard_13013 loaded\n",
      "shard_26014 loaded\n",
      "shard_24927 loaded\n",
      "shard_45241 loaded\n",
      "shard_41414 loaded\n",
      "shard_23749 loaded\n",
      "shard_43099 loaded\n",
      "shard_11917 loaded\n",
      "shard_44794 loaded\n",
      "shard_18384 loaded\n",
      "shard_43260 loaded\n",
      "shard_48943 loaded\n",
      "shard_15986 loaded\n",
      "shard_38616 loaded\n",
      "shard_38928 loaded\n",
      "shard_34703 loaded\n",
      "shard_30219 loaded\n",
      "shard_46734 loaded\n",
      "shard_15492 loaded\n",
      "shard_17837 loaded\n",
      "shard_39080 loaded\n",
      "shard_38416 loaded\n",
      "shard_2110 loaded\n",
      "shard_4047 loaded\n",
      "shard_18868 loaded\n",
      "shard_193 loaded\n",
      "shard_33132 loaded\n",
      "shard_45344 loaded\n",
      "shard_9460 loaded\n",
      "shard_3550 loaded\n",
      "shard_392 loaded\n",
      "shard_16133 loaded\n",
      "shard_25091 loaded\n",
      "shard_12025 loaded\n",
      "shard_5378 loaded\n",
      "shard_13111 loaded\n",
      "shard_4124 loaded\n",
      "shard_17988 loaded\n",
      "shard_48439 loaded\n",
      "shard_35986 loaded\n",
      "shard_5508 loaded\n",
      "shard_20398 loaded\n",
      "shard_7542 loaded\n",
      "shard_26539 loaded\n",
      "shard_44374 loaded\n",
      "shard_39970 loaded\n",
      "shard_37534 loaded\n",
      "shard_12267 loaded\n",
      "shard_3169 loaded\n",
      "shard_37438 loaded\n",
      "shard_5782 loaded\n",
      "shard_44172 loaded\n",
      "shard_75 loaded\n",
      "shard_13446 loaded\n",
      "shard_23173 loaded\n",
      "shard_298 loaded\n",
      "shard_49952 loaded\n",
      "shard_10591 loaded\n",
      "shard_6421 loaded\n",
      "shard_43277 loaded\n",
      "shard_2730 loaded\n",
      "shard_36465 loaded\n",
      "shard_10826 loaded\n",
      "shard_47891 loaded\n",
      "shard_32865 loaded\n",
      "shard_26298 loaded\n",
      "shard_7522 loaded\n",
      "shard_1449 loaded\n",
      "shard_23511 loaded\n",
      "shard_7804 loaded\n",
      "shard_2302 loaded\n",
      "shard_12697 loaded\n",
      "shard_273 loaded\n",
      "shard_34204 loaded\n",
      "shard_6682 loaded\n",
      "shard_43939 loaded\n",
      "shard_36148 loaded\n",
      "shard_38152 loaded\n",
      "shard_12104 loaded\n",
      "shard_28901 loaded\n",
      "shard_22933 loaded\n",
      "shard_44148 loaded\n",
      "shard_37392 loaded\n",
      "shard_7111 loaded\n",
      "shard_8490 loaded\n",
      "shard_15213 loaded\n",
      "shard_37366 loaded\n",
      "shard_10062 loaded\n",
      "shard_31137 loaded\n",
      "shard_48356 loaded\n",
      "shard_16773 loaded\n",
      "shard_19805 loaded\n",
      "shard_32718 loaded\n",
      "shard_28872 loaded\n",
      "shard_13500 loaded\n",
      "shard_21624 loaded\n",
      "shard_27273 loaded\n",
      "shard_47719 loaded\n",
      "shard_25039 loaded\n",
      "shard_40787 loaded\n",
      "shard_9517 loaded\n",
      "shard_17421 loaded\n",
      "shard_42458 loaded\n",
      "shard_25265 loaded\n",
      "shard_25982 loaded\n",
      "shard_48116 loaded\n",
      "shard_46920 loaded\n",
      "shard_13921 loaded\n",
      "shard_10232 loaded\n",
      "shard_26054 loaded\n",
      "shard_20407 loaded\n",
      "shard_188 loaded\n",
      "shard_19076 loaded\n",
      "shard_46025 loaded\n",
      "shard_30956 loaded\n",
      "shard_47782 loaded\n",
      "shard_1282 loaded\n",
      "shard_27900 loaded\n",
      "shard_6305 loaded\n",
      "shard_961 loaded\n",
      "shard_11689 loaded\n",
      "shard_34654 loaded\n",
      "shard_43992 loaded\n",
      "shard_14080 loaded\n",
      "shard_42293 loaded\n",
      "shard_3816 loaded\n",
      "shard_45923 loaded\n",
      "shard_20918 loaded\n",
      "shard_7885 loaded\n",
      "shard_22518 loaded\n",
      "shard_23251 loaded\n",
      "shard_12264 loaded\n",
      "shard_4286 loaded\n",
      "shard_19651 loaded\n",
      "shard_30161 loaded\n",
      "shard_31100 loaded\n",
      "shard_47745 loaded\n",
      "shard_41711 loaded\n",
      "shard_17559 loaded\n",
      "shard_46958 loaded\n",
      "shard_35862 loaded\n",
      "shard_45061 loaded\n",
      "shard_22232 loaded\n",
      "shard_46453 loaded\n",
      "shard_9919 loaded\n",
      "shard_14268 loaded\n",
      "shard_489 loaded\n",
      "shard_3441 loaded\n",
      "shard_12948 loaded\n",
      "shard_31011 loaded\n",
      "shard_38217 loaded\n",
      "shard_15527 loaded\n",
      "shard_27395 loaded\n",
      "shard_18277 loaded\n",
      "shard_12564 loaded\n",
      "shard_8742 loaded\n",
      "shard_10837 loaded\n",
      "shard_37599 loaded\n",
      "shard_26166 loaded\n",
      "shard_27418 loaded\n",
      "shard_10416 loaded\n",
      "shard_19895 loaded\n",
      "shard_43940 loaded\n",
      "shard_15571 loaded\n",
      "shard_39483 loaded\n",
      "shard_14351 loaded\n",
      "shard_4122 loaded\n",
      "shard_937 loaded\n",
      "shard_11685 loaded\n",
      "shard_31386 loaded\n",
      "shard_48632 loaded\n",
      "shard_8888 loaded\n",
      "shard_39930 loaded\n",
      "shard_29459 loaded\n",
      "shard_32792 loaded\n",
      "shard_46766 loaded\n",
      "shard_10953 loaded\n",
      "shard_44419 loaded\n",
      "shard_12327 loaded\n",
      "shard_38361 loaded\n",
      "shard_13618 loaded\n",
      "shard_547 loaded\n",
      "shard_13320 loaded\n",
      "shard_38626 loaded\n",
      "shard_44321 loaded\n",
      "shard_29717 loaded\n",
      "shard_7314 loaded\n",
      "shard_37405 loaded\n",
      "shard_31956 loaded\n",
      "shard_6126 loaded\n",
      "shard_31369 loaded\n",
      "shard_11302 loaded\n",
      "shard_17355 loaded\n",
      "shard_43266 loaded\n",
      "shard_43719 loaded\n",
      "shard_38188 loaded\n",
      "shard_23392 loaded\n",
      "shard_34593 loaded\n",
      "shard_36873 loaded\n",
      "shard_41689 loaded\n",
      "shard_38946 loaded\n",
      "shard_19839 loaded\n",
      "shard_8804 loaded\n",
      "shard_35409 loaded\n",
      "shard_5690 loaded\n",
      "shard_34509 loaded\n",
      "shard_1966 loaded\n",
      "shard_24821 loaded\n",
      "shard_10578 loaded\n",
      "shard_7413 loaded\n",
      "shard_41305 loaded\n",
      "shard_23148 loaded\n",
      "shard_39934 loaded\n",
      "shard_44807 loaded\n",
      "shard_20361 loaded\n",
      "shard_2483 loaded\n",
      "shard_9286 loaded\n",
      "shard_40792 loaded\n",
      "shard_25875 loaded\n",
      "shard_20599 loaded\n",
      "shard_25448 loaded\n",
      "shard_32023 loaded\n",
      "shard_31687 loaded\n",
      "shard_23894 loaded\n",
      "shard_2447 loaded\n",
      "shard_2538 loaded\n",
      "shard_40079 loaded\n",
      "shard_779 loaded\n",
      "shard_42746 loaded\n",
      "shard_14499 loaded\n",
      "shard_33035 loaded\n",
      "shard_232 loaded\n",
      "shard_38991 loaded\n",
      "shard_15794 loaded\n",
      "shard_4899 loaded\n",
      "shard_36445 loaded\n",
      "shard_7611 loaded\n",
      "shard_40800 loaded\n",
      "shard_27207 loaded\n",
      "shard_24688 loaded\n",
      "shard_4946 loaded\n",
      "shard_18030 loaded\n",
      "shard_26429 loaded\n",
      "shard_49717 loaded\n",
      "shard_35982 loaded\n",
      "shard_28227 loaded\n",
      "shard_25897 loaded\n",
      "shard_41650 loaded\n",
      "shard_2951 loaded\n",
      "shard_14462 loaded\n",
      "shard_15960 loaded\n",
      "shard_47471 loaded\n",
      "shard_31266 loaded\n",
      "shard_45548 loaded\n",
      "shard_1336 loaded\n",
      "shard_45368 loaded\n",
      "shard_21442 loaded\n",
      "shard_41980 loaded\n",
      "shard_42237 loaded\n",
      "shard_44920 loaded\n",
      "shard_27901 loaded\n",
      "shard_28778 loaded\n",
      "shard_48778 loaded\n",
      "shard_25053 loaded\n",
      "shard_7372 loaded\n",
      "shard_4903 loaded\n",
      "shard_47581 loaded\n",
      "shard_11019 loaded\n",
      "shard_27259 loaded\n",
      "shard_25929 loaded\n",
      "shard_15944 loaded\n",
      "shard_40428 loaded\n",
      "shard_7632 loaded\n",
      "shard_37979 loaded\n",
      "shard_32414 loaded\n",
      "shard_41109 loaded\n",
      "shard_28775 loaded\n",
      "shard_22556 loaded\n",
      "shard_44453 loaded\n",
      "shard_22279 loaded\n",
      "shard_37194 loaded\n",
      "shard_20532 loaded\n",
      "shard_33238 loaded\n",
      "shard_49629 loaded\n",
      "shard_25684 loaded\n",
      "shard_10770 loaded\n",
      "shard_40454 loaded\n",
      "shard_146 loaded\n",
      "shard_46171 loaded\n",
      "shard_39641 loaded\n",
      "shard_9156 loaded\n",
      "shard_49021 loaded\n",
      "shard_18211 loaded\n",
      "shard_27047 loaded\n",
      "shard_7061 loaded\n",
      "shard_33142 loaded\n",
      "shard_9484 loaded\n",
      "shard_17519 loaded\n",
      "shard_44523 loaded\n",
      "shard_18797 loaded\n",
      "shard_46617 loaded\n",
      "shard_36903 loaded\n",
      "shard_22973 loaded\n",
      "shard_42181 loaded\n",
      "shard_31062 loaded\n",
      "shard_10520 loaded\n",
      "shard_45534 loaded\n",
      "shard_25564 loaded\n",
      "shard_46613 loaded\n",
      "shard_11382 loaded\n",
      "shard_29344 loaded\n",
      "shard_10543 loaded\n",
      "shard_2223 loaded\n",
      "shard_20581 loaded\n",
      "shard_34032 loaded\n",
      "shard_14507 loaded\n",
      "shard_29646 loaded\n",
      "shard_34693 loaded\n",
      "shard_16772 loaded\n",
      "shard_45179 loaded\n",
      "shard_30728 loaded\n",
      "shard_37022 loaded\n",
      "shard_3817 loaded\n",
      "shard_23325 loaded\n",
      "shard_36348 loaded\n",
      "shard_37409 loaded\n",
      "shard_21614 loaded\n",
      "shard_43596 loaded\n",
      "shard_14680 loaded\n",
      "shard_2255 loaded\n",
      "shard_47329 loaded\n",
      "shard_9070 loaded\n",
      "shard_27804 loaded\n",
      "shard_42146 loaded\n",
      "shard_16423 loaded\n",
      "shard_40003 loaded\n",
      "shard_3444 loaded\n",
      "shard_5729 loaded\n",
      "shard_35424 loaded\n",
      "shard_14700 loaded\n",
      "shard_10279 loaded\n",
      "shard_25772 loaded\n",
      "shard_46299 loaded\n",
      "shard_41175 loaded\n",
      "shard_27482 loaded\n",
      "shard_27218 loaded\n",
      "shard_40953 loaded\n",
      "shard_28226 loaded\n",
      "shard_44043 loaded\n",
      "shard_1858 loaded\n",
      "shard_30093 loaded\n",
      "shard_10006 loaded\n",
      "shard_47740 loaded\n",
      "shard_2263 loaded\n",
      "shard_16096 loaded\n",
      "shard_33436 loaded\n",
      "shard_27366 loaded\n",
      "shard_25515 loaded\n",
      "shard_19948 loaded\n",
      "shard_15864 loaded\n",
      "shard_14134 loaded\n",
      "shard_47695 loaded\n",
      "shard_35940 loaded\n",
      "shard_25311 loaded\n",
      "shard_49108 loaded\n",
      "shard_49448 loaded\n",
      "shard_15404 loaded\n",
      "shard_28826 loaded\n",
      "shard_15776 loaded\n",
      "shard_33482 loaded\n",
      "shard_24642 loaded\n",
      "shard_17444 loaded\n",
      "shard_2895 loaded\n",
      "shard_48550 loaded\n",
      "shard_40387 loaded\n",
      "shard_25263 loaded\n",
      "shard_39573 loaded\n",
      "shard_17211 loaded\n",
      "shard_9765 loaded\n",
      "shard_911 loaded\n",
      "shard_1132 loaded\n",
      "shard_4952 loaded\n",
      "shard_19359 loaded\n",
      "shard_27067 loaded\n",
      "shard_5150 loaded\n",
      "shard_43404 loaded\n",
      "shard_32777 loaded\n",
      "shard_14775 loaded\n",
      "shard_10096 loaded\n",
      "shard_8231 loaded\n",
      "shard_38903 loaded\n",
      "shard_6091 loaded\n",
      "shard_16384 loaded\n",
      "shard_19409 loaded\n",
      "shard_18186 loaded\n",
      "shard_2022 loaded\n",
      "shard_18836 loaded\n",
      "shard_3276 loaded\n",
      "shard_35580 loaded\n",
      "shard_1983 loaded\n",
      "shard_49082 loaded\n",
      "shard_32822 loaded\n",
      "shard_36210 loaded\n",
      "shard_23698 loaded\n",
      "shard_16425 loaded\n",
      "shard_39243 loaded\n",
      "shard_8597 loaded\n",
      "shard_42813 loaded\n",
      "shard_43988 loaded\n",
      "shard_18397 loaded\n",
      "shard_43836 loaded\n",
      "shard_18506 loaded\n",
      "shard_28 loaded\n",
      "shard_36147 loaded\n",
      "shard_40342 loaded\n",
      "shard_38822 loaded\n",
      "shard_28379 loaded\n",
      "shard_15133 loaded\n",
      "shard_15280 loaded\n",
      "shard_21681 loaded\n",
      "shard_8869 loaded\n",
      "shard_42842 loaded\n",
      "shard_17740 loaded\n",
      "shard_10120 loaded\n",
      "shard_28260 loaded\n",
      "shard_3405 loaded\n",
      "shard_45083 loaded\n",
      "shard_22237 loaded\n",
      "shard_18751 loaded\n",
      "shard_266 loaded\n",
      "shard_36070 loaded\n",
      "shard_19781 loaded\n",
      "shard_33941 loaded\n",
      "shard_13341 loaded\n",
      "shard_2541 loaded\n",
      "shard_31544 loaded\n",
      "shard_777 loaded\n",
      "shard_24220 loaded\n",
      "shard_37574 loaded\n",
      "shard_43982 loaded\n",
      "shard_8909 loaded\n",
      "shard_41854 loaded\n",
      "shard_16304 loaded\n",
      "shard_2247 loaded\n",
      "shard_36948 loaded\n",
      "shard_8359 loaded\n",
      "shard_48709 loaded\n",
      "shard_15209 loaded\n",
      "shard_37473 loaded\n",
      "shard_44422 loaded\n",
      "shard_25941 loaded\n",
      "shard_32146 loaded\n",
      "shard_29186 loaded\n",
      "shard_36996 loaded\n",
      "shard_1967 loaded\n",
      "shard_43364 loaded\n",
      "shard_27896 loaded\n",
      "shard_21262 loaded\n",
      "shard_3549 loaded\n",
      "shard_11021 loaded\n",
      "shard_15546 loaded\n",
      "shard_5956 loaded\n",
      "shard_35769 loaded\n",
      "shard_29269 loaded\n",
      "shard_26606 loaded\n",
      "shard_6077 loaded\n",
      "shard_27872 loaded\n",
      "shard_42709 loaded\n",
      "shard_18475 loaded\n",
      "shard_32831 loaded\n",
      "shard_30542 loaded\n",
      "shard_43030 loaded\n",
      "shard_29282 loaded\n",
      "shard_2499 loaded\n",
      "shard_30938 loaded\n",
      "shard_17499 loaded\n",
      "shard_30658 loaded\n",
      "shard_12433 loaded\n",
      "shard_46775 loaded\n",
      "shard_42627 loaded\n",
      "shard_7296 loaded\n",
      "shard_36926 loaded\n",
      "shard_41365 loaded\n",
      "shard_15521 loaded\n",
      "shard_30244 loaded\n",
      "shard_43601 loaded\n",
      "shard_31850 loaded\n",
      "shard_29149 loaded\n",
      "shard_9008 loaded\n",
      "shard_3440 loaded\n",
      "shard_11899 loaded\n",
      "shard_12764 loaded\n",
      "shard_39278 loaded\n",
      "shard_33861 loaded\n",
      "shard_41441 loaded\n",
      "shard_1235 loaded\n",
      "shard_35304 loaded\n",
      "shard_482 loaded\n",
      "shard_44982 loaded\n",
      "shard_40743 loaded\n",
      "shard_28921 loaded\n",
      "shard_5436 loaded\n",
      "shard_9249 loaded\n",
      "shard_20504 loaded\n",
      "shard_73 loaded\n",
      "shard_16309 loaded\n",
      "shard_34209 loaded\n",
      "shard_21882 loaded\n",
      "shard_4877 loaded\n",
      "shard_25069 loaded\n",
      "shard_46253 loaded\n",
      "shard_12647 loaded\n",
      "shard_23046 loaded\n",
      "shard_6341 loaded\n",
      "shard_37241 loaded\n",
      "shard_47556 loaded\n",
      "shard_1479 loaded\n",
      "shard_14942 loaded\n",
      "shard_11717 loaded\n",
      "shard_29063 loaded\n",
      "shard_49100 loaded\n",
      "shard_30098 loaded\n",
      "shard_1926 loaded\n",
      "shard_48030 loaded\n",
      "shard_8009 loaded\n",
      "shard_38195 loaded\n",
      "shard_45657 loaded\n",
      "shard_927 loaded\n",
      "shard_14043 loaded\n",
      "shard_8711 loaded\n",
      "shard_46333 loaded\n",
      "shard_12985 loaded\n",
      "shard_36319 loaded\n",
      "shard_15141 loaded\n",
      "shard_11882 loaded\n",
      "shard_32686 loaded\n",
      "shard_16120 loaded\n",
      "shard_13019 loaded\n",
      "shard_25930 loaded\n",
      "shard_42050 loaded\n",
      "shard_18207 loaded\n",
      "shard_33491 loaded\n",
      "shard_38209 loaded\n",
      "shard_49017 loaded\n",
      "shard_36536 loaded\n",
      "shard_17131 loaded\n",
      "shard_6002 loaded\n",
      "shard_4979 loaded\n",
      "shard_5758 loaded\n",
      "shard_11829 loaded\n",
      "shard_27088 loaded\n",
      "shard_37298 loaded\n",
      "shard_24352 loaded\n",
      "shard_49973 loaded\n",
      "shard_20374 loaded\n",
      "shard_18117 loaded\n",
      "shard_42373 loaded\n",
      "shard_30096 loaded\n",
      "shard_42752 loaded\n",
      "shard_8459 loaded\n",
      "shard_15100 loaded\n",
      "shard_7385 loaded\n",
      "shard_27203 loaded\n",
      "shard_48917 loaded\n",
      "shard_516 loaded\n",
      "shard_43259 loaded\n",
      "shard_44218 loaded\n",
      "shard_13566 loaded\n",
      "shard_24891 loaded\n",
      "shard_9092 loaded\n",
      "shard_136 loaded\n",
      "shard_30508 loaded\n",
      "shard_3707 loaded\n",
      "shard_24773 loaded\n",
      "shard_41539 loaded\n",
      "shard_10711 loaded\n",
      "shard_45303 loaded\n",
      "shard_45117 loaded\n",
      "shard_30781 loaded\n",
      "shard_38815 loaded\n",
      "shard_39776 loaded\n",
      "shard_9163 loaded\n",
      "shard_39783 loaded\n",
      "shard_4807 loaded\n",
      "shard_26008 loaded\n",
      "shard_5542 loaded\n",
      "shard_24454 loaded\n",
      "shard_45175 loaded\n",
      "shard_45862 loaded\n",
      "shard_14096 loaded\n",
      "shard_40926 loaded\n",
      "shard_18567 loaded\n",
      "shard_38065 loaded\n",
      "shard_22642 loaded\n",
      "shard_13291 loaded\n",
      "shard_10427 loaded\n",
      "shard_40377 loaded\n",
      "shard_43743 loaded\n",
      "shard_22084 loaded\n",
      "shard_28034 loaded\n",
      "shard_46611 loaded\n",
      "shard_32053 loaded\n",
      "shard_20124 loaded\n",
      "shard_25568 loaded\n",
      "shard_3678 loaded\n",
      "shard_11896 loaded\n",
      "shard_32987 loaded\n",
      "shard_22539 loaded\n",
      "shard_10277 loaded\n",
      "shard_38517 loaded\n",
      "shard_29560 loaded\n",
      "shard_47803 loaded\n",
      "shard_36413 loaded\n",
      "shard_4718 loaded\n",
      "shard_4872 loaded\n",
      "shard_7621 loaded\n",
      "shard_46654 loaded\n",
      "shard_29284 loaded\n",
      "shard_12294 loaded\n",
      "shard_40609 loaded\n",
      "shard_9481 loaded\n",
      "shard_33691 loaded\n",
      "shard_26993 loaded\n",
      "shard_4297 loaded\n",
      "shard_19892 loaded\n",
      "shard_17418 loaded\n",
      "shard_21870 loaded\n",
      "shard_49428 loaded\n",
      "shard_33688 loaded\n",
      "shard_1560 loaded\n",
      "shard_12304 loaded\n",
      "shard_42725 loaded\n",
      "shard_27157 loaded\n",
      "shard_24200 loaded\n",
      "shard_25743 loaded\n",
      "shard_31439 loaded\n",
      "shard_19716 loaded\n",
      "shard_31772 loaded\n",
      "shard_6322 loaded\n",
      "shard_9465 loaded\n",
      "shard_5684 loaded\n",
      "shard_21174 loaded\n",
      "shard_44108 loaded\n",
      "shard_10201 loaded\n",
      "shard_45961 loaded\n",
      "shard_12395 loaded\n",
      "shard_12050 loaded\n",
      "shard_30799 loaded\n",
      "shard_28950 loaded\n",
      "shard_48156 loaded\n",
      "shard_649 loaded\n",
      "shard_2234 loaded\n",
      "shard_5326 loaded\n",
      "shard_38 loaded\n",
      "shard_24444 loaded\n",
      "shard_24229 loaded\n",
      "shard_19331 loaded\n",
      "shard_6276 loaded\n",
      "shard_6298 loaded\n",
      "shard_26435 loaded\n",
      "shard_6093 loaded\n",
      "shard_26317 loaded\n",
      "shard_3551 loaded\n",
      "shard_10695 loaded\n",
      "shard_14636 loaded\n",
      "shard_48292 loaded\n",
      "shard_19068 loaded\n",
      "shard_10017 loaded\n",
      "shard_46915 loaded\n",
      "shard_22475 loaded\n",
      "shard_7112 loaded\n",
      "shard_41150 loaded\n",
      "shard_27045 loaded\n",
      "shard_23998 loaded\n",
      "shard_32523 loaded\n",
      "shard_15953 loaded\n",
      "shard_5664 loaded\n",
      "shard_24906 loaded\n",
      "shard_37893 loaded\n",
      "shard_25683 loaded\n",
      "shard_32708 loaded\n",
      "shard_25983 loaded\n",
      "shard_40436 loaded\n",
      "shard_25735 loaded\n",
      "shard_33087 loaded\n",
      "shard_35721 loaded\n",
      "shard_47491 loaded\n",
      "shard_22469 loaded\n",
      "shard_22609 loaded\n",
      "shard_7870 loaded\n",
      "shard_48937 loaded\n",
      "shard_11726 loaded\n",
      "shard_15212 loaded\n",
      "shard_2020 loaded\n",
      "shard_6772 loaded\n",
      "shard_49922 loaded\n",
      "shard_31453 loaded\n",
      "shard_31194 loaded\n",
      "shard_682 loaded\n",
      "shard_1408 loaded\n",
      "shard_29100 loaded\n",
      "shard_34276 loaded\n",
      "shard_9264 loaded\n",
      "shard_22676 loaded\n",
      "shard_23948 loaded\n",
      "shard_10015 loaded\n",
      "shard_49087 loaded\n",
      "shard_38757 loaded\n",
      "shard_3783 loaded\n",
      "shard_15971 loaded\n",
      "shard_21387 loaded\n",
      "shard_36691 loaded\n",
      "shard_2065 loaded\n",
      "shard_19668 loaded\n",
      "shard_39347 loaded\n",
      "shard_16374 loaded\n",
      "shard_40898 loaded\n",
      "shard_34073 loaded\n",
      "shard_34828 loaded\n",
      "shard_42195 loaded\n",
      "shard_49301 loaded\n",
      "shard_13552 loaded\n",
      "shard_37101 loaded\n",
      "shard_46440 loaded\n",
      "shard_37581 loaded\n",
      "shard_23921 loaded\n",
      "shard_6289 loaded\n",
      "shard_22331 loaded\n",
      "shard_13853 loaded\n",
      "shard_46491 loaded\n",
      "shard_10144 loaded\n",
      "shard_41122 loaded\n",
      "shard_24857 loaded\n",
      "shard_47768 loaded\n",
      "shard_45516 loaded\n",
      "shard_28175 loaded\n",
      "shard_19492 loaded\n",
      "shard_48706 loaded\n",
      "shard_9234 loaded\n",
      "shard_32572 loaded\n",
      "shard_43906 loaded\n",
      "shard_8641 loaded\n",
      "shard_33722 loaded\n",
      "shard_37861 loaded\n",
      "shard_30305 loaded\n",
      "shard_21688 loaded\n",
      "shard_13329 loaded\n",
      "shard_8870 loaded\n",
      "shard_10515 loaded\n",
      "shard_9082 loaded\n",
      "shard_47 loaded\n",
      "shard_3853 loaded\n",
      "shard_48018 loaded\n",
      "shard_110 loaded\n",
      "shard_10412 loaded\n",
      "shard_49776 loaded\n",
      "shard_35489 loaded\n",
      "shard_31746 loaded\n",
      "shard_40931 loaded\n",
      "shard_36036 loaded\n",
      "shard_19616 loaded\n",
      "shard_594 loaded\n",
      "shard_11926 loaded\n",
      "shard_19224 loaded\n",
      "shard_42771 loaded\n",
      "shard_27329 loaded\n",
      "shard_14337 loaded\n",
      "shard_32719 loaded\n",
      "shard_37519 loaded\n",
      "shard_2865 loaded\n",
      "shard_31290 loaded\n",
      "shard_10469 loaded\n",
      "shard_14378 loaded\n",
      "shard_16767 loaded\n",
      "shard_974 loaded\n",
      "shard_21036 loaded\n",
      "shard_19240 loaded\n",
      "shard_10821 loaded\n",
      "shard_38569 loaded\n",
      "shard_21720 loaded\n",
      "shard_32656 loaded\n",
      "shard_7639 loaded\n",
      "shard_34534 loaded\n",
      "shard_8057 loaded\n",
      "shard_13044 loaded\n",
      "shard_36997 loaded\n",
      "shard_14437 loaded\n",
      "shard_40431 loaded\n",
      "shard_6410 loaded\n",
      "shard_17612 loaded\n",
      "shard_45851 loaded\n",
      "shard_23978 loaded\n",
      "shard_20499 loaded\n",
      "shard_39703 loaded\n",
      "shard_41970 loaded\n",
      "shard_33869 loaded\n",
      "shard_42728 loaded\n",
      "shard_45304 loaded\n",
      "shard_31885 loaded\n",
      "shard_18519 loaded\n",
      "shard_22852 loaded\n",
      "shard_27614 loaded\n",
      "shard_40313 loaded\n",
      "shard_41796 loaded\n",
      "shard_12844 loaded\n",
      "shard_1957 loaded\n",
      "shard_14127 loaded\n",
      "shard_10902 loaded\n",
      "shard_2407 loaded\n",
      "shard_27267 loaded\n",
      "shard_16175 loaded\n",
      "shard_37225 loaded\n",
      "shard_28010 loaded\n",
      "shard_31142 loaded\n",
      "shard_8206 loaded\n",
      "shard_32029 loaded\n",
      "shard_49883 loaded\n",
      "shard_3887 loaded\n",
      "shard_9242 loaded\n",
      "shard_18902 loaded\n",
      "shard_2918 loaded\n",
      "shard_32743 loaded\n",
      "shard_33593 loaded\n",
      "shard_10559 loaded\n",
      "shard_29464 loaded\n",
      "shard_13796 loaded\n",
      "shard_8233 loaded\n",
      "shard_12944 loaded\n",
      "shard_4780 loaded\n",
      "shard_14178 loaded\n",
      "shard_7658 loaded\n",
      "shard_22841 loaded\n",
      "shard_8191 loaded\n",
      "shard_36785 loaded\n",
      "shard_14033 loaded\n",
      "shard_17183 loaded\n",
      "shard_29749 loaded\n",
      "shard_10797 loaded\n",
      "shard_4179 loaded\n",
      "shard_4465 loaded\n",
      "shard_47177 loaded\n",
      "shard_41959 loaded\n",
      "shard_14342 loaded\n",
      "shard_11661 loaded\n",
      "shard_31643 loaded\n",
      "shard_5415 loaded\n",
      "shard_26534 loaded\n",
      "shard_45091 loaded\n",
      "shard_48164 loaded\n",
      "shard_14051 loaded\n",
      "shard_23107 loaded\n",
      "shard_10962 loaded\n",
      "shard_41025 loaded\n",
      "shard_29430 loaded\n",
      "shard_24063 loaded\n",
      "shard_42810 loaded\n",
      "shard_26900 loaded\n",
      "shard_4749 loaded\n",
      "shard_18322 loaded\n",
      "shard_15326 loaded\n",
      "shard_38488 loaded\n",
      "shard_38972 loaded\n",
      "shard_34517 loaded\n",
      "shard_39944 loaded\n",
      "shard_17989 loaded\n",
      "shard_18210 loaded\n",
      "shard_49013 loaded\n",
      "shard_6228 loaded\n",
      "shard_26438 loaded\n",
      "shard_15178 loaded\n",
      "shard_42350 loaded\n",
      "shard_46292 loaded\n",
      "shard_2156 loaded\n",
      "shard_20908 loaded\n",
      "shard_47643 loaded\n",
      "shard_11722 loaded\n",
      "shard_24439 loaded\n",
      "shard_14196 loaded\n",
      "shard_14003 loaded\n",
      "shard_7767 loaded\n",
      "shard_32727 loaded\n",
      "shard_42727 loaded\n",
      "shard_20251 loaded\n",
      "shard_33407 loaded\n",
      "shard_27072 loaded\n",
      "shard_33694 loaded\n",
      "shard_49302 loaded\n",
      "shard_46789 loaded\n",
      "shard_33309 loaded\n",
      "shard_42410 loaded\n",
      "shard_7046 loaded\n",
      "shard_10532 loaded\n",
      "shard_47025 loaded\n",
      "shard_24828 loaded\n",
      "shard_21968 loaded\n",
      "shard_28086 loaded\n",
      "shard_21018 loaded\n",
      "shard_45666 loaded\n",
      "shard_12713 loaded\n",
      "shard_24225 loaded\n",
      "shard_15590 loaded\n",
      "shard_6431 loaded\n",
      "shard_34426 loaded\n",
      "shard_23246 loaded\n",
      "shard_2285 loaded\n",
      "shard_30561 loaded\n",
      "shard_33922 loaded\n",
      "shard_30901 loaded\n",
      "shard_30875 loaded\n",
      "shard_150 loaded\n",
      "shard_41790 loaded\n",
      "shard_25337 loaded\n",
      "shard_36999 loaded\n",
      "shard_26686 loaded\n",
      "shard_27895 loaded\n",
      "shard_1520 loaded\n",
      "shard_1103 loaded\n",
      "shard_29800 loaded\n",
      "shard_24602 loaded\n",
      "shard_41642 loaded\n",
      "shard_28500 loaded\n",
      "shard_6478 loaded\n",
      "shard_17652 loaded\n",
      "shard_31407 loaded\n",
      "shard_6470 loaded\n",
      "shard_25524 loaded\n",
      "shard_46783 loaded\n",
      "shard_24300 loaded\n",
      "shard_30665 loaded\n",
      "shard_18604 loaded\n",
      "shard_38553 loaded\n",
      "shard_11227 loaded\n",
      "shard_33881 loaded\n",
      "shard_43621 loaded\n",
      "shard_4065 loaded\n",
      "shard_18714 loaded\n",
      "shard_7515 loaded\n",
      "shard_41742 loaded\n",
      "shard_18824 loaded\n",
      "shard_29857 loaded\n",
      "shard_17818 loaded\n",
      "shard_30168 loaded\n",
      "shard_44428 loaded\n",
      "shard_30268 loaded\n",
      "shard_7916 loaded\n",
      "shard_27542 loaded\n",
      "shard_11379 loaded\n",
      "shard_37198 loaded\n",
      "shard_44706 loaded\n",
      "shard_35980 loaded\n",
      "shard_39490 loaded\n",
      "shard_12154 loaded\n",
      "shard_29066 loaded\n",
      "shard_17171 loaded\n",
      "shard_26582 loaded\n",
      "shard_27102 loaded\n",
      "shard_31867 loaded\n",
      "shard_18429 loaded\n",
      "shard_9918 loaded\n",
      "shard_45380 loaded\n",
      "shard_27407 loaded\n",
      "shard_29588 loaded\n",
      "shard_48493 loaded\n",
      "shard_9040 loaded\n",
      "shard_35907 loaded\n",
      "shard_5512 loaded\n",
      "shard_19718 loaded\n",
      "shard_32458 loaded\n",
      "shard_43085 loaded\n",
      "shard_40066 loaded\n",
      "shard_38952 loaded\n",
      "shard_46126 loaded\n",
      "shard_49495 loaded\n",
      "shard_16387 loaded\n",
      "shard_24758 loaded\n",
      "shard_45667 loaded\n",
      "shard_14397 loaded\n",
      "shard_25980 loaded\n",
      "shard_31759 loaded\n",
      "shard_42461 loaded\n",
      "shard_35827 loaded\n",
      "shard_7573 loaded\n",
      "shard_46113 loaded\n",
      "shard_9262 loaded\n",
      "shard_47713 loaded\n",
      "shard_41999 loaded\n",
      "shard_31236 loaded\n",
      "shard_16744 loaded\n",
      "shard_12521 loaded\n",
      "shard_44867 loaded\n",
      "shard_47460 loaded\n",
      "shard_28724 loaded\n",
      "shard_4152 loaded\n",
      "shard_30061 loaded\n",
      "shard_11301 loaded\n",
      "shard_8959 loaded\n",
      "shard_45974 loaded\n",
      "shard_42941 loaded\n",
      "shard_41936 loaded\n",
      "shard_11293 loaded\n",
      "shard_27391 loaded\n",
      "shard_42104 loaded\n",
      "shard_20352 loaded\n",
      "shard_35311 loaded\n",
      "shard_3083 loaded\n",
      "shard_12902 loaded\n",
      "shard_42048 loaded\n",
      "shard_7193 loaded\n",
      "shard_42769 loaded\n",
      "shard_37580 loaded\n",
      "shard_11637 loaded\n",
      "shard_27286 loaded\n",
      "shard_33236 loaded\n",
      "shard_27581 loaded\n",
      "shard_26375 loaded\n",
      "shard_37044 loaded\n",
      "shard_43946 loaded\n",
      "shard_29239 loaded\n",
      "shard_14104 loaded\n",
      "shard_171 loaded\n",
      "shard_18440 loaded\n",
      "shard_28491 loaded\n",
      "shard_49474 loaded\n",
      "shard_24433 loaded\n",
      "shard_27247 loaded\n",
      "shard_29059 loaded\n",
      "shard_49220 loaded\n",
      "shard_23750 loaded\n",
      "shard_13627 loaded\n",
      "shard_46134 loaded\n",
      "shard_46259 loaded\n",
      "shard_43994 loaded\n",
      "shard_7343 loaded\n",
      "shard_6525 loaded\n",
      "shard_31539 loaded\n",
      "shard_43989 loaded\n",
      "shard_47649 loaded\n",
      "shard_25918 loaded\n",
      "shard_36586 loaded\n",
      "shard_5938 loaded\n",
      "shard_30146 loaded\n",
      "shard_29337 loaded\n",
      "shard_38800 loaded\n",
      "shard_2422 loaded\n",
      "shard_19342 loaded\n",
      "shard_19525 loaded\n",
      "shard_6165 loaded\n",
      "shard_31577 loaded\n",
      "shard_4117 loaded\n",
      "shard_9000 loaded\n",
      "shard_43770 loaded\n",
      "shard_31566 loaded\n",
      "shard_12432 loaded\n",
      "shard_8814 loaded\n",
      "shard_10072 loaded\n",
      "shard_39161 loaded\n",
      "shard_33830 loaded\n",
      "shard_30724 loaded\n",
      "shard_46874 loaded\n",
      "shard_18178 loaded\n",
      "shard_28043 loaded\n",
      "shard_1756 loaded\n",
      "shard_47078 loaded\n",
      "shard_26056 loaded\n",
      "shard_5166 loaded\n",
      "shard_40384 loaded\n",
      "shard_9894 loaded\n",
      "shard_3572 loaded\n",
      "shard_2374 loaded\n",
      "shard_22070 loaded\n",
      "shard_47458 loaded\n",
      "shard_23106 loaded\n",
      "shard_23185 loaded\n",
      "shard_14697 loaded\n",
      "shard_23451 loaded\n",
      "shard_19401 loaded\n",
      "shard_48194 loaded\n",
      "shard_18396 loaded\n",
      "shard_28162 loaded\n",
      "shard_6273 loaded\n",
      "shard_5845 loaded\n",
      "shard_5275 loaded\n",
      "shard_17665 loaded\n",
      "shard_27423 loaded\n",
      "shard_27368 loaded\n",
      "shard_4328 loaded\n",
      "shard_23233 loaded\n",
      "shard_48192 loaded\n",
      "shard_20011 loaded\n",
      "shard_36202 loaded\n",
      "shard_20483 loaded\n",
      "shard_47830 loaded\n",
      "shard_6776 loaded\n",
      "shard_5747 loaded\n",
      "shard_8594 loaded\n",
      "shard_17443 loaded\n",
      "shard_12365 loaded\n",
      "shard_22130 loaded\n",
      "shard_41712 loaded\n",
      "shard_36234 loaded\n",
      "shard_37166 loaded\n",
      "shard_38514 loaded\n",
      "shard_33951 loaded\n",
      "shard_18126 loaded\n",
      "shard_16440 loaded\n",
      "shard_34763 loaded\n",
      "shard_45350 loaded\n",
      "shard_12268 loaded\n",
      "shard_48882 loaded\n",
      "shard_1257 loaded\n",
      "shard_31466 loaded\n",
      "shard_32136 loaded\n",
      "shard_430 loaded\n",
      "shard_33900 loaded\n",
      "shard_26397 loaded\n",
      "shard_46692 loaded\n",
      "shard_46236 loaded\n",
      "shard_47603 loaded\n",
      "shard_19585 loaded\n",
      "shard_16657 loaded\n",
      "shard_1021 loaded\n",
      "shard_8919 loaded\n",
      "shard_37103 loaded\n",
      "shard_8643 loaded\n",
      "shard_876 loaded\n",
      "shard_44543 loaded\n",
      "shard_48465 loaded\n",
      "shard_35628 loaded\n",
      "shard_36568 loaded\n",
      "shard_45437 loaded\n",
      "shard_29702 loaded\n",
      "shard_32084 loaded\n",
      "shard_39910 loaded\n",
      "shard_42113 loaded\n",
      "shard_35237 loaded\n",
      "shard_35976 loaded\n",
      "shard_41288 loaded\n",
      "shard_35596 loaded\n",
      "shard_47965 loaded\n",
      "shard_5524 loaded\n",
      "shard_19260 loaded\n",
      "shard_1502 loaded\n",
      "shard_5244 loaded\n",
      "shard_46061 loaded\n",
      "shard_18165 loaded\n",
      "shard_20630 loaded\n",
      "shard_48137 loaded\n",
      "shard_49737 loaded\n",
      "shard_17266 loaded\n",
      "shard_18078 loaded\n",
      "shard_31715 loaded\n",
      "shard_9562 loaded\n",
      "shard_40858 loaded\n",
      "shard_24723 loaded\n",
      "shard_18109 loaded\n",
      "shard_16721 loaded\n",
      "shard_18241 loaded\n",
      "shard_37357 loaded\n",
      "shard_46100 loaded\n",
      "shard_40995 loaded\n",
      "shard_29441 loaded\n",
      "shard_33245 loaded\n",
      "shard_39128 loaded\n",
      "shard_14174 loaded\n",
      "shard_20800 loaded\n",
      "shard_12950 loaded\n",
      "shard_28913 loaded\n",
      "shard_13987 loaded\n",
      "shard_3109 loaded\n",
      "shard_46814 loaded\n",
      "shard_48262 loaded\n",
      "shard_23933 loaded\n",
      "shard_15846 loaded\n",
      "shard_29772 loaded\n",
      "shard_17891 loaded\n",
      "shard_20934 loaded\n",
      "shard_47770 loaded\n",
      "shard_8483 loaded\n",
      "shard_26335 loaded\n",
      "shard_31761 loaded\n",
      "shard_36892 loaded\n",
      "shard_45564 loaded\n",
      "shard_42568 loaded\n",
      "shard_37748 loaded\n",
      "shard_36072 loaded\n",
      "shard_46354 loaded\n",
      "shard_5659 loaded\n",
      "shard_12396 loaded\n",
      "shard_30920 loaded\n",
      "shard_7513 loaded\n",
      "shard_39028 loaded\n",
      "shard_30609 loaded\n",
      "shard_43534 loaded\n",
      "shard_7047 loaded\n",
      "shard_21253 loaded\n",
      "shard_41462 loaded\n",
      "shard_14557 loaded\n",
      "shard_41957 loaded\n",
      "shard_28262 loaded\n",
      "shard_8136 loaded\n",
      "shard_48084 loaded\n",
      "shard_39857 loaded\n",
      "shard_429 loaded\n",
      "shard_23979 loaded\n",
      "shard_19513 loaded\n",
      "shard_24858 loaded\n",
      "shard_38024 loaded\n",
      "shard_4625 loaded\n",
      "shard_25389 loaded\n",
      "shard_27769 loaded\n",
      "shard_8219 loaded\n",
      "shard_996 loaded\n",
      "shard_3255 loaded\n",
      "shard_16380 loaded\n",
      "shard_39041 loaded\n",
      "shard_1152 loaded\n",
      "shard_27472 loaded\n",
      "shard_3857 loaded\n",
      "shard_48316 loaded\n",
      "shard_29306 loaded\n",
      "shard_13445 loaded\n",
      "shard_18008 loaded\n",
      "shard_12525 loaded\n",
      "shard_10164 loaded\n",
      "shard_29181 loaded\n",
      "shard_19514 loaded\n",
      "shard_17066 loaded\n",
      "shard_36531 loaded\n",
      "shard_40824 loaded\n",
      "shard_35531 loaded\n",
      "shard_38374 loaded\n",
      "shard_25814 loaded\n",
      "shard_34997 loaded\n",
      "shard_13436 loaded\n",
      "shard_8587 loaded\n",
      "shard_27314 loaded\n",
      "shard_38536 loaded\n",
      "shard_22282 loaded\n",
      "shard_16014 loaded\n",
      "shard_22273 loaded\n",
      "shard_13505 loaded\n",
      "shard_44787 loaded\n",
      "shard_23274 loaded\n",
      "shard_26764 loaded\n",
      "shard_39796 loaded\n",
      "shard_15064 loaded\n",
      "shard_23969 loaded\n",
      "shard_5835 loaded\n",
      "shard_4824 loaded\n",
      "shard_26941 loaded\n",
      "shard_32570 loaded\n",
      "shard_6822 loaded\n",
      "shard_17925 loaded\n",
      "shard_48686 loaded\n",
      "shard_8138 loaded\n",
      "shard_17538 loaded\n",
      "shard_6235 loaded\n",
      "shard_5298 loaded\n",
      "shard_30972 loaded\n",
      "shard_44698 loaded\n",
      "shard_19186 loaded\n",
      "shard_8326 loaded\n",
      "shard_40630 loaded\n",
      "shard_6253 loaded\n",
      "shard_35550 loaded\n",
      "shard_33713 loaded\n",
      "shard_31425 loaded\n",
      "shard_34695 loaded\n",
      "shard_1911 loaded\n",
      "shard_32500 loaded\n",
      "shard_40155 loaded\n",
      "shard_2590 loaded\n",
      "shard_25015 loaded\n",
      "shard_1729 loaded\n",
      "shard_20686 loaded\n",
      "shard_9367 loaded\n",
      "shard_45888 loaded\n",
      "shard_49684 loaded\n",
      "shard_29157 loaded\n",
      "shard_12086 loaded\n",
      "shard_33029 loaded\n",
      "shard_47558 loaded\n",
      "shard_48048 loaded\n",
      "shard_39002 loaded\n",
      "shard_9682 loaded\n",
      "shard_41459 loaded\n",
      "shard_12064 loaded\n",
      "shard_9083 loaded\n",
      "shard_2429 loaded\n",
      "shard_18460 loaded\n",
      "shard_34600 loaded\n",
      "shard_17962 loaded\n",
      "shard_30612 loaded\n",
      "shard_23310 loaded\n",
      "shard_28686 loaded\n",
      "shard_3096 loaded\n",
      "shard_30185 loaded\n",
      "shard_45468 loaded\n",
      "shard_27453 loaded\n",
      "shard_10535 loaded\n",
      "shard_47319 loaded\n",
      "shard_15247 loaded\n",
      "shard_8721 loaded\n",
      "shard_15891 loaded\n",
      "shard_13489 loaded\n",
      "shard_10103 loaded\n",
      "shard_46825 loaded\n",
      "shard_27236 loaded\n",
      "shard_37275 loaded\n",
      "shard_12088 loaded\n",
      "shard_29313 loaded\n",
      "shard_28163 loaded\n",
      "shard_22681 loaded\n",
      "shard_25282 loaded\n",
      "shard_23814 loaded\n",
      "shard_44974 loaded\n",
      "shard_29714 loaded\n",
      "shard_27377 loaded\n",
      "shard_43972 loaded\n",
      "shard_27828 loaded\n",
      "shard_29351 loaded\n",
      "shard_12257 loaded\n",
      "shard_39555 loaded\n",
      "shard_19148 loaded\n",
      "shard_30766 loaded\n",
      "shard_22161 loaded\n",
      "shard_17698 loaded\n",
      "shard_23891 loaded\n",
      "shard_37249 loaded\n",
      "shard_22655 loaded\n",
      "shard_23118 loaded\n",
      "shard_38648 loaded\n",
      "shard_37651 loaded\n",
      "shard_45889 loaded\n",
      "shard_44812 loaded\n",
      "shard_17287 loaded\n",
      "shard_19160 loaded\n",
      "shard_15682 loaded\n",
      "shard_25040 loaded\n",
      "shard_28665 loaded\n",
      "shard_13741 loaded\n",
      "shard_28249 loaded\n",
      "shard_29229 loaded\n",
      "shard_84 loaded\n",
      "shard_21353 loaded\n",
      "shard_38434 loaded\n",
      "shard_31896 loaded\n",
      "shard_44481 loaded\n",
      "shard_22069 loaded\n",
      "shard_13898 loaded\n",
      "shard_44759 loaded\n",
      "shard_36484 loaded\n",
      "shard_31676 loaded\n",
      "shard_45311 loaded\n",
      "shard_26986 loaded\n",
      "shard_32851 loaded\n",
      "shard_37310 loaded\n",
      "shard_43735 loaded\n",
      "shard_31181 loaded\n",
      "shard_33856 loaded\n",
      "shard_2783 loaded\n",
      "shard_398 loaded\n",
      "shard_36034 loaded\n",
      "shard_38652 loaded\n",
      "shard_22551 loaded\n",
      "shard_44891 loaded\n",
      "shard_7167 loaded\n",
      "shard_11365 loaded\n",
      "shard_22251 loaded\n",
      "shard_10178 loaded\n",
      "shard_35598 loaded\n",
      "shard_15653 loaded\n",
      "shard_30474 loaded\n",
      "shard_46387 loaded\n",
      "shard_602 loaded\n",
      "shard_47028 loaded\n",
      "shard_41307 loaded\n",
      "shard_23425 loaded\n",
      "shard_26428 loaded\n",
      "shard_25482 loaded\n",
      "shard_37887 loaded\n",
      "shard_1797 loaded\n",
      "shard_15372 loaded\n",
      "shard_1 loaded\n",
      "shard_1005 loaded\n",
      "shard_34183 loaded\n",
      "shard_3253 loaded\n",
      "shard_27826 loaded\n",
      "shard_9786 loaded\n",
      "shard_36401 loaded\n",
      "shard_21987 loaded\n",
      "shard_19904 loaded\n",
      "shard_31086 loaded\n",
      "shard_7362 loaded\n",
      "shard_6991 loaded\n",
      "shard_48249 loaded\n",
      "shard_3105 loaded\n",
      "shard_41665 loaded\n",
      "shard_30333 loaded\n",
      "shard_12291 loaded\n",
      "shard_8644 loaded\n",
      "shard_38895 loaded\n",
      "shard_40892 loaded\n",
      "shard_20255 loaded\n",
      "shard_22445 loaded\n",
      "shard_28170 loaded\n",
      "shard_45990 loaded\n",
      "shard_34062 loaded\n",
      "shard_30054 loaded\n",
      "shard_17871 loaded\n",
      "shard_22851 loaded\n",
      "shard_23926 loaded\n",
      "shard_2440 loaded\n",
      "shard_47724 loaded\n",
      "shard_18692 loaded\n",
      "shard_14425 loaded\n",
      "shard_48989 loaded\n",
      "shard_6382 loaded\n",
      "shard_22940 loaded\n",
      "shard_26952 loaded\n",
      "shard_21118 loaded\n",
      "shard_40349 loaded\n",
      "shard_23282 loaded\n",
      "shard_12519 loaded\n",
      "shard_41638 loaded\n",
      "shard_9406 loaded\n",
      "shard_46347 loaded\n",
      "shard_397 loaded\n",
      "shard_6035 loaded\n",
      "shard_46993 loaded\n",
      "shard_2334 loaded\n",
      "shard_33485 loaded\n",
      "shard_48496 loaded\n",
      "shard_7750 loaded\n",
      "shard_31159 loaded\n",
      "shard_4945 loaded\n",
      "shard_39524 loaded\n",
      "shard_18418 loaded\n",
      "shard_49921 loaded\n",
      "shard_24323 loaded\n",
      "shard_17667 loaded\n",
      "shard_20967 loaded\n",
      "shard_20203 loaded\n",
      "shard_43446 loaded\n",
      "shard_14897 loaded\n",
      "shard_1315 loaded\n",
      "shard_36871 loaded\n",
      "shard_45901 loaded\n",
      "shard_41606 loaded\n",
      "shard_34438 loaded\n",
      "shard_2053 loaded\n",
      "shard_43296 loaded\n",
      "shard_3124 loaded\n",
      "shard_25945 loaded\n",
      "shard_1930 loaded\n",
      "shard_43887 loaded\n",
      "shard_41655 loaded\n",
      "shard_49732 loaded\n",
      "shard_1229 loaded\n",
      "shard_36922 loaded\n",
      "shard_22670 loaded\n",
      "shard_49440 loaded\n",
      "shard_41214 loaded\n",
      "shard_24651 loaded\n",
      "shard_9664 loaded\n",
      "shard_6399 loaded\n",
      "shard_13053 loaded\n",
      "shard_23985 loaded\n",
      "shard_19097 loaded\n",
      "shard_41862 loaded\n",
      "shard_2908 loaded\n",
      "shard_28289 loaded\n",
      "shard_26546 loaded\n",
      "shard_27445 loaded\n",
      "shard_37179 loaded\n",
      "shard_33896 loaded\n",
      "shard_11034 loaded\n",
      "shard_6153 loaded\n",
      "shard_2171 loaded\n",
      "shard_12377 loaded\n",
      "shard_24899 loaded\n",
      "shard_17200 loaded\n",
      "shard_44722 loaded\n",
      "shard_10805 loaded\n",
      "shard_47817 loaded\n",
      "shard_49463 loaded\n",
      "shard_17495 loaded\n",
      "shard_38559 loaded\n",
      "shard_12145 loaded\n",
      "shard_2919 loaded\n",
      "shard_21915 loaded\n",
      "shard_24474 loaded\n",
      "shard_17693 loaded\n",
      "shard_41983 loaded\n",
      "shard_27461 loaded\n",
      "shard_239 loaded\n",
      "shard_39586 loaded\n",
      "shard_1383 loaded\n",
      "shard_5786 loaded\n",
      "shard_10229 loaded\n",
      "shard_31818 loaded\n",
      "shard_42415 loaded\n",
      "shard_28649 loaded\n",
      "shard_42279 loaded\n",
      "shard_7154 loaded\n",
      "shard_9592 loaded\n",
      "shard_29311 loaded\n",
      "shard_38773 loaded\n",
      "shard_19327 loaded\n",
      "shard_11190 loaded\n",
      "shard_5201 loaded\n",
      "shard_30628 loaded\n",
      "shard_25725 loaded\n",
      "shard_40388 loaded\n",
      "shard_29083 loaded\n",
      "shard_16544 loaded\n",
      "shard_14426 loaded\n",
      "shard_13939 loaded\n",
      "shard_19902 loaded\n",
      "shard_39114 loaded\n",
      "shard_15297 loaded\n",
      "shard_44476 loaded\n",
      "shard_31878 loaded\n",
      "shard_2347 loaded\n",
      "shard_7189 loaded\n",
      "shard_949 loaded\n",
      "shard_23258 loaded\n",
      "shard_14084 loaded\n",
      "shard_3362 loaded\n",
      "shard_2751 loaded\n",
      "shard_4781 loaded\n",
      "shard_14864 loaded\n",
      "shard_43757 loaded\n",
      "shard_13827 loaded\n",
      "shard_9141 loaded\n",
      "shard_7792 loaded\n",
      "shard_1649 loaded\n",
      "shard_48428 loaded\n",
      "shard_28576 loaded\n",
      "shard_9295 loaded\n",
      "shard_32383 loaded\n",
      "shard_40030 loaded\n",
      "shard_24280 loaded\n",
      "shard_49309 loaded\n",
      "shard_15879 loaded\n",
      "shard_24852 loaded\n",
      "shard_19038 loaded\n",
      "shard_26613 loaded\n",
      "shard_21731 loaded\n",
      "shard_48517 loaded\n",
      "shard_2157 loaded\n",
      "shard_39159 loaded\n",
      "shard_40881 loaded\n",
      "shard_6694 loaded\n",
      "shard_26232 loaded\n",
      "shard_37614 loaded\n",
      "shard_23780 loaded\n",
      "shard_6762 loaded\n",
      "shard_39753 loaded\n",
      "shard_11823 loaded\n",
      "shard_33703 loaded\n",
      "shard_17725 loaded\n",
      "shard_35448 loaded\n",
      "shard_18307 loaded\n",
      "shard_11508 loaded\n",
      "shard_2944 loaded\n",
      "shard_34123 loaded\n",
      "shard_267 loaded\n",
      "shard_4726 loaded\n",
      "shard_34279 loaded\n",
      "shard_13041 loaded\n",
      "shard_20832 loaded\n",
      "shard_24886 loaded\n",
      "shard_36248 loaded\n",
      "shard_11048 loaded\n",
      "shard_9723 loaded\n",
      "shard_3976 loaded\n",
      "shard_14642 loaded\n",
      "shard_33160 loaded\n",
      "shard_45296 loaded\n",
      "shard_35609 loaded\n",
      "shard_39653 loaded\n",
      "shard_8348 loaded\n",
      "shard_34745 loaded\n",
      "shard_16361 loaded\n",
      "shard_1258 loaded\n",
      "shard_29589 loaded\n",
      "shard_41026 loaded\n",
      "shard_7012 loaded\n",
      "shard_36417 loaded\n",
      "shard_21548 loaded\n",
      "shard_31324 loaded\n",
      "shard_19814 loaded\n",
      "shard_3774 loaded\n",
      "shard_37598 loaded\n",
      "shard_17566 loaded\n",
      "shard_15254 loaded\n",
      "shard_30284 loaded\n",
      "shard_38704 loaded\n",
      "shard_48983 loaded\n",
      "shard_31499 loaded\n",
      "shard_34029 loaded\n",
      "shard_42126 loaded\n",
      "shard_40055 loaded\n",
      "shard_16580 loaded\n",
      "shard_19693 loaded\n",
      "shard_17712 loaded\n",
      "shard_31707 loaded\n",
      "shard_37743 loaded\n",
      "shard_12910 loaded\n",
      "shard_10116 loaded\n",
      "shard_24495 loaded\n",
      "shard_16791 loaded\n",
      "shard_34523 loaded\n",
      "shard_21251 loaded\n",
      "shard_8843 loaded\n",
      "shard_11455 loaded\n",
      "shard_40433 loaded\n",
      "shard_16914 loaded\n",
      "shard_27885 loaded\n",
      "shard_19010 loaded\n",
      "shard_27394 loaded\n",
      "shard_41010 loaded\n",
      "shard_18476 loaded\n",
      "shard_29665 loaded\n",
      "shard_21573 loaded\n",
      "shard_380 loaded\n",
      "shard_28565 loaded\n",
      "shard_2002 loaded\n",
      "shard_3470 loaded\n",
      "shard_39627 loaded\n",
      "shard_23919 loaded\n",
      "shard_24614 loaded\n",
      "shard_8855 loaded\n",
      "shard_32470 loaded\n",
      "shard_20196 loaded\n",
      "shard_31476 loaded\n",
      "shard_19270 loaded\n",
      "shard_1380 loaded\n",
      "shard_29245 loaded\n",
      "shard_14990 loaded\n",
      "shard_33283 loaded\n",
      "shard_44840 loaded\n",
      "shard_13936 loaded\n",
      "shard_31161 loaded\n",
      "shard_4249 loaded\n",
      "shard_6708 loaded\n",
      "shard_3319 loaded\n",
      "shard_40105 loaded\n",
      "shard_4912 loaded\n",
      "shard_31797 loaded\n",
      "shard_46701 loaded\n",
      "shard_8027 loaded\n",
      "shard_13383 loaded\n",
      "shard_22053 loaded\n",
      "shard_9669 loaded\n",
      "shard_19570 loaded\n",
      "shard_19054 loaded\n",
      "shard_21245 loaded\n",
      "shard_9602 loaded\n",
      "shard_31050 loaded\n",
      "shard_38139 loaded\n",
      "shard_29798 loaded\n",
      "shard_29350 loaded\n",
      "shard_3111 loaded\n",
      "shard_29541 loaded\n",
      "shard_49902 loaded\n",
      "shard_40678 loaded\n",
      "shard_29288 loaded\n",
      "shard_7326 loaded\n",
      "shard_41263 loaded\n",
      "shard_27894 loaded\n",
      "shard_42039 loaded\n",
      "shard_8669 loaded\n",
      "shard_9677 loaded\n",
      "shard_2602 loaded\n",
      "shard_46192 loaded\n",
      "shard_2354 loaded\n",
      "shard_40339 loaded\n",
      "shard_13344 loaded\n",
      "shard_3784 loaded\n",
      "shard_1061 loaded\n",
      "shard_1040 loaded\n",
      "shard_49873 loaded\n",
      "shard_22300 loaded\n",
      "shard_21742 loaded\n",
      "shard_6073 loaded\n",
      "shard_16810 loaded\n",
      "shard_37847 loaded\n",
      "shard_5229 loaded\n",
      "shard_31008 loaded\n",
      "shard_8417 loaded\n",
      "shard_4229 loaded\n",
      "shard_39558 loaded\n",
      "shard_45750 loaded\n",
      "shard_46006 loaded\n",
      "shard_47214 loaded\n",
      "shard_43650 loaded\n",
      "shard_31255 loaded\n",
      "shard_3018 loaded\n",
      "shard_21126 loaded\n",
      "shard_17610 loaded\n",
      "shard_41241 loaded\n",
      "shard_14930 loaded\n",
      "shard_33511 loaded\n",
      "shard_26806 loaded\n",
      "shard_48660 loaded\n",
      "shard_27398 loaded\n",
      "shard_28850 loaded\n",
      "shard_14040 loaded\n",
      "shard_42257 loaded\n",
      "shard_1360 loaded\n",
      "shard_200 loaded\n",
      "shard_17269 loaded\n",
      "shard_30763 loaded\n",
      "shard_44979 loaded\n",
      "shard_41995 loaded\n",
      "shard_31731 loaded\n",
      "shard_35074 loaded\n",
      "shard_29571 loaded\n",
      "shard_43193 loaded\n",
      "shard_38656 loaded\n",
      "shard_4037 loaded\n",
      "shard_1540 loaded\n",
      "shard_35623 loaded\n",
      "shard_13805 loaded\n",
      "shard_34857 loaded\n",
      "shard_15683 loaded\n",
      "shard_6022 loaded\n",
      "shard_17677 loaded\n",
      "shard_11590 loaded\n",
      "shard_13742 loaded\n",
      "shard_8664 loaded\n",
      "shard_1633 loaded\n",
      "shard_43375 loaded\n",
      "shard_27137 loaded\n",
      "shard_31623 loaded\n",
      "shard_44976 loaded\n",
      "shard_36341 loaded\n",
      "shard_49640 loaded\n",
      "shard_37627 loaded\n",
      "shard_42926 loaded\n",
      "shard_31372 loaded\n",
      "shard_30891 loaded\n",
      "shard_46414 loaded\n",
      "shard_8157 loaded\n",
      "shard_4119 loaded\n",
      "shard_44755 loaded\n",
      "shard_36762 loaded\n",
      "shard_36977 loaded\n",
      "shard_34241 loaded\n",
      "shard_10101 loaded\n",
      "shard_15603 loaded\n",
      "shard_38147 loaded\n",
      "shard_42888 loaded\n",
      "shard_18789 loaded\n",
      "shard_32619 loaded\n",
      "shard_16282 loaded\n",
      "shard_26096 loaded\n",
      "shard_38531 loaded\n",
      "shard_30758 loaded\n",
      "shard_6219 loaded\n",
      "shard_22440 loaded\n",
      "shard_17500 loaded\n",
      "shard_3360 loaded\n",
      "shard_5104 loaded\n",
      "shard_43078 loaded\n",
      "shard_18452 loaded\n",
      "shard_2417 loaded\n",
      "shard_9126 loaded\n",
      "shard_48267 loaded\n",
      "shard_24478 loaded\n",
      "shard_12641 loaded\n",
      "shard_14933 loaded\n",
      "shard_6018 loaded\n",
      "shard_38049 loaded\n",
      "shard_24060 loaded\n",
      "shard_5582 loaded\n",
      "shard_21506 loaded\n",
      "shard_11199 loaded\n",
      "shard_47725 loaded\n",
      "shard_28944 loaded\n",
      "shard_12081 loaded\n",
      "shard_34001 loaded\n",
      "shard_24310 loaded\n",
      "shard_21955 loaded\n",
      "shard_30272 loaded\n",
      "shard_5825 loaded\n",
      "shard_6897 loaded\n",
      "shard_21654 loaded\n",
      "shard_19559 loaded\n",
      "shard_27370 loaded\n",
      "shard_19344 loaded\n",
      "shard_22801 loaded\n",
      "shard_3772 loaded\n",
      "shard_36781 loaded\n",
      "shard_18762 loaded\n",
      "shard_42496 loaded\n",
      "shard_37714 loaded\n",
      "shard_41087 loaded\n",
      "shard_49935 loaded\n",
      "shard_41058 loaded\n",
      "shard_29845 loaded\n",
      "shard_46834 loaded\n",
      "shard_13968 loaded\n",
      "shard_14855 loaded\n",
      "shard_12584 loaded\n",
      "shard_47401 loaded\n",
      "shard_676 loaded\n",
      "shard_46291 loaded\n",
      "shard_20685 loaded\n",
      "shard_42895 loaded\n",
      "shard_17238 loaded\n",
      "shard_43899 loaded\n",
      "shard_5606 loaded\n",
      "shard_32745 loaded\n",
      "shard_28757 loaded\n",
      "shard_10211 loaded\n",
      "shard_11580 loaded\n",
      "shard_36462 loaded\n",
      "shard_24411 loaded\n",
      "shard_29399 loaded\n",
      "shard_47656 loaded\n",
      "shard_47105 loaded\n",
      "shard_3443 loaded\n",
      "shard_6701 loaded\n",
      "shard_46117 loaded\n",
      "shard_6767 loaded\n",
      "shard_12166 loaded\n",
      "shard_49350 loaded\n",
      "shard_17158 loaded\n",
      "shard_23560 loaded\n"
     ]
    }
   ],
   "source": [
    "from datasets import load_from_disk, concatenate_datasets\n",
    "\n",
    "output = [dI for dI in os.listdir(root_directory) if os.path.isdir(os.path.join(root_directory,dI))]\n",
    "datasets = []\n",
    "for o in output:\n",
    "    directory = root_directory + \"/\" + o\n",
    "    try:\n",
    "        shard = load_from_disk(directory)\n",
    "        datasets.append(shard)\n",
    "        print(\"%s loaded\" % o)\n",
    "    except:\n",
    "        continue"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "8fdd72ae-903b-43c0-9cd9-94d3142b6dbb",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "Saving the dataset (8/8 shards): 100%|██████████| 432471/432471 [00:18<00:00, 23948.14 examples/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Dataset saved to wikipedia_20220301.en.processed\n"
     ]
    }
   ],
   "source": [
    "dataset = concatenate_datasets(datasets)\n",
    "dataset.save_to_disk(config['data_folder'])\n",
    "print('Dataset saved to %s' % config['data_folder'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "id": "9483397b-cea5-451c-89dc-b683f2f2de10",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Dataset({\n",
       "    features: ['id', 'url', 'title', 'input_ids', 'phonemes'],\n",
       "    num_rows: 432471\n",
       "})"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# check the dataset size\n",
    "dataset"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b7112e6a-965a-45ef-bf75-10a5d299c1a4",
   "metadata": {},
   "source": [
    "Remove unneccessary tokens from the pre-trained tokenizer\n",
    "The pre-trained tokenizer contains a lot of tokens that are not used in our dataset, so we need to remove these tokens. We also want to predict the word in lower cases because cases do not matter that much for TTS. Pruning the tokenizer is much faster than training a new tokenizer from scratch."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "id": "a5d66b71-73bf-4422-8f51-0e84cb4c0d24",
   "metadata": {},
   "outputs": [],
   "source": [
    "from simple_loader import FilePathDataset, build_dataloader\n",
    "\n",
    "file_data = FilePathDataset(dataset)\n",
    "loader = build_dataloader(file_data, num_workers=32, batch_size=128)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "id": "0d6dd089-61fa-457b-8f01-22a45b2332c8",
   "metadata": {},
   "outputs": [],
   "source": [
    "special_token = config['dataset_params']['word_separator']"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "id": "c0800da3-e992-48c9-9a9d-241373e66b68",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████| 3378/3378 [00:49<00:00, 67.67it/s] \n"
     ]
    }
   ],
   "source": [
    "# get all unique tokens in the entire dataset\n",
    "\n",
    "from tqdm import tqdm\n",
    "\n",
    "unique_index = [special_token]\n",
    "for _, batch in enumerate(tqdm(loader)):\n",
    "    unique_index.extend(batch)\n",
    "    unique_index = list(set(unique_index))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 33,
   "id": "698bbfbe-b046-4dc5-b3b5-cea57c539c9f",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████| 21751/21751 [00:00<00:00, 34126.25it/s]\n"
     ]
    }
   ],
   "source": [
    "# get each token's lower case\n",
    "\n",
    "# lower_tokens = []\n",
    "# for t in tqdm(unique_index):\n",
    "#     word = tokenizer.decode([t])\n",
    "#     if word.lower() != word:\n",
    "#         t = tokenizer.encode([word.lower()])[0]\n",
    "#         lower_tokens.append(t)\n",
    "#     else:\n",
    "#         lower_tokens.append(t)\n",
    "\n",
    "lower_tokens = []\n",
    "for t in tqdm(unique_index):\n",
    "    word = tokenizer.decode([t])\n",
    "    if word.lower() != word:\n",
    "        # Pass the string directly to tokenizer.encode()\n",
    "        t = tokenizer.encode(word.lower())[0] \n",
    "        lower_tokens.append(t)\n",
    "    else:\n",
    "        lower_tokens.append(t)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "id": "a94cb8d1-e334-403e-856c-25cfd347c98b",
   "metadata": {},
   "outputs": [],
   "source": [
    "lower_tokens = (list(set(lower_tokens)))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "id": "7709a561-412f-4acd-9a9b-d34aa5b8087e",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████| 21751/21751 [00:02<00:00, 7469.70it/s]\n"
     ]
    }
   ],
   "source": [
    "# redo the mapping for lower number of tokens\n",
    "\n",
    "# token_maps = {}\n",
    "# for t in tqdm(unique_index):\n",
    "#     word = tokenizer.decode([t])\n",
    "#     word = word.lower()\n",
    "#     new_t = tokenizer.encode([word.lower()])[0]\n",
    "#     token_maps[t] = {'word': word, 'token': lower_tokens.index(new_t)}\n",
    "\n",
    "token_maps = {}\n",
    "for t in tqdm(unique_index):\n",
    "    word = tokenizer.decode([t])\n",
    "    word = word.lower() # word is now the lowercase string\n",
    "    \n",
    "    # ERROR HERE: Should pass a string, not a list of a string\n",
    "    # OLD: new_t = tokenizer.encode([word.lower()])[0] \n",
    "    \n",
    "    # CORRECTED: Pass the string 'word' directly\n",
    "    new_t = tokenizer.encode(word)[0] \n",
    "    \n",
    "    token_maps[t] = {'word': word, 'token': lower_tokens.index(new_t)}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "id": "3299ba96-79d8-4aca-8134-807012b03277",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Token mapper saved to token_maps.pkl\n"
     ]
    }
   ],
   "source": [
    "import pickle\n",
    "with open(config['dataset_params']['token_maps'], 'wb') as handle:\n",
    "    pickle.dump(token_maps, handle)\n",
    "print('Token mapper saved to %s' % config['dataset_params']['token_maps'])"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "689a31e1-fc30-499f-9d4f-3c9708a14d18",
   "metadata": {},
   "source": [
    "Test the dataset with dataloader"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 39,
   "id": "03fd00c7-692d-4dfb-a158-46de73ff0f11",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "177\n"
     ]
    }
   ],
   "source": [
    "from dataloader import build_dataloader\n",
    "\n",
    "train_loader = build_dataloader(dataset, batch_size=32, num_workers=0, dataset_config=config['dataset_params'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "id": "01f62a7f-c40a-4569-9826-bef9e4e9af3f",
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "_, (words, labels, phonemes, input_lengths, masked_indices) = next(enumerate(train_loader))"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "8e29fbed-9c98-418f-bb42-57bd3ae6bd70",
   "metadata": {},
   "source": [
    "https://github.com/yl4579/PL-BERT"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c10610ee-c44f-4059-a5d1-07a94bada04a",
   "metadata": {},
   "source": [
    "https://github.com/yl4579/PL-BERT/blob/main/train.ipynb"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "159a6858-adbb-4291-8fea-7f2bd9cd448c",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "TTS Project (P40)",
   "language": "python",
   "name": "tts_p40"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.9.24"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
